diff options
Diffstat (limited to 'applications/luci-app-adblock-fast')
44 files changed, 32989 insertions, 0 deletions
diff --git a/applications/luci-app-adblock-fast/Makefile b/applications/luci-app-adblock-fast/Makefile new file mode 100644 index 0000000000..cc7948130d --- /dev/null +++ b/applications/luci-app-adblock-fast/Makefile @@ -0,0 +1,17 @@ +# Copyright 2023 MOSSDeF, Stan Grishin (stangri@melmac.ca) +# This is free software, licensed under the GNU General Public License v3. + +include $(TOPDIR)/rules.mk + +PKG_LICENSE:=GPL-3.0-or-later +PKG_MAINTAINER:=Stan Grishin <stangri@melmac.ca> +PKG_VERSION:=1.1.1-r7 + +LUCI_TITLE:=AdBlock-Fast Web UI +LUCI_DESCRIPTION:=Provides Web UI for adblock-fast service. +LUCI_DEPENDS:=+luci-base +adblock-fast +jsonfilter +LUCI_PKGARCH:=all + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js new file mode 100644 index 0000000000..1040cfb369 --- /dev/null +++ b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js @@ -0,0 +1,514 @@ +// Copyright MOSSDeF, 2023 Stan Grishin <stangri@melmac.ca> +// This code wouldn't have been possible without help from: +// - [@vsviridov](https://github.com/vsviridov) + +"require ui"; +"require rpc"; +"require form"; +"require baseclass"; + +var pkg = { + get Name() { + return "adblock-fast"; + }, + get URL() { + return "https://docs.openwrt.melmac.net/" + pkg.Name + "/"; + }, +}; + +var getFileUrlFilesizes = rpc.declare({ + object: "luci." + pkg.Name, + method: "getFileUrlFilesizes", + params: ["name", "url"], +}); + +var getInitList = rpc.declare({ + object: "luci." + pkg.Name, + method: "getInitList", + params: ["name"], +}); + +var getInitStatus = rpc.declare({ + object: "luci." + pkg.Name, + method: "getInitStatus", + params: ["name"], +}); + +var getPlatformSupport = rpc.declare({ + object: "luci." + pkg.Name, + method: "getPlatformSupport", + params: ["name"], +}); + +var _setInitAction = rpc.declare({ + object: "luci." + pkg.Name, + method: "setInitAction", + params: ["name", "action"], + expect: { result: false }, +}); + +var RPC = { + listeners: [], + on: function (event, callback) { + var pair = { event: event, callback: callback }; + this.listeners.push(pair); + return function unsubscribe() { + this.listeners = this.listeners.filter(function (listener) { + return listener !== pair; + }); + }.bind(this); + }, + emit: function (event, data) { + this.listeners.forEach(function (listener) { + if (listener.event === event) { + listener.callback(data); + } + }); + }, + setInitAction: function (name, action) { + _setInitAction(name, action).then( + function (result) { + this.emit("setInitAction", result); + }.bind(this) + ); + }, +}; + +var status = baseclass.extend({ + render: function () { + return Promise.all([L.resolveDefault(getInitStatus(pkg.Name), {})]).then( + function (data) { + var reply = { + status: (data[0] && data[0][pkg.Name]) || { + enabled: false, + status: null, + running: null, + version: null, + errors: [], + warnings: [], + force_dns_active: null, + force_dns_ports: [], + entries: null, + dns: null, + outputFile: null, + outputCache: null, + outputGzip: null, + outputFileExists: null, + outputCacheExists: null, + outputGzipExists: null, + leds: [], + }, + }; + var text = ""; + var outputFile = reply.status.outputFile; + var outputCache = reply.status.outputCache; + var statusTable = { + statusNoInstall: _("%s is not installed or not found").format( + pkg.Name + ), + statusStopped: _("Stopped"), + statusStarting: _("Starting"), + statusProcessing: _("Processing lists"), + statusRestarting: _("Restarting"), + statusForceReloading: _("Force Reloading"), + statusDownloading: _("Downloading lists"), + statusFail: _("Failed to start"), + statusSuccess: _("Active"), + }; + + var header = E("h2", {}, _("AdBlock-Fast - Status")); + var statusTitle = E( + "label", + { class: "cbi-value-title" }, + _("Service Status") + ); + if (reply.status.version) { + text += _("Version %s").format(reply.status.version) + " - "; + switch (reply.status.status) { + case "statusSuccess": + text += statusTable[reply.status.status] + "."; + text += + "<br />" + + _("Blocking %s domains (with %s).").format( + reply.status.entries, + reply.status.dns + ); + if (reply.status.outputGzipExists) { + text += "<br />" + _("Compressed cache file created."); + } + if (reply.status.force_dns_active) { + text += "<br />" + _("Force DNS ports:"); + reply.status.force_dns_ports.forEach((element) => { + text += " " + element; + }); + text += "."; + } + break; + case "statusStopped": + if (reply.status.enabled) { + text += statusTable[reply.status.status] + "."; + } else { + text += + statusTable[reply.status.status] + + " (" + + _("Disabled") + + ")."; + } + if (reply.status.outputCacheExists) { + text += "<br />" + _("Cache file found."); + } else if (reply.status.outputGzipExists) { + text += "<br />" + _("Compressed cache file found."); + } + break; + case "statusRestarting": + case "statusForceReloading": + case "statusDownloading": + case "statusProcessing": + text += statusTable[reply.status.status] + "..."; + break; + default: + text += statusTable[reply.status.status] + "."; + break; + } + } else { + text = _("Not installed or not found"); + } + var statusText = E("div", {}, text); + var statusField = E("div", { class: "cbi-value-field" }, statusText); + var statusDiv = E("div", { class: "cbi-value" }, [ + statusTitle, + statusField, + ]); + + var warningsDiv = []; + if (reply.status.warnings && reply.status.warnings.length) { + var warningTable = { + warningExternalDnsmasqConfig: _( + "Use of external dnsmasq config file detected, please set '%s' option to '%s'" + ).format("dns", "dnsmasq.conf"), + warningMissingRecommendedPackages: _( + "Some recommended packages are missing" + ), + warningInvalidCompressedCacheDir: _( + "Invalid compressed cache directory '%s'" + ), + warningFreeRamCheckFail: _("Can't detect free RAM"), + }; + var warningsTitle = E( + "label", + { class: "cbi-value-title" }, + _("Service Warnings") + ); + var text = ""; + reply.status.warnings.forEach((element) => { + if (element.id && warningTable[element.id]) + text += + warningTable[element.id].format(element.extra || " ") + + "<br />"; + else text += _("Unknown warning") + "<br />"; + }); + var warningsText = E("div", {}, text); + var warningsField = E( + "div", + { class: "cbi-value-field" }, + warningsText + ); + warningsDiv = E("div", { class: "cbi-value" }, [ + warningsTitle, + warningsField, + ]); + } + + var errorsDiv = []; + if (reply.status.errors && reply.status.errors.length) { + var errorTable = { + errorConfigValidationFail: _( + "Config (%s) validation failure!" + ).format("/etc/config/" + pkg.Name), + errorServiceDisabled: _("%s is currently disabled").format( + pkg.Name + ), + errorNoDnsmasqIpset: _( + "The dnsmasq ipset support is enabled, but dnsmasq is either not installed or installed dnsmasq does not support ipset" + ), + errorNoIpset: _( + "The dnsmasq ipset support is enabled, but ipset is either not installed or installed ipset does not support '%s' type" + ).format("hash:net"), + errorNoDnsmasqNftset: _( + "The dnsmasq nft set support is enabled, but dnsmasq is either not installed or installed dnsmasq does not support nft set" + ), + errorNoNft: _( + "The dnsmasq nft sets support is enabled, but nft is not installed" + ), + errorNoWanGateway: _( + "The %s failed to discover WAN gateway" + ).format(pkg.Name), + errorOutputDirCreate: _("Failed to create directory for %s file"), + errorOutputFileCreate: _("Failed to create '%s' file").format( + outputFile + ), + errorFailDNSReload: _("Failed to restart/reload DNS resolver"), + errorSharedMemory: _("Failed to access shared memory"), + errorSorting: _("Failed to sort data file"), + errorOptimization: _("Failed to optimize data file"), + errorAllowListProcessing: _("Failed to process allow-list"), + errorDataFileFormatting: _("Failed to format data file"), + errorMovingDataFile: _( + "Failed to move temporary data file to '%s'" + ).format(outputFile), + errorCreatingCompressedCache: _( + "Failed to create compressed cache" + ), + errorRemovingTempFiles: _("Failed to remove temporary files"), + errorRestoreCompressedCache: _("Failed to unpack compressed cache"), + errorRestoreCache: _("Failed to move '%s' to '%s'").format( + outputCache, + outputFile + ), + errorOhSnap: _( + "Failed to create block-list or restart DNS resolver" + ), + errorStopping: _("Failed to stop %s").format(pkg.Name), + errorDNSReload: _("Failed to reload/restart DNS resolver"), + errorDownloadingConfigUpdate: _( + "Failed to download Config Update file" + ), + errorDownloadingList: _("Failed to download %s"), + errorParsingConfigUpdate: _("Failed to parse Config Update file"), + errorParsingList: _("Failed to parse %s"), + errorNoSSLSupport: _("No HTTPS/SSL support on device"), + errorCreatingDirectory: _( + "Failed to create output/cache/gzip file directory" + ), + errorDetectingFileType: _("Failed to detect format %s"), + errorNothingToDo: _( + "No blocked list URLs nor blocked-domains enabled" + ), + errorTooLittleRam: _( + "Free ram (%s) is not enough to process all enabled block-lists" + ), + }; + var errorsTitle = E( + "label", + { class: "cbi-value-title" }, + _("Service Errors") + ); + var text = ""; + reply.status.errors.forEach((element) => { + if (element.id && errorTable[element.id]) + text += + errorTable[element.id].format(element.extra || " ") + "!<br />"; + else text += _("Unknown error") + "<br />"; + }); + text += _("Errors encountered, please check the %sREADME%s").format( + '<a href="' + pkg.URL + '" target="_blank">', + "</a>!<br />" + ); + var errorsText = E("div", {}, text); + var errorsField = E("div", { class: "cbi-value-field" }, errorsText); + errorsDiv = E("div", { class: "cbi-value" }, [ + errorsTitle, + errorsField, + ]); + } + + var btn_gap = E("span", {}, "  "); + var btn_gap_long = E( + "span", + {}, + "        " + ); + + var btn_start = E( + "button", + { + class: "btn cbi-button cbi-button-apply", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E( + "p", + { class: "spinning" }, + _("Starting %s service").format(pkg.Name) + ), + ]); + return RPC.setInitAction(pkg.Name, "start"); + }, + }, + _("Start") + ); + + var btn_action_dl = E( + "button", + { + class: "btn cbi-button cbi-button-apply", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E( + "p", + { class: "spinning" }, + _("Force redownloading %s block lists").format(pkg.Name) + ), + ]); + return RPC.setInitAction(pkg.Name, "dl"); + }, + }, + _("Redownload") + ); + + var btn_action_pause = E( + "button", + { + class: "btn cbi-button cbi-button-apply", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E("p", { class: "spinning" }, _("Pausing %s").format(pkg.Name)), + ]); + return RPC.setInitAction(pkg.Name, "pause"); + }, + }, + _("Pause") + ); + + var btn_stop = E( + "button", + { + class: "btn cbi-button cbi-button-reset", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E( + "p", + { class: "spinning" }, + _("Stopping %s service").format(pkg.Name) + ), + ]); + return RPC.setInitAction(pkg.Name, "stop"); + }, + }, + _("Stop") + ); + + var btn_enable = E( + "button", + { + class: "btn cbi-button cbi-button-apply", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E( + "p", + { class: "spinning" }, + _("Enabling %s service").format(pkg.Name) + ), + ]); + return RPC.setInitAction(pkg.Name, "enable"); + }, + }, + _("Enable") + ); + + var btn_disable = E( + "button", + { + class: "btn cbi-button cbi-button-reset", + disabled: true, + click: function (ev) { + ui.showModal(null, [ + E( + "p", + { class: "spinning" }, + _("Disabling %s service").format(pkg.Name) + ), + ]); + return RPC.setInitAction(pkg.Name, "disable"); + }, + }, + _("Disable") + ); + + if (reply.status.enabled) { + btn_enable.disabled = true; + btn_disable.disabled = false; + switch (reply.status.status) { + case "statusSuccess": + btn_start.disabled = true; + btn_action_dl.disabled = false; + btn_action_pause.disabled = false; + btn_stop.disabled = false; + break; + case "statusStopped": + btn_start.disabled = false; + btn_action_dl.disabled = true; + btn_action_pause.disabled = true; + btn_stop.disabled = true; + break; + default: + btn_start.disabled = false; + btn_action_dl.disabled = true; + btn_action_pause.disabled = true; + btn_stop.disabled = false; + btn_enable.disabled = true; + btn_disable.disabled = true; + break; + } + } else { + btn_start.disabled = true; + btn_action_dl.disabled = true; + btn_action_pause.disabled = true; + btn_stop.disabled = true; + btn_enable.disabled = false; + btn_disable.disabled = true; + } + + var buttonsDiv = []; + var buttonsTitle = E( + "label", + { class: "cbi-value-title" }, + _("Service Control") + ); + var buttonsText = E("div", {}, [ + btn_start, + btn_gap, + // btn_action_pause, + // btn_gap, + btn_action_dl, + btn_gap, + btn_stop, + btn_gap_long, + btn_enable, + btn_gap, + btn_disable, + ]); + var buttonsField = E("div", { class: "cbi-value-field" }, buttonsText); + if (reply.status.version) { + buttonsDiv = E("div", { class: "cbi-value" }, [ + buttonsTitle, + buttonsField, + ]); + } + + return E("div", {}, [ + header, + statusDiv, + warningsDiv, + errorsDiv, + buttonsDiv, + ]); + } + ); + }, +}); + +RPC.on("setInitAction", function (reply) { + ui.hideModal(); + location.reload(); +}); + +return L.Class.extend({ + status: status, + getFileUrlFilesizes: getFileUrlFilesizes, + getPlatformSupport: getPlatformSupport, +}); diff --git a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js new file mode 100644 index 0000000000..e97722317c --- /dev/null +++ b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js @@ -0,0 +1,533 @@ +// Copyright 2023 MOSSDeF, Stan Grishin <stangri@melmac.ca> +// This code wouldn't have been possible without help from: +// - [@stokito](https://github.com/stokito) +// - [@vsviridov](https://github.com/vsviridov) + +"use strict"; +"require form"; +"require view"; +"require adblock-fast.status as adb"; + +var pkg = { + get Name() { + return "adblock-fast"; + }, + get URL() { + return "https://docs.openwrt.melmac.net/" + pkg.Name + "/"; + }, + humanFileSize: function (bytes, si = false, dp = 2) { + return `%${si ? 1000 : 1024}.${dp ?? 0}mB`.format(bytes); + }, + isObjEmpty: function (obj) { + return Object.keys(obj).length === 0; + }, +}; + +return view.extend({ + load: function () { + return Promise.all([ + L.resolveDefault(adb.getFileUrlFilesizes(pkg.Name), {}), + L.resolveDefault(adb.getPlatformSupport(pkg.Name), {}), + L.resolveDefault(L.uci.load(pkg.Name), {}), + L.resolveDefault(L.uci.load("dhcp"), {}), + L.resolveDefault(L.uci.load("smartdns"), {}), + ]); + }, + + render: function (data) { + var reply = { + sizes: (data[0] && data[0][pkg.Name] && data[0][pkg.Name]["sizes"]) || [], + platform: (data[1] && data[1][pkg.Name]) || { + ipset_installed: false, + nft_installed: false, + dnsmasq_installed: false, + dnsmasq_ipset_support: false, + dnsmasq_nftset_support: false, + smartdns_installed: false, + smartdns_ipset_support: false, + smartdns_nftset_support: false, + unbound_installed: false, + leds: [], + }, + pkg: (!pkg.isObjEmpty(data[2]) && data[2]) || null, + dhcp: (!pkg.isObjEmpty(data[3]) && data[3]) || null, + smartdns: (!pkg.isObjEmpty(data[4]) && data[4]) || null, + }; + var status, m, s1, s2, s3, o; + + status = new adb.status(); + m = new form.Map(pkg.Name, _("AdBlock-Fast - Configuration")); + + s1 = m.section(form.NamedSection, "config", pkg.Name); + s1.tab("tab_basic", _("Basic Configuration")); + s1.tab("tab_advanced", _("Advanced Configuration")); + + var text = _( + "DNS resolution option, see the %sREADME%s for details." + ).format( + '<a href="' + pkg.URL + '#dns-resolver-option" target="_blank">', + "</a>" + ); + if (!reply.platform.dnsmasq_installed) { + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.addnhosts</i>" + ); + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.conf</i>" + ); + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.ipset</i>" + ); + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.servers</i>" + ); + } else { + if (!reply.platform.dnsmasq_ipset_support) { + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.ipset</i>" + ); + } + if (!reply.platform.dnsmasq_nftset_support) { + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>dnsmasq.nftset</i>" + ); + } + } + if (!reply.platform.smartdns_installed) { + text = + text + + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>smartdns.domainset</i>" + ); + } else { + if (!reply.platform.smartdns_ipset_support) { + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>smartdns.ipset</i>" + ); + } + if (!reply.platform.smartdns_nftset_support) { + text += + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>smartdns.nftset</i>" + ); + } + } + if (!reply.platform.unbound_installed) { + text = + text + + "<br />" + + _("Please note that %s is not supported on this system.").format( + "<i>unbound.adb_list</i>" + ); + } + + o = s1.taboption( + "tab_basic", + form.ListValue, + "dns", + _("DNS Service"), + text + ); + if (reply.platform.dnsmasq_installed) { + o.value("dnsmasq.addnhosts", _("dnsmasq additional hosts")); + o.value("dnsmasq.conf", _("dnsmasq config")); + if (reply.platform.dnsmasq_ipset_support) { + o.value("dnsmasq.ipset", _("dnsmasq ipset")); + } + if (reply.platform.dnsmasq_nftset_support) { + o.value("dnsmasq.nftset", _("dnsmasq nft set")); + } + o.value("dnsmasq.servers", _("dnsmasq servers file")); + } + if (reply.platform.smartdns_installed) { + o.value("smartdns.domainset", _("smartdns domain set")); + if (reply.platform.smartdns_ipset_support) { + o.value("smartdns.ipset", _("smartdns ipset")); + } + if (reply.platform.smartdns_nftset_support) { + o.value("smartdns.nftset", _("smartdns nft set")); + } + } + if (reply.platform.unbound_installed) { + o.value("unbound.adb_list", _("unbound adblock list")); + } + o.default = "dnsmasq.servers"; + + o = s1.taboption( + "tab_basic", + form.Value, + "dnsmasq_config_file_url", + _("Dnsmasq Config File URL"), + _( + "URL to the external dnsmasq config file, see the %sREADME%s for details." + ).format( + '<a href="' + pkg.URL + '#dnsmasq_config_file_url" target="_blank">', + "</a>" + ) + ); + o.depends("dns", "dnsmasq.conf"); + + if (reply.platform.dnsmasq_installed && reply.dhcp) { + o = s1.taboption( + "tab_basic", + form.ListValue, + "dnsmasq_instance_option", + _("Use AdBlocking on the dnsmasq instance(s)"), + _( + "You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore information%s)." + ).format( + '<a href="' + pkg.URL + "#dnsmasq_instance" + '" target="_blank">', + "</a>" + ) + ); + o.value("*", _("AdBlock on all instances")); + o.value("+", _("AdBlock on select instances")); + o.value("-", _("No AdBlock on dnsmasq")); + o.default = "*"; + o.depends("dns", "dnsmasq.addnhosts"); + o.depends("dns", "dnsmasq.servers"); + o.retain = true; + o.cfgvalue = function (section_id) { + let val = this.map.data.get( + this.map.config, + section_id, + "dnsmasq_instance" + ); + if (val && val[0]) { + switch (val[0]) { + case "*": + case "-": + return val[0]; + default: + return "+"; + } + } else return "*"; + }; + o.write = function (section_id, formvalue) { + L.uci.set(pkg.Name, section_id, "dnsmasq_instance", formvalue); + }; + + o = s1.taboption( + "tab_basic", + form.MultiValue, + "dnsmasq_instance", + _("Pick the dnsmasq instance(s) for AdBlocking") + ); + Object.values(L.uci.sections("dhcp", "dnsmasq")).forEach(function ( + element + ) { + var description; + var key; + if (element[".name"] === L.uci.resolveSID("dhcp", element[".name"])) { + key = element[".index"]; + description = "dnsmasq[" + element[".index"] + "]"; + } else { + key = element[".name"]; + description = element[".name"]; + } + o.value(key, description); + }); + o.depends("dnsmasq_instance_option", "+"); + o.retain = true; + } + + if (reply.platform.smartdns_installed && reply.smartdns) { + o = s1.taboption( + "tab_basic", + form.ListValue, + "smartdns_instance_option", + _("Use AdBlocking on the SmartDNS instance(s)"), + _( + "You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore information%s)." + ).format( + '<a href="' + pkg.URL + "#smartdns_instance" + '" target="_blank">', + "</a>" + ) + ); + o.value("*", _("AdBlock on all instances")); + o.value("+", _("AdBlock on select instances")); + o.value("-", _("No AdBlock on SmartDNS")); + o.default = "*"; + o.depends("dns", "smartdns.domainset"); + o.retain = true; + o.cfgvalue = function (section_id) { + let val = this.map.data.get( + this.map.config, + section_id, + "smartdns_instance" + ); + if (val && val[0]) { + switch (val[0]) { + case "*": + case "-": + return val[0]; + default: + return "+"; + } + } else return "*"; + }; + o.write = function (section_id, formvalue) { + L.uci.set(pkg.Name, section_id, "smartdns_instance", formvalue); + }; + + o = s1.taboption( + "tab_basic", + form.MultiValue, + "smartdns_instance", + _("Pick the SmartDNS instance(s) for AdBlocking") + ); + Object.values(L.uci.sections("smartdns", "smartdns")).forEach(function ( + element + ) { + var description; + var key; + if ( + element[".name"] === L.uci.resolveSID("smartdns", element[".name"]) + ) { + key = element[".index"]; + description = "smartdns[" + element[".index"] + "]"; + } else { + key = element[".name"]; + description = element[".name"]; + } + o.value(key, description); + }); + o.depends("smartdns_instance_option", "+"); + o.retain = true; + } + o = s1.taboption( + "tab_basic", + form.ListValue, + "force_dns", + _("Force Router DNS"), + _("Forces Router DNS use on local devices, also known as DNS Hijacking.") + ); + o.value("0", _("Let local devices use their own DNS servers if set")); + o.value("1", _("Force Router DNS server to all local devices")); + o.default = "1"; + + o = s1.taboption( + "tab_basic", + form.ListValue, + "verbosity", + _("Output Verbosity Setting"), + _("Controls system log and console output verbosity.") + ); + o.value("0", _("Suppress output")); + o.value("1", _("Some output")); + o.value("2", _("Verbose output")); + o.default = "2"; + + if (reply.platform.leds.length) { + o = s1.taboption( + "tab_basic", + form.ListValue, + "led", + _("LED to indicate status"), + _( + "Pick the LED not already used in %sSystem LED Configuration%s." + ).format('<a href="' + L.url("admin", "system", "leds") + '">', "</a>") + ); + o.value("", _("none")); + reply.platform.leds.forEach((element) => { + o.value(element); + }); + } + + o = s1.taboption( + "tab_advanced", + form.ListValue, + "config_update_enabled", + _("Automatic Config Update"), + _("Perform config update before downloading the block/allow-lists.") + ); + o.value("0", _("Disable")); + o.value("1", _("Enable")); + o.default = "0"; + + o = s1.taboption( + "tab_advanced", + form.ListValue, + "ipv6_enabled", + _("IPv6 Support"), + _("Add IPv6 entries to block-list.") + ); + o.value("", _("Do not add IPv6 entries")); + o.value("1", _("Add IPv6 entries")); + o.depends("dns", "dnsmasq.addnhosts"); + o.depends("dns", "dnsmasq.nftset"); + o.default = ""; + o.rmempty = true; + o.retain = true; + + o = s1.taboption( + "tab_advanced", + form.Value, + "download_timeout", + _("Download time-out (in seconds)"), + _("Stop the download if it is stalled for set number of seconds.") + ); + o.default = "20"; + o.datatype = "range(1,60)"; + + o = s1.taboption( + "tab_advanced", + form.Value, + "curl_max_file_size", + _("Curl maximum file size (in bytes)"), + _( + "If curl is installed and detected, it would not download files bigger than this." + ) + ); + o.default = ""; + o.datatype = "uinteger"; + o.rmempty = true; + + o = s1.taboption( + "tab_advanced", + form.Value, + "curl_retry", + _("Curl download retry"), + _( + "If curl is installed and detected, it would retry download this many times on timeout/fail." + ) + ); + o.default = "3"; + o.datatype = "range(0,30)"; + + o = s1.taboption( + "tab_advanced", + form.ListValue, + "parallel_downloads", + _("Simultaneous processing"), + _( + "Launch all lists downloads and processing simultaneously, reducing service start time." + ) + ); + o.value("0", _("Do not use simultaneous processing")); + o.value("1", _("Use simultaneous processing")); + o.default = "1"; + + o = s1.taboption( + "tab_advanced", + form.ListValue, + "compressed_cache", + _("Store compressed cache file on router"), + _( + "Attempt to create a compressed cache of block-list in the persistent memory." + ) + ); + o.value("0", _("Do not store compressed cache")); + o.value("1", _("Store compressed cache")); + o.default = "0"; + + o = s1.taboption( + "tab_advanced", + form.Value, + "compressed_cache_dir", + _("Directory for compressed cache file"), + _( + "Directory for compressed cache file of block-list in the persistent memory." + ) + ); + o.datatype = "string"; + o.rmempty = true; + o.default = "/etc"; + o.depends("compressed_cache", "1"); + o.retain = true; + + o = s1.taboption( + "tab_advanced", + form.ListValue, + "debug", + _("Enable Debugging"), + _("Enables debug output to /tmp/adblock-fast.log.") + ); + o.value("0", _("Disable Debugging")); + o.value("1", _("Enable Debugging")); + o.default = "0"; + + s2 = m.section( + form.NamedSection, + "config", + "adblock-fast", + _("AdBlock-Fast - Allowed and Blocked Domains") + ); + o.addremove = true; + o.rmempty = true; + + o = s2.option( + form.DynamicList, + "allowed_domain", + _("Allowed Domains"), + _("Individual domains to be allowed.") + ); + o.addremove = true; + + o = s2.option( + form.DynamicList, + "blocked_domain", + _("Blocked Domains"), + _("Individual domains to be blocked.") + ); + o.addremove = true; + + s3 = m.section( + form.GridSection, + "file_url", + _("AdBlock-Fast - Allowed and Blocked Lists URLs"), + _("URLs to file(s) containing lists to be allowed or blocked.") + ); + s3.rowcolors = true; + s3.sortable = true; + s3.anonymous = true; + s3.addremove = true; + + o = s3.option(form.DummyValue, "_size", _("Size")); + o.modalonly = false; + o.cfgvalue = function (section_id) { + let url = L.uci.get(pkg.Name, section_id, "url"); + let ret = _("Unknown"); + reply.sizes.forEach((element) => { + if (element.url === url) { + ret = element.size === 0 ? ret : pkg.humanFileSize(element.size); + } + }); + return _("Size: %s").format(ret); + }; + + o = s3.option(form.Flag, "enabled", _("Enable")); + o.editable = true; + o.default = "1"; + + o = s3.option(form.ListValue, "action", _("Action")); + o.value("allow", _("Allow")); + o.value("block", _("Block")); + o.default = "block"; + o.textvalue = function (section_id) { + var val = this.cfgvalue(section_id); + return val == "allow" ? _("Allow") : _("Block"); + }; + + o = s3.option(form.Value, "url", _("URL")); + o.optional = false; + + return Promise.all([status.render(), m.render()]); + }, +}); diff --git a/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js new file mode 100644 index 0000000000..5dd3d9079c --- /dev/null +++ b/applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js @@ -0,0 +1,108 @@ +"require ui"; +"require rpc"; +"require form"; +"require baseclass"; + +var pkg = { + get Name() { + return "adblock-fast"; + }, + get URL() { + return "https://docs.openwrt.melmac.net/" + pkg.Name + "/"; + }, +}; + +var getInitStatus = rpc.declare({ + object: "luci." + pkg.Name, + method: "getInitStatus", + params: ["name"], +}); + +return baseclass.extend({ + title: _("AdBlock-Fast"), + + load: function () { + return Promise.all([getInitStatus(pkg.Name)]); + }, + + render: function (data) { + var reply = { + status: (data[0] && data[0][pkg.Name]) || { + enabled: false, + status: null, + running: null, + version: null, + errors: [], + warnings: [], + force_dns_active: null, + force_dns_ports: [], + entries: null, + dns: null, + outputFile: null, + outputCache: null, + outputGzip: null, + outputFileExists: null, + outputCacheExists: null, + outputGzipExists: null, + leds: [], + }, + }; + var statusTable = { + statusNoInstall: _("%s is not installed or not found").format(pkg.Name), + statusStopped: _("Stopped"), + statusStarting: _("Starting"), + statusProcessing: _("Processing lists"), + statusRestarting: _("Restarting"), + statusForceReloading: _("Force Reloading"), + statusDownloading: _("Downloading lists"), + statusError: _("Error"), + statusWarning: _("Warning"), + statusFail: _("Fail"), + statusSuccess: _("Active"), + }; + + var cacheText; + if (reply.status.outputCacheExists) { + cacheText = _("Cache file"); + } else if (reply.status.outputGzipExists) { + cacheText = _("Compressed cache"); + } + var forceDnsText = ""; + if (reply.status.force_dns_active) { + reply.status.force_dns_ports.forEach((element) => { + forceDnsText += element + " "; + }); + } else { + forceDnsText = "-"; + } + + var table = E( + "table", + { class: "table", id: "adblock-fast_status_table" }, + [ + E("tr", { class: "tr table-titles" }, [ + E("th", { class: "th" }, _("Status")), + E("th", { class: "th" }, _("Version")), + E("th", { class: "th" }, _("DNS Service")), + E("th", { class: "th" }, _("Blocked Domains")), + E("th", { class: "th" }, _("Cache")), + E("th", { class: "th" }, _("Force DNS Ports")), + ]), + E("tr", { class: "tr" }, [ + E( + "td", + { class: "td" }, + statusTable[reply.status.status] || _("Unknown") + ), + E("td", { class: "td" }, reply.status.version || _("-")), + E("td", { class: "td" }, reply.status.dns || _("-")), + E("td", { class: "td" }, reply.status.entries || _("-")), + E("td", { class: "td" }, cacheText || _("-")), + E("td", { class: "td" }, forceDnsText || _("-")), + ]), + ] + ); + + return table; + }, +}); diff --git a/applications/luci-app-adblock-fast/po/ar/adblock-fast.po b/applications/luci-app-adblock-fast/po/ar/adblock-fast.po new file mode 100644 index 0000000000..38bd5bc80a --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ar/adblock-fast.po @@ -0,0 +1,729 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-12 14:21+0000\n" +"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ar/>\n" +"Language: ar\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "نشط" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "نطاقات محظورة" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "تعطيل" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "شغل" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "خطأ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "بداية" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "قف" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "توقفت" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "تحذير" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "لا شيء" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "إعدادات" + +#~ msgid "Info" +#~ msgstr "معلومات" + +#~ msgid "Loading" +#~ msgstr "جار التحميل" diff --git a/applications/luci-app-adblock-fast/po/bg/adblock-fast.po b/applications/luci-app-adblock-fast/po/bg/adblock-fast.po new file mode 100644 index 0000000000..c306844177 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/bg/adblock-fast.po @@ -0,0 +1,763 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-28 14:29+0000\n" +"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" +"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/bg/>\n" +"Language: bg\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s е изклюен" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s не е инсталиран или не е намерен" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Действие" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Активен" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock на всички инстанции" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock на избрани инстанции" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - позволени и блокирани домейни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Позволени и забранени списъци с адреси" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Настройки" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Състояние" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Добавяне на IPv6 стойности" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Добавяне на IPv6 стойности към блок листата." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Разширени Конфигурация" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Позволи" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Позволени Домейни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Опит за създаване на компресиран кеш на списъка с блокове в постоянната " +"памет." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Автоматично Обновяване на Конфигурацията" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Базови Настройки" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Блок" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Блокирани домейни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Блоирани %s домейни (с/със %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Кеш файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Намерен е кеш файл." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Не беше намерена свободна RAM" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Компресиран кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Компресиран кеш файл е създаден." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Намерен е компресиран кеш файл." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Неуспех при валидацията на конфиг (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Управлява системния лог и задълбочеността на изходния код на конзолата." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl повтаряемост на свалянетто" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl максимален размер на файла (в байтове)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS Услуга" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS опция за резолюция, вижте %sREADME%s за подробности." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Директория за компресиран кеш файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "Директория за компресиран кеш файл от блок-листа в постоянната памет." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Забрани" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Спиране на Дебъгването" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Забранено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Забрана на %s услуга" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "Dnsmasq адрес на конфигурационен файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Не добавяй IPv6 стойности" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Не съхранявай компресиран кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Не използвай паралелна обработка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Време за изтегляне (в секунди)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Теглене на списъци" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Включване" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Включване на дебъг режим" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Активира извеждането на дебъг информация в /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Включване на %s услуга" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Грешка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Срещате грешки, моля, проверете %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Неуспех" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Неуспех за достъп до споделената памет" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Неуспех за създаване на файл \"%s\"" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Неуспех при създаване на блок-листа или рестариране на DNS резолвера" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Неуспех за създаване на компресиран кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Неуспех при създаване на директория за %s файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Неуспех при създаване на изходна/кеш/gzip файлова директория" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Неуспех за откриване на формат %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Неуспех за сваляне %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Неуспех за сваляне на Конфигурационен ъпдейт файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Неуспех за форматиране на файл с данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Неуспех при преместване '%s' към '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Неуспех при преместване на временен файл с данни към '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Неуспех за оптимизация на файл с данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Неуспешен анализ на %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Неуспешен анализ на конфигурационен ъпдейт файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Неуспех при обреаботка на позволения списък (allow-list)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Неуспех при презареждане/рестаретиране на DNS резолвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Неуспех при преименуване на временни файлове" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Неуспех при рестаретиране/презареждане на DNS резолвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Неуспех за сортиране на файл с данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Неуспех за стартиране" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Неуспехз а спиране на %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Неуспех за разопаковане на компресиран кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Принудителни портове на DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Принудително използване на портове на DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Принудително презреждане" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Форсиране на DNS на маршрутизатора" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" +"Форсиране на DNS сървъра на маршрутизатора към всички местни устройства" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Принудително повторно сваляне на %s блоклисти" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Принуждаване на DNS на маршрутизатора за локални устройства, още познато и " +"като DNS Хайджакинг (hijacking)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Свободната памет (%s) не е достатъчно за да се обработят всички вкючени блок-" +"листи" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Предоставяне на UCI и достъп до файлове за luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 поддръжка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Ако curl е инсталиран и разпознат, да не сваля по-големи файлове от това." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Ако програмата curl е инсталирана и разпозната, тя ще се опита да изтегли " +"това много в случай на timeout / неуспех." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Позволение на отделни домейни." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Блокиране на отделни домейни." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Невалидна компресирана директория за кеш '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED (светодиод) за индикация на статус" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Стартирайте едновременно изтеглянето и обработката на всички списъци, като " +"намалите времето за стартиране на услугата." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Изисква всички устройства са използват собствените си DNS сървъри ако е " +"зададено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Без AdBlock при SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Без AdBlock при dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Няма HTTPS/SSL поддръжка на устройството" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Няма блок-лист уеб адреси нито блокирани-домейни включени" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Не е инсталиран или намерен" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Настройка за подробност на изходните данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Пауза" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Паузиране на %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Извършете актуализация на конфигурацията, преди да изтеглите списъците за " +"блокиране/позволяване." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Изберете светодиод (LED), който вече не е използван в %sSystem LED " +"Configuration%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Избор на SmartDNS инстанци(я/и) за блокиране на реклами" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Избор на dnsmasq инстанци(я/и) за блокиране на реклами" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Моля, обърнете внимание, че %s не се поддържа от тази система." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Списъци за обработка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Повторно изтегляне" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Рестартиране" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Управление на Услуги" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Грешки при Услуги" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Състояние на Услуги" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Предупреждения за Услуги" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Едновременна обработка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Размер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Размер %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Някои изходни данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Някои препоръчани пакети липсват" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Начало" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Стартиране" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Стартиране на услуга %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Състояние" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Спиране" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Спиране на свалянето ако е в празен ход за определен брой секунди." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Спрян" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Спиране на услуга 5s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Съхранение на компресиран кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Съхранение на компресиран файл на маршрутизатор" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Потискане на изходните данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s не успя да открие WAN шлюз" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Поддръжката на ipset в dnsmasq е разрешена, но dnsmasq или не е инсталиран, " +"или инсталираният dnsmasq не поддържа ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Поддръжката на ipset в dnsmasq е разрешена, но ipset или не е инсталиран, " +"или инсталираният ipset не поддържа тип '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Поддръжката на nft set на dnsmasq е разрешена, но dnsmasq или не е " +"инсталиран, или инсталираният dnsmasq не поддържа nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "Поддръжката на dnsmasq nft sets е разрешена, но nft не е инсталиран" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL адрес" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL към външния конфигурационен файл на dnsmasq, вижте %sREADME%s за " +"подробности." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URL адреси на файл(и), съдържащи списъци, които да бъдат разрешени или " +"блокирани." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Неизвестно" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Неизвестна грешка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Неизвестно предупреждение" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Използване на AdBlocking за инстанцията(ите) на SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Използване на AdBlocking за инстанцията(ите) на dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Открито е използване на външен конфигурационен файл на dnsmasq, моля, " +"задайте опцията '%s' на '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Използване на паралелна обработка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Подробност на изходните данни" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Версия" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Версия %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Предупреждение" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Можете да ограничите блокирането на реклами до конкретната(ите) инстанция(и) " +"на SmartDNS (%sповече информация%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Можете да ограничите блокирането на реклами до конкретна(и) инстанция(и) на " +"dnsmasq (%sповече информация%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq допълнителни хостове" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq настройка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq сървърен файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "нищо" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "набор от домейни smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound adblock list" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Configuration" +#~ msgstr "Конфигурация" + +#~ msgid "Loading" +#~ msgstr "Зареждане" diff --git a/applications/luci-app-adblock-fast/po/bn_BD/adblock-fast.po b/applications/luci-app-adblock-fast/po/bn_BD/adblock-fast.po new file mode 100644 index 0000000000..db0406be16 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/bn_BD/adblock-fast.po @@ -0,0 +1,725 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-10-08 17:53+0000\n" +"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationssimple-adblock/bn_BD/>\n" +"Language: bn_BD\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "সক্রিয় করুন" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "ভুল" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "শুরু করুন" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "সতর্কতা" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "কনফিগারেশন" + +#~ msgid "Info" +#~ msgstr "তথ্য" diff --git a/applications/luci-app-adblock-fast/po/ca/adblock-fast.po b/applications/luci-app-adblock-fast/po/ca/adblock-fast.po new file mode 100644 index 0000000000..12056784db --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ca/adblock-fast.po @@ -0,0 +1,725 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-03-08 13:04+0000\n" +"Last-Translator: BenRoura <benrouravkg@gmail.com>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssimple-adblock/ca/>\n" +"Language: ca\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5.1\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Dominis blocats" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "Configuració" + +#~ msgid "Reload" +#~ msgstr "Torna a carregar" diff --git a/applications/luci-app-adblock-fast/po/cs/adblock-fast.po b/applications/luci-app-adblock-fast/po/cs/adblock-fast.po new file mode 100644 index 0000000000..2af12ebfe2 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/cs/adblock-fast.po @@ -0,0 +1,752 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-09-27 23:28+0000\n" +"Last-Translator: David Rapaň <david@rapan.cz>\n" +"Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/cs/>\n" +"Language: cs\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" +"X-Generator: Weblate 5.1-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s není nainstalován nebo nenalezen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Přidat IPv6 záznamy" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Přidat IPv6 záznamy do seznamu blokovaných položek." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Pokročilá konfigurace" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Základní konfigurace" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blokované domény" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Ovládá systémový protokol a podrobnosti výstupu konzoly." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Počet pokusů opakování stahování pomocí cURL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Služba DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Zakázat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Zakázáno" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Vypínání služby %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Povolit" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Aktivuji službu %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Chyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Podpora IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Není instalováno nebo nenalezeno" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Řízení služby" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Chyby služby" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Stav služby" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Varování služby" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Start" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Start služby %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Zastavit" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Zastavuje se služba %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Podrobný výstup" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Varování" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "žádný" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "disabled" +#~ msgstr "zakázáno" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Chyba: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Chyba: %s %s" + +#~ msgid "Collected Errors" +#~ msgstr "Shromážděné chyby" + +#~ msgid "Configuration" +#~ msgstr "Nastavení" + +#~ msgid "Info" +#~ msgstr "Informace" + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Zakázané URL adresy domén" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Zakázané domény" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Zakázané URL adresy hostitelů" + +#~ msgid "README" +#~ msgstr "README" + +#~ msgid "Reload" +#~ msgstr "Znovu načíst" diff --git a/applications/luci-app-adblock-fast/po/da/adblock-fast.po b/applications/luci-app-adblock-fast/po/da/adblock-fast.po new file mode 100644 index 0000000000..edf25a57d8 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/da/adblock-fast.po @@ -0,0 +1,1012 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-03-12 11:02+0000\n" +"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/da/>\n" +"Language: da\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s er i øjeblikket deaktiveret" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s er ikke installeret eller ikke fundet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Handling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktiv" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock på alle forekomster" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock på udvalgte instanser" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - tilladt og Blocked Domains" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - tilladt og blokerede lister URLs" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configuration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Tilføj IPv6-poster" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Tilføj IPv6-poster til bloklisten." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Avanceret konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Tillad" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Tilladte domæner" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Forsøg på at oprette en komprimeret cache af bloklisten i den vedvarende " +"hukommelse." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatisk konfigurationsopdatering" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Grundlæggende konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Bloker" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blokerede domæner" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blokerer %s domæner (med %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Cache-fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cache-fil fundet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Kan ikke registrere ledig RAM" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Komprimeret cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Komprimeret cache-fil oprettet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Komprimeret cache-fil fundet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Konfig (%s) valideringsfejl!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Styrer systemlog og konsoloutput verbositet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl download prøv igen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl maksimal filstørrelse (i bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS-tjeneste" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS-opløsningsindstilling, se %sREADME%s for yderligere oplysninger." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Mappe til komprimeret cache-fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Mappe til komprimeret cache-fil af blokliste i den vedvarende hukommelse." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Deaktiver" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Deaktiver fejlfinding" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Deaktiveret" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Deaktiverer %s tjenesten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL til Dnsmasq-konfigurationsfilen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Tilføj ikke IPv6-poster" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Gem ikke komprimeret cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Brug ikke samtidig behandling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Download timeout (i sekunder)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Downloader lister" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Aktiver" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Aktiver fejlfinding" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Aktivere debug output til /tmp /adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Aktiverer %s tjeneste" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Fejl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Fejl, der opstår, skal du kontrollere %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Fejl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Detaljeret at få adgang til delt hukommelse" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "fejlede ved oprettelsen af '%s' fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Detaljeret for at oprette blokeringsliste eller genstarte DNS-starter" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Detaljeret at oprette komprimeret cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Detaljeret for at oprette mappe for %s fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Detaljeret for at oprette output/cache/gzip fil mappe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Detaljeret at opdage format %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Detaljeret at downloade %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Det lykkedes ikke at downloade filen Config Update" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "formatering af datafil mislykkedes" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "kunne ikke flytte '%s' til '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Detaljeret at flytte midlertidige datafil til \"%s ''" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Detaljeret for at optimere datafil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "undlod at parse" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Detaljeret til parse Config Update-fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Detaljeret til proces tillader-list" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Detaljeret om genindlæs/start DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Detaljeret for at fjerne midlertidige filer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Detaljeret at genstarte/reload DNS-aftrækker" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Detaljeret til at sortere datafil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Kunne ikke starte" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Detaljeret at stoppe %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Detaljeret til udpakning af komprimeret cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Force DNS Ports" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Tving DNS porte:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Tving genindlæsning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Tving router DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Tving router DNS-server til alle lokale enheder" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Tving gendownload af %s blokeringslister" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Tvinger routerens DNS-brug på lokale enheder, også kendt som DNS-kapring." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "Fri ram (%s) er ikke nok til at behandle alle aktiverede block-lists" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Grant UCI og filadgang til luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6-understøttelse" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Hvis curl er installeret og registreret, vil den ikke hente filer, der er " +"større end dette." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Hvis curl er installeret og registreret, vil den prøve at downloade så mange " +"gange ved timeout/fejl." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Individuelle domæner skal tillades." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Individuelle domæner skal blokeres." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Ugyldig komprimeret cache-mappe '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED for at angive status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Start alle lister, der downloades og behandles samtidigt, hvilket reducerer " +"tjenestens starttid." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "Lad lokale enheder bruge deres egne DNS-servere, hvis de er indstillet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Ingen AdBlock på SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Ingen AdBlock på dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Ingen HTTPS/SSL support på enheden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Ingen blokeret liste webadresser eller blokerede domæner aktiveret" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Ikke installeret eller ikke fundet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Indstilling af output verbositet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Sæt pause" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Pausing %" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Udfør en opdatering af konfigurationen, før downloading af blok-/" +"tilladelseslisterne." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Vælg den LED, der ikke allerede er brugt i %sSystem LED Configuration%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Vælg SmartDNS-forekomst(er) til AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Vælg dnsmasq-instans(er) til AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Bemærk venligst, at %s ikke understøttes på dette system." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Behandling af lister" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Gendownload" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Genstarter" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Kontrol af tjenesten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Fejl i tjenesten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Tjenestestatus" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Tjeneste Advarsler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Samtidig behandling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Størrelse" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Størrelse: %" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Noget output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Nogle anbefalede pakker mangler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Start" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Starter" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Starter %s tjeneste" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stop" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Stopper overførslen, hvis den er gået i stå i det indstillede antal sekunder." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Stoppet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Stopper tjenesten %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Gem komprimeret cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Gem komprimeret cache-fil på routeren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Undertrykk output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "% fejlede at opdage WAN gateway" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Dnsmasq ipset understøttelse er aktiveret, men dnsmasq er enten ikke " +"installeret eller installeret dnsmasq understøtter ikke ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Dnsmasq ipset understøttelse er aktiveret, men ipset er enten ikke " +"installeret eller installeret ipset understøtter ikke '%s' type" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Dnsmasq nft sæt understøttelse er aktiveret, men dnsmasq er enten ikke " +"installeret eller installeret dnsmasq understøtter ikke nft sæt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" +"Dnsmasq nft sæt understøttelse er aktiveret, men nft er ikke installeret" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL-ADRESSE" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL til den eksterne dnsmasq-konfigurationsfil, se %sREADME%s for detaljer." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URL'er til fil(er), der indeholder lister, der skal være tilladt eller " +"blokeret." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Ukendt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Ukendt fejl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Ukendt advarsel" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Brug AdBlocking på SmartDNS-forekomsten(-erne)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Brug AdBlocking på dnsmasq-instansen (s)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Brug af ekstern dnsmasq config-fil, der er registreret, skal du angive " +"\"%s\" mulighed for at \"%s\"" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Brug samtidig behandling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Verbose output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Version: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Advarsel" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Du kan begrænse AdBlocking til de(n) specifikke SmartDNS-forekomst(er) " +"(%smore information%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Du kan begrænse AdBlocking til de(n) specifikke dnsmasq-instans(er) (%smere " +"information%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq yderligere værter" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq konfig" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft sæt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq-servere-fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "ingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "smartdns-domænesæt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft-sæt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "Unbound AdBlock Liste" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock på %s kun" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Du kan begrænse AdBlocking til en bestemt dnsmasq-instans(r) (%smore-" +#~ "information%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Tving gen-download" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Tving gendownload af %s blokeringslister" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Fejl, der opstår, skal du kontrollere %sREADME%s!" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Tilladte domæne-URL'er" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Administration af tilladte og blokerede lister" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Blokeret AdBlockPlus-style URL'er" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Blokerede domæne-URL'er" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Blokerede værts-URL'er" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Aktiverer fejlsøgningsoutput til /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Giv UCI og filadgang til luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "Simpel AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Konfiguration" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Status" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URL'er til lister over AdBlockPlus-stil formaterede domæner, der skal " +#~ "blokeres." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URL'er til lister over domæner, der skal tillades." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URL'er til lister over domæner, der skal blokeres." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URL'er til lister over værter, der skal blokeres." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "Konfig (%s) valideringsfejl!" + +#~ msgid "disabled" +#~ msgstr "deaktiveret" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "dnsmasq ipset-understøttelse er aktiveret, men dnsmasq er enten ikke " +#~ "installeret eller installeret dnsmasq understøtter ikke ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "dnsmasq ipset-understøttelse er aktiveret, men ipset er enten ikke " +#~ "installeret eller installeret ipset understøtter ikke typen '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "dnsmasq ipset-understøttelse er aktiveret, men dnsmasq er enten ikke " +#~ "installeret eller installeret dnsmasq understøtter ikke nft sæt" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "understøttelse af dnsmasq nft-sæt er aktiveret, men nft er ikke " +#~ "installeret" + +#~ msgid "failed to access shared memory" +#~ msgstr "kunne ikke få adgang til delt hukommelse" + +#~ msgid "failed to create '%s' file" +#~ msgstr "fejlede ved oprettelsen af '%s' fil" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "Det lykkedes ikke at oprette en blokliste eller genstarte DNS resolver" + +#~ msgid "failed to create compressed cache" +#~ msgstr "kunne ikke oprette komprimeret cache" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "kunne ikke oprette mappe til %s fil" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "kunne ikke oprette output/cache/gzip-filmappe" + +#~ msgid "failed to download" +#~ msgstr "download mislykkedes" + +#~ msgid "failed to download Config Update file" +#~ msgstr "Det lykkedes ikke at downloade filen Config Update" + +#~ msgid "failed to format data file" +#~ msgstr "formatering af datafil mislykkedes" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "kunne ikke flytte '%s' til '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "Det lykkedes ikke at flytte midlertidig datafil til '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "optimering af datafil mislykkedes" + +#~ msgid "failed to parse" +#~ msgstr "undlod at parse" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "kunne ikke parse Config Update-fil" + +#~ msgid "failed to process allow-list" +#~ msgstr "kunne ikke behandle tilladelseslisten" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "kunne ikke genindlæse/genstarte DNS-resolver" + +#~ msgid "failed to remove temporary files" +#~ msgstr "kunne ikke fjerne midlertidige filer" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "kunne ikke genstarte/genindlæse DNS-resolver" + +#~ msgid "failed to sort data file" +#~ msgstr "sortering af datafil mislykkedes" + +#~ msgid "failed to stop %s" +#~ msgstr "kunne ikke stoppe %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "udpakning af komprimeret cache mislykkedes" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "ingen HTTPS/SSL-understøttelse på enheden" + +#~ msgid "some recommended packages are missing" +#~ msgstr "nogle anbefalede pakker mangler" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s kunne ikke finde WAN-gatewayen" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "brug af ekstern dnsmasq konfig fil, registreret, indstil venligst '%' " +#~ "indstillingen til '%s' ''" + +#~ msgid "Version: %s" +#~ msgstr "Version: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "Tjenesten %s kunne ikke finde WAN gatewayen!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Kan ikke oprette en mappe for '%s'" + +#~ msgid "Downloading" +#~ msgstr "Downloader" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Fejl: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Fejl: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Cache-fil, der indeholder %s domæner fundet." + +#~ msgid "Collected Errors" +#~ msgstr "Samlede fejl" + +#~ msgid "Configuration" +#~ msgstr "Konfiguration" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ Yderligere værter" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ Konfig" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ipsæt" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft sæt" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ-servere fil" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Forsinkelse (i sekunder) for start ved opstart" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "Indlæser" + +#~ msgid "Message" +#~ msgstr "Besked" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Vælg den DNS-opløsningsmulighed, for at oprette adblock-listen for, se " +#~ "%sREADME%s for detaljer." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Kør service efter indstillet forsinkelse ved opstart." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Tjenestestatus [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Simple AdBlock-indstillinger" + +#~ msgid "Success" +#~ msgstr "Succes" + +#~ msgid "Task" +#~ msgstr "Opgave" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Unbound AdBlock Liste" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP-sæt" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "DNSMASQ NFT-sæt" diff --git a/applications/luci-app-adblock-fast/po/de/adblock-fast.po b/applications/luci-app-adblock-fast/po/de/adblock-fast.po new file mode 100644 index 0000000000..9addf74731 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/de/adblock-fast.po @@ -0,0 +1,1148 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-23 04:23+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: German <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/de/>\n" +"Language: de\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s ist derzeit deaktiviert" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s ist nicht installiert oder konnte nicht gefunden werden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Aktion" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktiv" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock auf allen Instanzen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock auf ausgewählten Instanzen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast – Erlaubte und blockierte Domains" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast – Erlaubte und blockierte URL-Listen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast – Konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast – Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "IPv6-Einträge hinzufügen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Füge IPv6-Einträge zur Blockliste hinzu." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Erweiterte Konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Erlauben" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Erlaubte Domains" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Versuche einen komprimierten Cache der Blockliste im persistenten Speicher " +"zu erstellen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatisches Update der Konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Grundlegende Konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blockieren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Gesperrte Domains" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blockieren von %s Domänen (mit %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Cache-Datei" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cache-Datei gefunden." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Kann kein freies RAM erkennen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Komprimierter Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Komprimierte Cache-Datei erstellt." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Komprimierte Cache-Datei gefunden." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Validierungsfehler der Konfiguration (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Steuert die Ausführlichkeit des Systemprotokolls und der Konsolenausgabe." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl-Download-Wiederholung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Maximale Dateigröße für Curl (in Bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS-Dienst" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS-Auflösungsoption, siehe %sREADME%s für Details." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Verzeichnis für die komprimierte Cache-Datei" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Verzeichnis für die komprimierte Cachedatei der Blockliste im persistenten " +"Speicher." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Deaktivieren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Debugging deaktivieren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Deaktiviert" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Deaktiviere Dienst %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL der Dnsmasq-Konfigurationsdatei" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Keine IPv6-Einträge hinzufügen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Keinen komprimierten Cache speichern" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Verwende keine Simultanverarbeitung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Download-Timeout (in Sekunden)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Herunterladen von Listen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Aktivieren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Debugging aktivieren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Aktiviere Debug-Ausgabe an /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Aktiviere Dienst %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Fehler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Es sind Fehler aufgetreten, bitte das %sREADME%s überprüfen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Fehlschlag" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Zugriff auf den gemeinsamen Speicher fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Die Datei „%s“ konnte nicht erstellt werden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"Die Blockierungsliste konnte nicht erstellt werden oder der DNS-Resolver " +"konnte nicht neu gestartet werden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Anlegen des komprimierten Caches fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Anlegen des Verzeichnisses für die Datei %s fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" +"Anlegen des output/cache/-Verzeichnisses für die gzip-Datei fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Format %s nicht erkennbar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Download von %s fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Der Download der Konfigurations-Update-Datei ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Das Formatieren der Datendatei ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Das Bewegen von „%s“ nach „%s“ ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Das Bewegen der temporären Datei nach „%s“ ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Die Optimierung der Datendatei ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Das Parsen von %s ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Die Konfigurations-Update-Datei konnte nicht geparst werden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Die Allow-Liste konnte nicht verarbeitet werden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Der Neustart des DNS-Resolvers ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Das Bewegen der temporären Dateien ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Der Neustart des DNS-Resolvers ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Das Sortieren der Datendatei ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Fehler beim Starten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Das Anhalten von %s ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Das Entpacken des komprimierten Caches ist fehlgeschlagen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "DNS-Ports erzwingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "DNS-Ports erzwingen:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Erneut Laden erzwingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Router-DNS erzwingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Router-DNS-Server auf alle lokalen Geräte erzwingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Erneutes Herunterladen von %s Sperrlisten erzwingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Erzwingt die Verwendung des Router-DNS auf lokalen Geräten, auch als DNS " +"Hijacking bekannt." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Das freie RAM (%s) ist nicht ausreichend, um alle aktivierten Blocklisten zu " +"verarbeiten" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "UCI- und Dateizugriff für luci-app-adblock-fast gewähren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 Unterstützung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Wenn curl installiert ist und erkannt wird, werden keine Dateien " +"heruntergeladen, die größer sind als dieser Wert." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Neuversuche bei Zeitüberschreitung/Fehler des Downloads, falls Curl " +"installiert und erkannt wird." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Einzelne zuzulassende Domänen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Einzelne zu sperrende Domains." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Ungültiges komprimiertes Cache-Verzeichnis '%s '" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED für Statusanzeige" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Starte alle Listen Downloads und Verarbeitungsvorgänge gleichzeitig, " +"reduziert Startzeit des Dienstes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Lokale Geräte können ihre eigenen DNS-Server verwenden, wenn diese " +"eingestellt sind" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Kein AdBlock auf SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Kein AdBlock auf dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Keine HTTPS/SSL-Unterstützung auf dem Device" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Keine blockierten Listen-URLs oder blockierte Domänen aktiviert" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Nicht installiert oder nicht gefunden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Ausgabe-Verbositätseinstellung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Pause" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Pausiere %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Konfigurationsaktualisierung vor dem Herunterladen der Block/Allow-Listen " +"durchführen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Wähle eine frei nutzbare LED aus, die noch nicht in der %sSystem-LED-" +"Konfiguration%s verwendet wird." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Wählen Sie die SmartDNS-Instanz(en) für AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Wählen Sie die dnsmasq-Instanz(en) für AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Bitte beachte, dass %s auf diesem System nicht unterstützt wird." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Listen verarbeiten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Neu herunterladen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Starte neu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Dienstverwaltung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Dienstfehler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Dienststatus" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Dienstwarnungen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Gleichzeitige Verarbeitung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Größe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Größe: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Einige Ausgaben" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Einige empfohlene Pakete fehlen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Start" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Starte" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Dienst %s wird gestartet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stopp" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Stoppe den Download falls er für mehr als die gewählte Anzahl an Sekunden " +"stockt." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Angehalten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Dienst %s wird angehalten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Speicher komprimierten Zwischenspeicher" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Speicher komprimierte Zwischenspeicherdatei auf Router" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Unterdrücke Ausgabe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "Der %s konnte das WAN-Gateway nicht finden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Die dnsmasq-ipset-Unterstützung ist aktiviert, aber dnsmasq ist entweder " +"nicht installiert oder dnsmasq unterstützt kein ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Die dnsmasq-ipset-Unterstützung ist aktiviert, aber ipset ist entweder nicht " +"installiert oder das installierte ipset unterstützt den Typ „%s“ nicht" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Die dnsmasq-nft-set-Unterstützung ist aktiviert, aber dnsmasq ist entweder " +"nicht installiert oder dnsmasq unterstützt kein nft-set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" +"Die Unterstützung für dnsmasq-nft-Sets ist aktiviert, nft ist jedoch nicht " +"installiert" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL zur externen dnsmasq-Konfigurationsdatei, siehe %sREADME%s für Details." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URLs zu Dateien, die Listen enthalten, die zugelassen oder blockiert werden " +"sollen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Unbekannt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Unbekannter Fehler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Unbekannte Warnung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Verwenden von AdBlock auf der/n SmartDNS-Instanz(en)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "AdBlocking für die dnsmasq-Instanz(en) verwenden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Verwendung einer externen dnsmasq-Konfigurationsdatei erkannt, bitte die " +"Option „%s“ auf „%s“ einstellen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Nutze Simultanverarbeitung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Ausführliche Ausgabe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Version %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Warnung" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Sie können die AdBlockierung auf die spezifischen SmartDNS-Instanz(en) " +"beschränken (%sweitere Informationen%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Sie können das AdBlocking auf die bestimmte dnsmasq-Instanz(en) beschränken " +"(%sweitere Informationen%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "zusätzliche dnsmasq-Hosts" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq-Konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq-ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq-nft-Set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq-Server-Datei" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "kein" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "smartdns Domänen-Set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound-Werbeblockerliste" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock nur auf %s" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Das AdBlocking kann auf eine oder mehrere bestimmte dnsmasq-Instanzen " +#~ "beschränkt werden (%sweitere Informationen%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Erneutes Herunterladen erzwingen" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Erneutes Herunterladen von %s-Sperrlisten erzwingen" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Es sind Fehler aufgetreten, bitte die %sREADME%s überprüfen!" + +#~ msgid "Failed to parse" +#~ msgstr "Das Parsen ist fehlgeschlagen" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Zulässige Domain-URLs" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Verwaltung zugelassener und gesperrter Listen" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Blockierte URLs im AdBlockPlus-Stil" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URLs von gesperrten Domains" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "URLs gesperrter Hosts" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Debug-Ausgabe nach /tmp/simple-adblock.log aktivieren." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "UCI- und Dateizugriff für luci-app-simple-adblock gewähren" + +#~ msgid "Simple AdBlock" +#~ msgstr "Einfacher AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Konfiguration" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Status" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URLs zu Domainlisten im AdBlockPlus-Stil, die blockiert werden sollen." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URLs zu Listen von Domains, die zugelassen werden sollen." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URLs zu Listen von Domains, die blockiert werden sollen." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URLs zu Listen von Hosts, die blockiert werden sollen." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "Fehler bei der Überprüfung der config (%s)!" + +#~ msgid "disabled" +#~ msgstr "deaktiviert" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "Unterstützung für dnsmasq ipset ist aktiviert, aber entweder ist dnsmasq " +#~ "nicht installiert oder das installierte dnsmasq unterstützt ipset nicht" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "Unterstützung für dnsmasq ipset ist aktiviert, aber entweder ist ipset " +#~ "nicht installiert oder das installierte ipset unterstützt den Typ '%s' " +#~ "nicht" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "Unterstützung für dnsmasq nft set ist aktiviert, aber entweder ist " +#~ "dnsmasq nicht installiert oder das installierte dnsmasq unterstützt nft " +#~ "set nicht" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "Die Unterstützung von dnsmasq nft sets ist aktiviert, aber nft ist nicht " +#~ "installiert" + +#~ msgid "failed to access shared memory" +#~ msgstr "Zugriff auf gemeinsamen Speicherbereich fehlgeschlagen" + +#~ msgid "failed to create '%s' file" +#~ msgstr "Erstellen der %s-Datei schlug fehl" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "Erstellung der Blockier-Liste oder Neustart des DNS-Resolvers " +#~ "fehlgeschlagen" + +#~ msgid "failed to create compressed cache" +#~ msgstr "Komprimierter Cache konnte nicht erzeugt werden" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "Verzeichnis für Datei %s konnte nicht erstellt werden" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "Fehler beim Erstellen des Ausgabe-/Cache-/gzip-Dateiverzeichnisses" + +#~ msgid "failed to download" +#~ msgstr "Herunterladen schlug fehl" + +#~ msgid "failed to download Config Update file" +#~ msgstr "Fehler beim Herunterladen der Konfigurationsaktualisierungsdatei" + +#~ msgid "failed to format data file" +#~ msgstr "Formatierung der Datei schlug fehl" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "Verschieben von '%s' nach '%s' schlug fehl" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "Temporärdatei konnte nicht nach '%s' verschoben werden" + +#~ msgid "failed to optimize data file" +#~ msgstr "Datei konnte nicht optimiert werden" + +#~ msgid "failed to parse" +#~ msgstr "konnte nicht eingelesen werden" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "Fehler beim Parsen der Konfigurationsaktualisierungsdatei" + +#~ msgid "failed to process allow-list" +#~ msgstr "Fehler beim Verarbeiten der Zulassungsliste" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "Der DNS-Resolver-Prozess konnte nicht (neu-) gestartet werden" + +#~ msgid "failed to remove temporary files" +#~ msgstr "Temporäre Dateien konnten nich verschoben werden" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "Der DNS-Resolver-Prozess konnte nicht (neu-) gestartet werden" + +#~ msgid "failed to sort data file" +#~ msgstr "Datei konnte nicht sortiert werden" + +#~ msgid "failed to stop %s" +#~ msgstr "%s konnte nicht gestoppt werden" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "Komprimierter Cache konnte nicht entpackt werden" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "keine Unterstützung für HTTPS/SSL auf dem Gerät" + +#~ msgid "some recommended packages are missing" +#~ msgstr "einige empfohlene Pakete fehlen" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "der %s konnte das WAN-Gateway nicht entdecken" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "Verwendung einer externen dnsmasq-Konfigurationsdatei erkannt, bitte " +#~ "setzen Sie die Option '%s' auf '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Version: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "Der %s-Dienst konnte das WAN-Gateway nicht erkennen!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Verzeichnis für '%s' kann nicht erstellt werden" + +#~ msgid "Downloading" +#~ msgstr "Herunterladen" + +#~ msgid "%s Error: %s" +#~ msgstr "%s-Fehler: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s-Fehler: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Cache-Datei mit %s Domänen gefunden." + +#~ msgid "Collected Errors" +#~ msgstr "Gesammelte Fehler" + +#~ msgid "Configuration" +#~ msgstr "Konfiguration" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ Zusätzliche Hosts" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ-Konfiguration" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ-Ipset" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft-Set" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ Server-Datei" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Verzögerung (in Sekunden) für den Start beim Booten" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "Lade" + +#~ msgid "Message" +#~ msgstr "Nachricht" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Wählen Sie die DNS-Auflösungsoption aus, für die Sie die Adblock-Liste " +#~ "erstellen möchten, siehe %sREADME%s für weitere Details." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Dienst mit Verzögerung beim Starten ausführen." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Servicestatus [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Simple AdBlock Einstellungen" + +#~ msgid "Success" +#~ msgstr "Erfolgreich" + +#~ msgid "Task" +#~ msgstr "Aufgabe" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Unbound Adblock-Liste" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP Set" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "DNSMASQ NFT-Set" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s blockiert %s Domains (mit %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Wähle die DNS-Auflösungsmethode für das Erstellen der Adblock-Liste. " +#~ "Siehe <a href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> " +#~ "für mehr Informationen." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Domänen-URLs auf der schwarzen Liste" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Auf der schwarzen Liste gesetzte Domänen" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Auf der schwarzen Liste gesetzte URLs" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Einzelne Domänen, die auf die schwarze Liste gesetzt werden sollen." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Einzelne Domänen, die auf die weiße Liste gesetzt werden sollen." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URLs der Domainlisten die auf die Blackliste kommen sollen." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "URLs der Domainlisten die auf die Whiteliste kommen sollen." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URLs der Hosts-Dateilisten die auf die Blackliste kommen sollen." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "White- und Blacklisten-Management" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Whitelist-Domain-URLs" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Whitelist-Domains" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "" +#~ "Erstellen der Blockliste oder Neustart des DNS-Resolvers schlug fehl" + +#~ msgid "failed to process whitelist" +#~ msgstr "Whitelist konnte nicht verarbeitet werden" + +#~ msgid "Service Status [%s]" +#~ msgstr "Servicestatus [%s]" + +#~ msgid "Cache file containing" +#~ msgstr "Cache-Datei enthält" + +#~ msgid "Compressed cache file found" +#~ msgstr "Komprimierte Cache-Datei gefunden" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Wählen Sie die Option DNS-Auflösung aus, um die Adblockliste zu " +#~ "erstellen, siehe" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Treffen Sie eine Auswahl einer noch freien LED in" + +#~ msgid "Please note that" +#~ msgstr "Bitte beachte daß" + +#~ msgid "README" +#~ msgstr "README" + +#~ msgid "System LED Configuration" +#~ msgstr "System LED Konfiguration" + +#~ msgid "domains" +#~ msgstr "Domänen" + +#~ msgid "domains found" +#~ msgstr "Domänen gefunden" + +#~ msgid "failed to create" +#~ msgstr "Datei konnte nicht erstellt werden:" + +#~ msgid "failed to move temporary data file to" +#~ msgstr "Temporäre Datei konnte nicht ans Ziel verschoben werden:" + +#~ msgid "for details." +#~ msgstr "für Einzelheiten." + +#~ msgid "is not supported on this system." +#~ msgstr "wird auf diesem System nicht unterstützt." + +#~ msgid "to" +#~ msgstr "zu" + +#~ msgid "Enable/Start" +#~ msgstr "Aktivieren/Starten" + +#~ msgid "Reload" +#~ msgstr "Neu laden" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "Dienst ist deaktiviert/beendet" + +#~ msgid "Service is enabled/started" +#~ msgstr "Dienst ist aktiviert/gestartet" + +#~ msgid "Service started with error" +#~ msgstr "Dienst mit Fehler gestartet" + +#~ msgid "Stop/Disable" +#~ msgstr "Stopp/Deaktivieren" diff --git a/applications/luci-app-adblock-fast/po/el/adblock-fast.po b/applications/luci-app-adblock-fast/po/el/adblock-fast.po new file mode 100644 index 0000000000..887dd550aa --- /dev/null +++ b/applications/luci-app-adblock-fast/po/el/adblock-fast.po @@ -0,0 +1,722 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2021-02-01 16:02+0000\n" +"Last-Translator: ChriZathens <c_kan1@hotmail.com>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssimple-adblock/el/>\n" +"Language: el\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Ενεργοποίηση" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Σφάλμα" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "Διαμόρφωση" diff --git a/applications/luci-app-adblock-fast/po/en/adblock-fast.po b/applications/luci-app-adblock-fast/po/en/adblock-fast.po new file mode 100644 index 0000000000..a0b6c91639 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/en/adblock-fast.po @@ -0,0 +1,719 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-11-30 14:34+0000\n" +"Last-Translator: rygle <pittos@post.com>\n" +"Language-Team: English <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/en/>\n" +"Language: en\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.3-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Version" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" diff --git a/applications/luci-app-adblock-fast/po/es/adblock-fast.po b/applications/luci-app-adblock-fast/po/es/adblock-fast.po new file mode 100644 index 0000000000..e83a472ce5 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/es/adblock-fast.po @@ -0,0 +1,1232 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2024-04-08 08:55+0000\n" +"Last-Translator: Salvador Peña <salvadorp74@hotmail.com>\n" +"Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/es/>\n" +"Language: es\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s está actualmente desactivado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s no está instalado o no se encuentra" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Acción" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Activo" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "Bloqueo de anuncios rápido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "Bloqueo de anuncios en todas las instancias" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock en determinadas instancias" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "Bloqueador de anuncios rápido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "Bloqueo de anuncios rápido - Dominios permitidos y bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "Bloqueo de anuncios rápido - URL de listas permitidas y bloqueadas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "Bloqueo de anuncios rápido - Configuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "Bloqueo de anuncios rápido - Estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Añadir entradas IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Añadir entradas IPv6 a la lista de bloqueo." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configuración avanzada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Permitir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Dominios permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Intente crear un caché comprimido de la lista de bloqueo en la memoria " +"persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Actualización automática de configuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configuración básica" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Bloquear" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Dominios bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Bloqueando %s dominios(con %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Caché" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Archivo de caché" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Archivo de caché encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "No se detecta RAM libre" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Caché comprimida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Archivo de caché comprimido creado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Archivo de caché comprimido encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "¡Error de validación de configuración (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Controla el registro del sistema y la verbosidad de salida de la consola." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Intento de descarga de Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Tamaño máximo del archivo Curl (en bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Servicio de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" +"Opción de resolución de DNS, consulte %sREADME%s para obtener más " +"información." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Directorio para el archivo de caché comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"El directorio para guardar los archivos de la caché comprimidos de la lista " +"de los intercepciones en la memoria persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Deshabilitar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Desactivar depuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Desactivado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Desactivando el servicio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL del archivo de configuración de Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "No añadir entradas IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "No almacene caché comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "No use procesamiento simultáneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Tiempo de espera de descarga (en segundos)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Descargando listas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Activar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Activar depuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Activa la salida de depuración a /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Activando el servicio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Error" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Errores encontrados, por favor, compruebe el %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Fallo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "No se pudo acceder a la memoria compartida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "No se pudo crear el archivo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"No se pudo crear la lista de bloqueo o reiniciar el solucionador de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "No se pudo crear la caché comprimida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "No se pudo crear el directorio para el archivo %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "No se pudo crear el directorio de archivos de salida/caché/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "No se pudo detectar el formato %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "No se pudo descargar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "No se pudo descargar el archivo de actualización de configuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "No se pudo formatear el archivo de datos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "No se pudo mover '%s' a '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "No se pudo mover el archivo de datos temporal a '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "No se pudo optimizar el archivo de datos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "No se pudo analizar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "No se pudo analizar el archivo de actualización de configuración" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "No se pudo procesar la lista de permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "No se pudo recargar/reiniciar el solucionador de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "No se pudieron eliminar archivos temporales" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "No se pudo reiniciar/recargar el solucionador de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "No se pudo ordenar el archivo de datos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Fallo al iniciar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "No se pudo detener %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "No se pudo descomprimir la caché comprimida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Forzar puertos DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Forzar puertos DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Forzar recarga" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Forzar al DNS del enrutador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Forzar al servidor DNS del enrutador a todos los dispositivos locales" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Forzar la recarga de %s listas de bloques" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Fuerza el uso de DNS del enrutador en dispositivos locales, también conocido " +"como secuestro de DNS." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"La ram libre (%s) no es suficiente para procesar todas las listas de bloque " +"habilitadas" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Otorgar acceso a archivos y UCI para luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Soporte IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Si curl está instalado y detectado, no descargará archivos más grandes que " +"este." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Si curl está instalado y detectado, volvería a intentar descargar esto " +"muchas veces en tiempo de espera/falla." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Dominios individuales que se permitirán." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Dominios individuales para ser bloqueados." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Directorio de la caché comprimido no válido '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED para indicar estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Inicie todas las descargas y el procesamiento de listas simultáneamente, " +"reduciendo el tiempo de inicio del servicio." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Permita que los dispositivos locales usen sus propios servidores DNS si " +"están configurados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Sin AdBlock en SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Sin bloqueo de anuncios en dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "No hay soporte de HTTPS/SSL en el dispositivo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "No hay listas de URL bloqueadas ni dominios bloqueados activados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "No instalado o no encontrado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Configuración de verbosidad de salida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Pausa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Pausando %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Realice la actualización de la configuración antes de descargar las listas " +"de bloqueos/permitidos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Elija el LED que ya no se utiliza en %sConfiguración del LED del sistema%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Elija la(s) instancia(s) SmartDNS para AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Elija la(s) instancia(s) dnsmasq para AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Tenga en cuenta que %s no es compatible con este sistema." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Procesando listas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Volver a descargar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Reiniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Control de servicio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Errores de servicio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Estado del servicio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Advertencias de servicio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Procesamiento simultáneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Tamaño" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Tamaño: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Alguna salida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Faltan algunos paquetes recomendados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Iniciar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Iniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Iniciando el servicio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Detener" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Detenga la descarga si está detenida durante un número determinado de " +"segundos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Detenido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Deteniendo el servicio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Almacenar caché comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Almacene el archivo de caché comprimido en el enrutador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Suprimir salida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "El %s no pudo descubrir la puerta de enlace WAN" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"La compatibilidad con ipset de dnsmasq está habilitada, pero dnsmasq no está " +"instalado o el instalado no es compatible con ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"La compatibilidad con ipset de dnsmasq está habilitada, pero ipset no está " +"instalado o el instalado no admite el tipo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"El soporte dnsmasq nft set está habilitado, pero dnsmasq no está instalado o " +"dnsmasq instalado no soporta nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" +"La compatibilidad con nft sets de dnsmasq está habilitada, pero nft no está " +"instalado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL del archivo de configuración de dnsmasq externo, consulte %sREADME%s " +"para obtener más información." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"Dirección URL a el(los) archivo(s) que contiene(n) la(s) listas que deben " +"permitirse o bloquearse." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Desconocido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Error desconocido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Advertencia desconocida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Utilizar AdBlocking en la(s) instancia(s) SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Usar AdBlocking en la(s) instancia(s) dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Se detectó el uso de un archivo de configuración dnsmasq externo; configure " +"la opción '%s' en '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Usar procesamiento simultáneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Salida detallada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Versión" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versión %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Advertencia" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Puede limitar el AdBlocking a la(s) instancia(s) SmartDNS específica(s) " +"(%más información%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Puede limitar el AdBlocking a la(s) instancia(s) dnsmasq específica(s) (%más " +"información%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "hosts dnsmasq adicionales" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "configuración de dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "conjunto nft dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "archivo de servidores de dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "ninguno" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "conjunto de dominios smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "Establecer smartdns nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "lista de bloqueadores de anuncios sin vincular" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "Bloqueo de anuncios solo en %s" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Puede limitar el bloqueo de anuncios a una instancia específica de " +#~ "dnsmasq (%smore information%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Forzar re-descarga" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Forzar la descarga de %s listas de bloqueo" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Se encontraron errores, ¡verifique el %sREADME%s!" + +#~ msgid "Failed to parse" +#~ msgstr "No se pudo analizar" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "URLs de dominio permitidas" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Gestión de listas permitidas y bloqueadas" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Direcciones URL bloqueadas del estilo de AdBlockPlus" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URLs de dominio bloqueadas" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "URLs de hosts bloqueadas" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Activa la salida de depuración a /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Conceder acceso UCI y a archivos para luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "AdBlock simple" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "AdBlock simple - Configuración" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "AdBlock simple - Estado" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "Direcciones URL a las listas de los dominios con un formato al estilo de " +#~ "AdBlockPlus que deben bloquearse." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URLs a listas de dominios que se permitirán." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URLs a listas de dominios a bloquear." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URLs a listas de hosts a bloquear." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "¡Error de validación de configuración (%s)!" + +#~ msgid "disabled" +#~ msgstr "desactivado" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "La compatibilidad con ipset de dnsmasq está activada, pero dnsmasq no " +#~ "está instalado o el instalado no admite ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "La compatibilidad con dnsmasq ipset está activada, pero ipset no está " +#~ "instalado o el ipset instalado no admite el tipo '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "La compatibilidad con nft set de dnsmasq está activada, pero dnsmasq no " +#~ "está instalado o el instalado no es compatible con nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "La compatibilidad con dnsmasq nft sets está activada, pero nft no está " +#~ "instalado" + +#~ msgid "failed to access shared memory" +#~ msgstr "no se pudo acceder a la memoria compartida" + +#~ msgid "failed to create '%s' file" +#~ msgstr "no se pudo crear el archivo '%s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "no se pudo crear la lista de bloqueo o reiniciar el solucionador de DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "error al crear caché comprimido" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "no se pudo crear el directorio para el archivo %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "no se pudo crear el directorio de archivos de salida/caché/gzip" + +#~ msgid "failed to download" +#~ msgstr "error al descargar" + +#~ msgid "failed to download Config Update file" +#~ msgstr "no se pudo descargar el archivo de actualización de configuración" + +#~ msgid "failed to format data file" +#~ msgstr "error al formatear el archivo de datos" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "no se pudo mover '%s' a '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "no se pudo mover el archivo de datos temporales a '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "no se pudo optimizar el archivo de datos" + +#~ msgid "failed to parse" +#~ msgstr "no se pudo analizar" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "no se pudo analizar el archivo de actualización de configuración" + +#~ msgid "failed to process allow-list" +#~ msgstr "no se pudo procesar la lista de permitidos" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "error al recargar/reiniciar el solucionador DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "error al eliminar los archivos temporales" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "error al reiniciar/recargar el solucionador DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "error al ordenar el archivo de datos" + +#~ msgid "failed to stop %s" +#~ msgstr "no se pudo detener %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "no se pudo descomprimir el caché comprimido" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "sin soporte HTTPS/SSL en el dispositivo" + +#~ msgid "some recommended packages are missing" +#~ msgstr "faltan algunos paquetes recomendados" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s no pudo descubrir la puerta de enlace WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "se detectó el uso de un archivo de configuración dnsmasq externo, " +#~ "establezca la opción '%s' en '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Versión: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "¡El servicio %s no pudo descubrir la puerta de enlace WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "No se puede crear el directorio para '%s'" + +#~ msgid "Downloading" +#~ msgstr "Descargando" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Error: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Error: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Archivo de caché que contiene %s dominios encontrados." + +#~ msgid "Collected Errors" +#~ msgstr "Errores recopilados" + +#~ msgid "Configuration" +#~ msgstr "Configuración" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Hosts adicionales de DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Config de DNSMASQ" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Archivo de servidores DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Retardo (en segundos) para el inicio en el arranque" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "Cargando" + +#~ msgid "Message" +#~ msgstr "Mensaje" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Elija la opción de resolución DNS para la que crear la lista de bloqueos " +#~ "de anuncios; consulte %sREADME%s para obtener más detalles." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "" +#~ "Ejecute el servicio después de la demora establecida en el arranque." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Estado del servicio [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Configuración de Simple AdBlock" + +#~ msgid "Success" +#~ msgstr "Éxito" + +#~ msgid "Task" +#~ msgstr "Tarea" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Lista de AdBlock Unbound" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Conjunto de IPs de DNSMASQ" + +#, fuzzy +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "Conjunto DNSMASQ NFT" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s está bloqueando %s dominios (con %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Elija la opción de resolución DNS para crear la lista de bloqueos de " +#~ "anuncios, consulte <a href=\"%s#dns-resolution-option\" " +#~ "target=\"_blank\">LÉEME</a> para obtener más información." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "URLs de dominio en lista negra" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Dominios en la lista negra" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "URLs de hosts en lista negra" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Dominios individuales para ser incluidos en la lista negra." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Dominios individuales para ser incluidos en la lista blanca." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URL a listas de dominios que se incluirán en la lista negra." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "URL a listas de dominios que se incluirán en la lista blanca." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URL a listas de hosts que se incluirán en la lista negra." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Gestión de listas blancas y listas de bloqueo" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "URLs de dominio en lista blanca" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Dominios en lista blanca" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "no se pudo crear una lista de bloqueo o reiniciar el DNS resolver" + +#~ msgid "failed to process whitelist" +#~ msgstr "no se pudo procesar la lista blanca" + +#~ msgid "Grant UCI access for luci-app-simple-adblock" +#~ msgstr "Conceder acceso UCI para luci-app-simple-adblock" + +#~ msgid "Service Status [%s]" +#~ msgstr "Estado del servicio [%s]" + +#~ msgid "Cache file containing" +#~ msgstr "Archivo de caché que contiene" + +#~ msgid "Compressed cache file found" +#~ msgstr "Archivo de caché comprimido encontrado" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Elija la opción de resolución DNS para crear la lista de bloqueos de " +#~ "anuncios, consulte el" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Elija el LED que aún no se utiliza en" + +#~ msgid "Please note that" +#~ msgstr "Tenga en cuenta que" + +#~ msgid "README" +#~ msgstr "LÉEME" + +#~ msgid "System LED Configuration" +#~ msgstr "Configuración del sistema LED" + +#~ msgid "domains" +#~ msgstr "dominios" + +#~ msgid "domains found" +#~ msgstr "dominios encontrados" + +#~ msgid "failed to create" +#~ msgstr "fallo al crear" + +#~ msgid "failed to move" +#~ msgstr "error al mover" + +#~ msgid "failed to move temporary data file to" +#~ msgstr "no se pudo mover el archivo de datos temporal a" + +#~ msgid "failed to stop" +#~ msgstr "error al detener" + +#~ msgid "file" +#~ msgstr "archivo" + +#~ msgid "for details." +#~ msgstr "para detalles." + +#~ msgid "is blocking" +#~ msgstr "está bloqueando" + +#~ msgid "is not installed or not found" +#~ msgstr "no está instalado o no se encuentra" + +#~ msgid "is not supported on this system." +#~ msgstr "no es compatible con este sistema." + +#~ msgid "to" +#~ msgstr "a" + +#~ msgid "with" +#~ msgstr "con" + +#~ msgid "Enable/Start" +#~ msgstr "Activar/Iniciar" + +#~ msgid "Reload" +#~ msgstr "Recargar" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "El servicio está desactivado/detenido" + +#~ msgid "Service is enabled/started" +#~ msgstr "El servicio está activado/iniciado" + +#~ msgid "Service started with error" +#~ msgstr "Servicio iniciado con error" + +#~ msgid "Stop/Disable" +#~ msgstr "Detener/Desactivar" + +#~ msgid "Allow Non-ASCII" +#~ msgstr "Permitir no ASCII" + +#~ msgid "Allow Non-ASCII characters in DNSMASQ file" +#~ msgstr "Permitir caracteres no ASCII en el archivo DNSMASQ" + +#~ msgid "Do not allow Non-ASCII" +#~ msgstr "No permitir no ASCII" + +#~ msgid "" +#~ "Only enable if your version of DNSMASQ supports the use of Non-ASCII " +#~ "characters, otherwise DNSMASQ will fail to start." +#~ msgstr "" +#~ "Solo habilítelo si su versión de DNSMASQ admite el uso de caracteres no " +#~ "ASCII; de lo contrario, DNSMASQ no se iniciará." + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "Controla el registro del sistema y la salida de consola." + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "" +#~ "Forza el uso del DNS del enrutador en dispositivos locales, también " +#~ "conocido como Secuestro de DNS" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "Dominios individuales para ser incluidos en la lista negra" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "Dominios individuales para ser incluidos en la lista blanca" + +#~ msgid "Start Simple Adblock service" +#~ msgstr "Iniciar el servicio Simple Adblock" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "URL a listas de dominios que se incluirán en la lista negra" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "URL a listas de dominios que se incluirán en la lista blanca" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "URL a listas de hosts para ser incluidos en la lista negra" + +#~ msgid "" +#~ "Attempt to create a compressed cache of final block-list on the router." +#~ msgstr "" +#~ "Intente crear un caché comprimido de la lista de bloqueo final en el " +#~ "enrutador." + +#~ msgid "Enables debug output to /tmp/simple-adblock.log" +#~ msgstr "Habilitar la salida de depuración a /tmp/simple-adblock.log" + +#~ msgid "" +#~ "Launch all lists downloads and processing simultaneously, reducing " +#~ "service start time" +#~ msgstr "" +#~ "Inicie todas las descargas y el procesamiento de listas simultáneamente, " +#~ "reduciendo el tiempo de inicio del servicio" + +#~ msgid "Run service after set delay on boot" +#~ msgstr "" +#~ "Ejecutar el servicio después de establecer el retraso en el arranque" + +#~ msgid "Stop the download if it is stalled for set number of seconds" +#~ msgstr "" +#~ "Detenga la descarga si se detiene durante un número de segundos " +#~ "establecido" diff --git a/applications/luci-app-adblock-fast/po/fi/adblock-fast.po b/applications/luci-app-adblock-fast/po/fi/adblock-fast.po new file mode 100644 index 0000000000..731a169ef3 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/fi/adblock-fast.po @@ -0,0 +1,728 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-06 10:10+0000\n" +"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n" +"Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/fi/>\n" +"Language: fi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Estetyt verkkonimet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Poista käytöstä" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Pois käytöstä" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Ota käyttöön" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Virhe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6-tuki" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Aloita" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Pysäytä" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Pysäytetty" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Varoitus" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "ei mitään" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "Kokoonpano" + +#~ msgid "Info" +#~ msgstr "Tietoja" + +#~ msgid "Loading" +#~ msgstr "Ladataan" diff --git a/applications/luci-app-adblock-fast/po/fr/adblock-fast.po b/applications/luci-app-adblock-fast/po/fr/adblock-fast.po new file mode 100644 index 0000000000..2843c5453b --- /dev/null +++ b/applications/luci-app-adblock-fast/po/fr/adblock-fast.po @@ -0,0 +1,1077 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-01 22:49+0000\n" +"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" +"Language-Team: French <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/fr/>\n" +"Language: fr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s est actuellement désactivé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s n'est pas installé ou introuvable" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Action" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Actif" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock sur toutes les instances" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configuration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Statut" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Ajouter des entrées IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Ajouter des entrées IPv6 à la liste de blocage." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configuration avancée" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Autoriser" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Domaines autorisés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Tentative de création d'un cache compressé de la liste de blocage dans la " +"mémoire persistante." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Mise à jour automatique de la configuration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configuration de Base" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Bloquer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Domaines bloqués" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blocage de %s domaines (avec %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cache fichier trouvé." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Création d'un fichier cache compressé." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Fichier Compressé cache trouvé." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Contrôle la verbosité du journal système et de la sortie de la console." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Réessayer le téléchargement via Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Taille maximale du fichier Curl (en octets)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Service DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" +"option de résolution DNS, consultez le %sREADME%s pour plus de détails." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Répertoire du fichier cache compressé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Répertoire du fichier cache compressé de la liste de blocs dans la mémoire " +"persistante." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Désactiver" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Désactiver le Débogage" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Désactivé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Désactivant le service %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL du fichier de configuration de Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Ne pas ajouter d'entrées IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Ne pas conserver le cache compressé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Ne pas utiliser de processus simultanés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Time-out de téléchargement (en secondes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Téléchargement de listes" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Activer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Activer le Débogage" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Activation du service %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Erreur" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Echec" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Forcer les ports DNS :" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Forcer le re-chargement" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Forcer le Routeur DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Routage forcé du serveur DNS vers tous les appareils locaux" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Routage forcé du serveur DNS sur les appareils locaux, également connu sous " +"le nom de détournement de DNS." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Support IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Si curl est installé et détecté, il ne téléchargera pas de fichiers plus " +"gros que cela." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Si CURL est détecté et installé, il tentera à nouveau le téléchargement en " +"cas d'échec ou de time-out ce nombre de fois." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Domaines individuels à autoriser." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Domaines individuels à bloquer." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "Indiquer le status avec les LED" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Lancer simultanément le téléchargement et le traitement de toutes les " +"listes, ce qui réduit le temps de démarrage du service." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Permettre aux appareils locaux d'utiliser leurs propres serveurs DNS s'ils " +"sont configurés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Non installé ou non trouvé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Configuration de la verbosité de la sortie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Effectuer la mise à jour de la configuration avant de télécharger les listes " +"de blocage / autorisation." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Choisissez la LED qui n'est pas déjà utilisée dans %sConfiguration de la LED " +"du système%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Veuillez noter que ce système ne prend pas en charge le %s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Listes de traitement" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Redémarrage" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Contrôle de service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Erreurs de service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Statut du service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Avertissements de service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Traitement simultané" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Quelques informations en sortie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Démarrer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Démarrage" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Démarrage du service %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Arrêter" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Arrêter le téléchargement s'il est bloqué pendant ce nombre de secondes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Arrêté" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Arrêt du service %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Conserver le cache compressé" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Conserver le fichier du cache compressé sur le routeur" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Supprimer la sortie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL du fichier de configuration dnsmasq externe, consultez %sREADME%s pour " +"plus de détails." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Utiliser des processus simultanés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Sortie verbeuse" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Version %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Avertissement" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq hôtes supplémentaires" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "configuration dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "ipset dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "nft set dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "fichier des serveurs dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "aucun" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "Liste Adblock unbound" + +#~ msgid "Force Re-Download" +#~ msgstr "Forcer le re-téléchargement" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Forcer le retéléchargement des listes de blocs %s" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "URLs de domaines autorisés" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Gestion des listes autorisées et bloquées" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "URL bloquées de type AdBlockPlus" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URLs de domaines bloqués" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "URLs des hôtes bloqués" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Active la sortie de débogage vers /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "" +#~ "Accorder l'accès à l'OPC et aux fichiers pour luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "Adblock Simple" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Configuration - Simple AdBlock" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Statut" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URLs vers des listes de domaines formatés selon le style AdBlockPlus à " +#~ "bloquer." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URLs vers des listes de domaines à autoriser." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URLs vers des listes de domaines à bloquer." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URL vers des listes d’hôtes à bloquer." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "défaut de validation de config (%) !" + +#~ msgid "disabled" +#~ msgstr "désactivé" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "dnsmasq nft set support est activé, mais dnsmasq n'est pas installé ou " +#~ "installé dnsmasq ne supporte pas nft set" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "le support dnsmasq ipset est activé, mais ipset n'est pas installé ou " +#~ "installé ipset ne supporte pas le type '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "dnsmasq nft set support est activé, mais dnsmasq n'est pas installé ou " +#~ "installé dnsmasq ne supporte pas nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "La prise en charge des ensembles dnsmasq nft est activée, mais nft n'est " +#~ "pas installé" + +#~ msgid "failed to access shared memory" +#~ msgstr "impossible d'accéder à la mémoire partagée" + +#~ msgid "failed to create '%s' file" +#~ msgstr "échec de création du fichier '% s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "échec de la création de la liste de blocage ou du redémarrage du " +#~ "résolveur DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "échec de création du cache compressé" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "échec de la création d'un répertoire pour le fichier %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "échec de la création du répertoire de fichiers output/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "échec de téléchargement" + +#~ msgid "failed to download Config Update file" +#~ msgstr "" +#~ "échec du téléchargement du fichier de mise à jour de la configuration" + +#~ msgid "failed to format data file" +#~ msgstr "Echec du format de fichier de données" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "échec du déplacement de '% s' vers '% s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "Echec deplacement données temporaires fichier '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "pas réussi à optimiser le fichier de données" + +#~ msgid "failed to parse" +#~ msgstr "pas réussi à analyser" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "Échec de l’analyse du fichier de mise à jour de configuration" + +#~ msgid "failed to process allow-list" +#~ msgstr "échec du traitement de la liste autorisée" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "échec de rechargement / redémarrage du résolveur DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "echec suppression fichiers temporaires" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "échec du redémarrage ou de rechargement de résolution DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "echec de trier le fichier de données" + +#~ msgid "failed to stop %s" +#~ msgstr "n'a pas pu arrêter% s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "echec décompression cache" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "pas de prise en charge HTTPS/SSL sur l’appareil" + +#~ msgid "some recommended packages are missing" +#~ msgstr "Certains paquets recommandés sont manquants" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "le %s n'a pas réussi à découvrir la passerelle WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "utilisation d'un fichier de configuration dnsmasq externe détectée, " +#~ "veuillez définir l'option '%s' à '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Version : %s" + +#~ msgid "Downloading" +#~ msgstr "Téléchargement" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Erreur : %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Erreur : %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Cache file contient %s domaines trouvé." + +#~ msgid "Collected Errors" +#~ msgstr "Erreurs Collectées" + +#~ msgid "Configuration" +#~ msgstr "Configuration" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Hôtes additionnels DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Configuration DNSMASQ" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Fichier des serveurs DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Délai (en secondes) pour le démarrage suite au boot" + +#~ msgid "Info" +#~ msgstr "Infos" + +#~ msgid "Loading" +#~ msgstr "Chargement" + +#~ msgid "Message" +#~ msgstr "Message" + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Exécuter le service après avoir défini un délai au démarrage." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "État du service [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Configuration de Adblock Simple" + +#~ msgid "Success" +#~ msgstr "Succès" + +#~ msgid "Task" +#~ msgstr "Tâche" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Liste Adblock non liée" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Ensemble d’adresses IP DNSMASQ" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s bloque %s domaines (avec %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Choisissez l'option de résolution DNS pour laquelle vous souhaitez créer " +#~ "la liste adblock, voir la <a href=\"%s#dns-resolution-option\" " +#~ "target=\"_blank\">README</a> pour plus de détails." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "URLs des Domaines blacklistés" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Domaines blacklistés" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "URLs des Hôtes blacklistés" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Domaines unitaires à blacklister." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Domaines unitaires à mettre en liste blanche." + +#, fuzzy +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URLs à ajouter aux listes de domaines à mettre sur liste noire." + +#, fuzzy +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "Les URL des listes de domaines à mettre sur liste blanche." + +#, fuzzy +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URLs à ajouter aux listes d'hôtes à mettre sur liste noire." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Gestion des listes blanches et des listes de blocage" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "URLs des Domaines sur liste blanche" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Domaines sur liste blanche" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "n’a pas réussi à créer blocklist ou redémarrer le résolveur DNS" + +#~ msgid "failed to process whitelist" +#~ msgstr "echec à traiter la liste blanche" + +#~ msgid "Service Status [%s]" +#~ msgstr "État du service [%]" + +#~ msgid "Cache file containing" +#~ msgstr "Le fichier de cache contenant" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Choisissez l'option de résolution DNS pour créer la liste adblock, voir le" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Choisir la DEL qui n'est pas déjà utilisée dans" + +#~ msgid "Please note that" +#~ msgstr "Veuillez noter que" + +#~ msgid "README" +#~ msgstr "README" + +#~ msgid "System LED Configuration" +#~ msgstr "Configuration des DEL système" + +#~ msgid "for details." +#~ msgstr "pour détails." + +#~ msgid "is not installed or not found" +#~ msgstr "n'est pas installé ou introuvable" + +#~ msgid "is not supported on this system." +#~ msgstr "n'est pas pris en charge sur ce système." + +#~ msgid "to" +#~ msgstr "à" + +#~ msgid "Enable/Start" +#~ msgstr "Activer/Démarrer" + +#~ msgid "Reload" +#~ msgstr "Recharger" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "Le service est désactivé/arrêté" + +#~ msgid "Service is enabled/started" +#~ msgstr "Le service est activé/démarré" + +#~ msgid "Service started with error" +#~ msgstr "Le service a démarré avec des erreurs" + +#~ msgid "Stop/Disable" +#~ msgstr "Arrêter/Désactiver" diff --git a/applications/luci-app-adblock-fast/po/he/adblock-fast.po b/applications/luci-app-adblock-fast/po/he/adblock-fast.po new file mode 100644 index 0000000000..2e224d6875 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/he/adblock-fast.po @@ -0,0 +1,723 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-09-07 08:59+0000\n" +"Last-Translator: Yaron Shahrabani <sh.yaron@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/he/>\n" +"Language: he\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " +"n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 5.0.1-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "הפעלה" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "אזהרה" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "הגדרות" diff --git a/applications/luci-app-adblock-fast/po/hi/adblock-fast.po b/applications/luci-app-adblock-fast/po/hi/adblock-fast.po new file mode 100644 index 0000000000..c146ea8a18 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/hi/adblock-fast.po @@ -0,0 +1,713 @@ +msgid "" +msgstr "" +"Language: hi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" diff --git a/applications/luci-app-adblock-fast/po/hu/adblock-fast.po b/applications/luci-app-adblock-fast/po/hu/adblock-fast.po new file mode 100644 index 0000000000..de48f00a4c --- /dev/null +++ b/applications/luci-app-adblock-fast/po/hu/adblock-fast.po @@ -0,0 +1,931 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-06 10:13+0000\n" +"Last-Translator: Norbert Szentner <upd6la1j@duck.com>\n" +"Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/hu/>\n" +"Language: hu\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.1-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s jelenleg nem engedélyezett" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s nincs telepítve vagy nem található" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +#, fuzzy +msgid "Action" +msgstr "Művelet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktív" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Gyors" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +#, fuzzy +msgid "AdBlock on all instances" +msgstr "AdBlock minden esetben" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Engedélyezett és Tiltott Domainek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Engedélyezett és Tiltott URL-ek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Konfiguráció" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Állapot" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "IPv6 bejegyzések hozzáadása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "IPv6 bejegyzések hozzáadása a tiltólistához." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Speciális beállítások" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Engedélyez" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Engedélyezett domainek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Kísérlet a tiltólista egy tömörített gyorsítótárának létrehozására az " +"állandó memóriában." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatikus Konfig Frissítés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Alapszintű beállítások" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Tilt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blokkolt domainek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blokkolt %s domainek (%s -el)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cache fájl megtalálva." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Tömörített cache fájl létrehozva." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Tömörített cache fájl megtalálva." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Konfig (%s) érvényesítés sikertelen!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "A rendszernaplót és a konzolkimenet részletességét vezérli." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl letöltés újrapróbálása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl maximális fájlmérete (byte-okban)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS szolgáltatás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Tömörített cache fájl célkönyvtára" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Letiltás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Hibakeresés letiltása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Letiltva" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "A %s szolgáltatás letiltása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +#, fuzzy +msgid "Dnsmasq Config File URL" +msgstr "Dnsmasq Config File URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Ne adjon hozzá IPv6 bejegyzéseket" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Ne tároljon tömörített gyorsítótárat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Ne használjon egyidejű feldolgozást" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Letöltés időkorlátja (másodpercben)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Listák letöltése" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Engedélyezés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Hibakeresés engedélyezése" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +#, fuzzy +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Engedélyezi a hibakeresési kimenetet a /tmp/simple-adblock.log fájlba." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "A %s szolgáltatás engedélyezése" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Hiba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +#, fuzzy +msgid "Fail" +msgstr "Hiba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Hiba a megosztott memória elérése közben" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "A '%s' fájl létrehozása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +#, fuzzy +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Tiltó-lista látrehozása vagy a DNS-megoldó ujraindítása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Tömörített cache létrehozása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "A %s fájl könyvtárának létrehozása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "%s letöltése sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Config Update fájl letöltése sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +#, fuzzy +msgid "Failed to format data file" +msgstr "Adatfájl formázása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +#, fuzzy +msgid "Failed to move '%s' to '%s'" +msgstr "Hiba a fájl mozgatása közben (Innen:'%s' Ide: '%s')" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Az adatfájl optimalizálása sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +#, fuzzy +msgid "Failed to process allow-list" +msgstr "Nem sikerült feldolgozni az engedélyezési listát" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Átmeneti fájlok törlése sikertelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Kényszerített újratöltés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Kiszolgáló DNS-ének kényszerítése" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" +"Az útválasztó DNS-kiszolgálójának kényszerítése az összes helyi eszközre" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Kényszeríti az útválasztó DNS-ének használatát a helyi eszközökön. Ismert " +"még DNS-eltérítésként is." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 támogatás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Ha a cURL telepítve van és észlelhető, akkor megpróbálhatja ezt többször is " +"letölteni az időtúllépéskor vagy meghiúsuláskor." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED az állapot jelzéséhez" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Az összes lista letöltéseinek és egyidejű feldolgozásának indítása, " +"csökkentve a szolgáltatás indítási idejét." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"A helyi eszközök használhassák a saját DNS-kiszolgálóikat, ha be van állítva" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Kimenet részletességének beállítása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +#, fuzzy +msgid "Please note that %s is not supported on this system." +msgstr "" +"Kérlek vedd figyelembe, hogy ez a/az %s nem támogatott ezen a rendszeren." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Újraindítás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Szolgáltatás állapota" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Egyidejű feldolgozás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Valamilyen kimenet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Indítás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Indítás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Megállítás" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "A letöltés leállítása, ha az leállt a beállított másodpercekig." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Megállítva" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Tömörített gyorsítótár tárolása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Tömörített gyorsítótárfájl tárolása az útválasztón" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Kimenet elnyomása" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Egyidejű feldolgozás használata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Részletes kimenet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Figyelmeztetés" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "nincs" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#, fuzzy +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock csak a %s -en" + +#~ msgid "Force Re-Download" +#~ msgstr "Kényszerített újra letöltés" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Engedélyezett domain URL-ek" + +#, fuzzy +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Engedély- és tiltó lista menedzsment" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Blokkolt domain URL-ek" + +#, fuzzy +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Blokkolt Host URL-ek" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "" +#~ "Engedélyezi a hibakeresési kimenetet a /tmp/simple-adblock.log fájlba." + +#, fuzzy +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "UCI és fájl hozzáférés adása a \"luci-app-simple-adblock\"-nak" + +#~ msgid "Simple AdBlock" +#~ msgstr "Egyszerű reklámblokkoló" + +#~ msgid "failed to access shared memory" +#~ msgstr "hiba a megosztott memória elérése közben" + +#~ msgid "failed to create '%s' file" +#~ msgstr "hiba a '%s' fájl létrehozása közben" + +#~ msgid "failed to download" +#~ msgstr "hiba a letöltésben" + +#, fuzzy +#~ msgid "failed to download Config Update file" +#~ msgstr "hiba a Config Update fájl letöltésében" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "hiba a fájl mozgatása közben (Innen:'%s' Ide: '%s')" + +#~ msgid "failed to remove temporary files" +#~ msgstr "hiba az átmeneti fájlok törlése közben" + +#~ msgid "failed to stop %s" +#~ msgstr "hiba a %s megállítása közben" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "nincs HTTPS/SSL támogatás az eszközön" + +#~ msgid "Downloading" +#~ msgstr "Letöltés" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Hiba: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Hiba: %s %s" + +#~ msgid "Collected Errors" +#~ msgstr "Összegyűjtött hibák" + +#~ msgid "Configuration" +#~ msgstr "Beállítás" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ további gépek" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ beállításai" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ-kiszolgálók fájlja" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Késleltetés (másodpercben) a rendszerindításkori indításhoz" + +#~ msgid "Info" +#~ msgstr "Információ" + +#~ msgid "Loading" +#~ msgstr "Betöltés" + +#~ msgid "Message" +#~ msgstr "Üzenet" + +#~ msgid "Run service after set delay on boot." +#~ msgstr "" +#~ "Szolgáltatás futtatása a beállított késleltetés után rendszerindításkor." + +#, fuzzy +#~ msgid "Service Status [%s %s]" +#~ msgstr "Szolgáltatás státusz [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Egyszerű reklámblokkoló beállításai" + +#~ msgid "Success" +#~ msgstr "Sikerült" + +#~ msgid "Task" +#~ msgstr "Feladat" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Kötetlen reklámblokkoló-lista" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP beállítás" + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Feketelistázott tartomány URL-jei" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Feketelistázott tartományok" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Feketelistázott gépek URL-jei" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Feketelistázandó egyéni tartományok." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Fehérlistázandó egyéni tartományok." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URL-ek a feketelistázandó tartományok listájához." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "URL-ek a fehérlistázandó tartományok listájához." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URL-ek a feketelistázandó gépek listájához." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Fehérlista- és tiltólista-kezelés" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Fehérlistázott tartomány URL-jei" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Fehérlistázott tartományok" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "A DNS-feloldási beállítás választása, amelyhez a reklámblokkoló-lista " +#~ "létre lesz hozva. Nézze meg a" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "A LED kiválasztása, amely még nincs használva itt:" + +#~ msgid "Please note that" +#~ msgstr "Ne feledje, hogy a" + +#~ msgid "README" +#~ msgstr "README" + +#~ msgid "System LED Configuration" +#~ msgstr "Rendszer LED beállításai" + +#~ msgid "for details." +#~ msgstr "fájlt a részletekért." + +#~ msgid "is not supported on this system." +#~ msgstr "nem támogatott ezen a rendszeren." + +#~ msgid "Enable/Start" +#~ msgstr "Engedélyezés vagy indítás" + +#~ msgid "Reload" +#~ msgstr "Újratöltés" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "A szolgáltatás letiltva vagy leállítva" + +#~ msgid "Service is enabled/started" +#~ msgstr "A szolgáltatás engedélyezve vagy elindítva" + +#~ msgid "Service started with error" +#~ msgstr "A szolgáltatás hibával indult" + +#~ msgid "Stop/Disable" +#~ msgstr "Leállítás vagy letiltás" diff --git a/applications/luci-app-adblock-fast/po/it/adblock-fast.po b/applications/luci-app-adblock-fast/po/it/adblock-fast.po new file mode 100644 index 0000000000..7cab744874 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/it/adblock-fast.po @@ -0,0 +1,777 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-19 13:21+0000\n" +"Last-Translator: ettore <hettore.giacomini@gmail.com>\n" +"Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/it/>\n" +"Language: it\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s è attualmente disattivato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s non è installato o non è stato trovato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Azione" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Attivo" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Rapido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock su tutte le istanze" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock sulle istanze scelte" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Domini consentiti e bloccati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - URL delle liste consentite e bloccate" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configurazione" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Stato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Aggiungi voci IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Aggiungi voci IPv6 alla lista di blocco." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configurazione Avanzata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Permetti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Domini consentiti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Tentativo di creare una cache compressa dell'elenco di blocchi nella memoria " +"persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Aggiornamento automatico della configurazione" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configurazione di base" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blocco" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Domini bloccati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blocco di %s domini (con %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "File Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "File di cache trovato." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Non è possibile rilevare RAM libera" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "File di cache compressa creato." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "File di cache compressa trovato." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Fallimento nella convalida della configurazione (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Controlla il registro di sistema e la verbosità dell'output sulla console." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Ritenta il download con Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Dimensione massima del file da scaricare con Curl (in byte)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Servizio DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Opzione di risoluzione DNS, consulta il %sREADME%s per i dettagli." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Directory per il file di cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Directory per il file di cache compressa dell'elenco di blocchi nella " +"memoria persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Disattiva" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Disabilita il debug" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Disattivato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Disattivazione del servizio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL del file di configurazione Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Non aggiungere voci IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Non memorizzare la cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Non utilizzare l'elaborazione simultanea" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Timeout del download (in secondi)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Download delle liste" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Abilitare" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Abilita il debug" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Abilita l'output di debug su /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Attivazione del servizio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Errore" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Errori riscontrati, controlla il %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Errore" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Impossibile accedere alla memoria condivisa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Impossibile creare il file '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Impossibile creare l'elenco di blocchi o riavviare il resolver DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Impossibile creare la cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Impossibile creare la directory per il file %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Impossibile creare la directory del file di output/cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Impossibile rilevare il formato %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Impossibile scaricare %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Impossibile scaricare il file di aggiornamento della configurazione" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Impossibile formattare il file di dati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Impossibile spostare '%s' in '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Impossibile spostare il file temporaneo in '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Impossibile ottimizzare il file di dati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Impossibile analizzare %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Impossibile analizzare il file di aggiornamento della configurazione" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Impossibile elaborare l'elenco consentito" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Impossibile ricaricare/riavviare il resolver DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Impossibile rimuovere i file temporanei" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Impossibile riavviare/ricaricare il resolver DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Impossibile ordinare il file di dati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Avvio non riuscito" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Impossibile arrestare il servizio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Impossibile decomprimere la cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Forzare le porte DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Forza porte DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Forza il riavvio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Forza il server DNS del router" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Forza il server DNS del router su tutti i dispositivi locali" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Forza l'uso del server DNS del router su tutti i dispositivi locali, noto " +"anche come DNS Hijacking." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Concedi accesso UCI e file per luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Supporto IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Se Curl è installato e rilevato, non scaricherà file più grandi di questo." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Se Curl è installato e rilevato, riproverà a scaricare questo numero di " +"volte in caso di timeout o fallimento." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Domini individuali da consentire." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Domini individuali da bloccare." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED per indicare lo stato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Avvia tutti i download e l'elaborazione delle liste contemporaneamente, " +"riducendo il tempo di avvio del servizio." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Consenti ai dispositivi locali di utilizzare i propri server DNS se impostati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Nessun AdBlock su dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Nessun supporto HTTPS/SSL sul dispositivo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Nessuna URL di liste bloccate né domini bloccati abilitati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Non installato o non trovato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Impostazione di verbosità dell'output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Esegui l'aggiornamento della configurazione prima di scaricare le liste di " +"blocchi/consentiti." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Scegli il LED che non è già in uso in %sConfigurazione LED di Sistema%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Si noti che %s non è supportato su questo sistema." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Elaborazione delle liste" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Riavvio in corso" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Controllo del servizio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Errori del servizio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Stato del servizio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Avvertimenti del servizio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Elaborazione simultanea" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Dimensione: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Alcuni output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Alcuni pacchetti consigliati non sono installati" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Avvia" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Avvio in corso" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Avvio del servizio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Ferma" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Interrompi il download se rimane bloccato per il numero di secondi impostato." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Fermato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Arresto del servizio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Memorizza la cache compressa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Memorizza il file di cache compressa sul router" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Sopprimi l'output" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "Il %s non è riuscito a scoprire il gateway WAN" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Il supporto ipset di dnsmasq è abilitato, ma dnsmasq non è installato o la " +"versione installata di dnsmasq non supporta ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Il supporto ipset di dnsmasq è abilitato, ma ipset non è installato o la " +"versione installata di ipset non supporta il tipo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Il supporto nft set di dnsmasq è abilitato, ma dnsmasq non è installato o la " +"versione installata di dnsmasq non supporta i set nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "Il supporto nft set di dnsmasq è abilitato, ma nft non è installato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL al file di configurazione esterno di dnsmasq, consulta il %sREADME%s per " +"i dettagli." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "URL a file(i) contenenti elenchi da consentire o bloccare." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Sconosciuto" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Usa il Blocco degli Annunci sulle istanze di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Rilevata l'uso di un file di configurazione esterno per dnsmasq, imposta " +"l'opzione '%s' su '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Usa l'elaborazione simultanea" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Output dettagliato" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versione %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Avviso" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "Host aggiuntivi di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "Configurazione di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "Ipset di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "Set nft di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "File dei server di dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "nessuno" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "Elenco di AdBlock per Unbound" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock solo su %s" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Puoi limitare il Blocco degli Annunci a una specifica istanza di dnsmasq " +#~ "(%smaggiori informazioni%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Forza il ri-scaricamento" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Forza il ri-scaricamento di %s elenchi di blocchi" + +#~ msgid "disabled" +#~ msgstr "disattivato" + +#~ msgid "Configuration" +#~ msgstr "Configurazione" + +#~ msgid "Info" +#~ msgstr "Informazioni" + +#~ msgid "Loading" +#~ msgstr "Caricamento" + +#~ msgid "Reload" +#~ msgstr "Aggiorna" diff --git a/applications/luci-app-adblock-fast/po/ja/adblock-fast.po b/applications/luci-app-adblock-fast/po/ja/adblock-fast.po new file mode 100644 index 0000000000..1f5470d2eb --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ja/adblock-fast.po @@ -0,0 +1,825 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2024-03-28 23:40+0000\n" +"Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n" +"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ja/>\n" +"Language: ja\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s は現在無効化されています" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s は未インストールかまたは見つかりません" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "高度な設定" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "許可" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "基本設定" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "ブロックされたドメイン" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "無効" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "デバッグ無効" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "ダウンロード タイムアウト(秒)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "有効化" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "デバッグ有効" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "エラー" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "ルーターDNSの強制" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "全ローカル デバイスにルーター DNSサーバーの使用を強制" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 サポート" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "ステータスを表示するLED" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "DNSサーバーの使用を強制しない" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "出力詳細度の設定" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "サービス ステータス" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "軽量出力" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "開始" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "停止" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "停止済" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "出力の抑制" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "詳細出力" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "警告" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "なし" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Simple AdBlock" +#~ msgstr "Simple AdBlock" + +#~ msgid "Configuration" +#~ msgstr "設定" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "ブート時遅延実行(秒)" + +#~ msgid "Info" +#~ msgstr "情報" + +#~ msgid "Loading" +#~ msgstr "読み込み中" + +#~ msgid "Service Status [%s %s]" +#~ msgstr "サービス・ステータス [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Simple AdBlock 設定" + +#~ msgid "Task" +#~ msgstr "タスク" + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "ドメイン ブラックリストのURL" + +#~ msgid "Blacklisted Domains" +#~ msgstr "ブラックリスト ドメイン" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "hosts ブラックリストのURL" + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "ホワイトリストとブラックリストの管理" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "ドメイン ホワイトリストのURL" + +#~ msgid "Whitelisted Domains" +#~ msgstr "ホワイトリスト ドメイン" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "右の設定で既に使用されていないLEDを選択します" + +#~ msgid "System LED Configuration" +#~ msgstr "LED 設定" + +#~ msgid "Enable/Start" +#~ msgstr "有効化/開始" + +#~ msgid "Reload" +#~ msgstr "リロード" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "サービスは無効/停止中" + +#~ msgid "Service is enabled/started" +#~ msgstr "サービスは有効/実行中" + +#~ msgid "Service started with error" +#~ msgstr "サービス開始時にエラーが発生" + +#~ msgid "Stop/Disable" +#~ msgstr "停止/無効化" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "システム ログとコンソール出力の冗長性を設定します。" + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "" +#~ "ローカル デバイスに対し、ルーター上のDNSサーバーの使用を強制します。これ" +#~ "は、DNS ハイジャックとしても知られています。" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "ブラックリストに登録する、個々のドメインです。" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "ホワイトリストに登録する、個々のドメインです。" + +#~ msgid "Start Simple Adblock service" +#~ msgstr "Simple Adblock サービスを開始" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "ブラックリストに登録するドメインのリストのURLです。" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "ホワイトリストに登録するドメインのリストのURLです。" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "" +#~ "ブラックリストに登録するドメインが列挙された、hostsファイルのURLです。" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log" +#~ msgstr "/tmp/simple-adblock.log へのデバッグ出力を有効にします。" + +#~ msgid "Run service after set delay on boot" +#~ msgstr "システムのブート時に、設定された遅延でサービスを開始します。" + +#~ msgid "Stop the download if it is stalled for set number of seconds" +#~ msgstr "" +#~ "問題等が発生して指定された秒数を超過した場合、ダウンロードを停止します。" diff --git a/applications/luci-app-adblock-fast/po/ko/adblock-fast.po b/applications/luci-app-adblock-fast/po/ko/adblock-fast.po new file mode 100644 index 0000000000..e313b44c46 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ko/adblock-fast.po @@ -0,0 +1,728 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-10-04 07:12+0000\n" +"Last-Translator: Wonchul Kang <teshi85@gmail.com>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ko/>\n" +"Language: ko\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.1-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s가 설치되지 않았거나 찾을 수 없습니다" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "차단된 도메인들" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "비활성화" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "비활성화" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "활성화" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "에러" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "%s시스템 LED 구성%s에서 사용하지 않은 LED를 선택하세요." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "참고: %s은(는) 이 시스템에서 지원하지 않습니다." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "다시 시작 중" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "시작" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "중지됨" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "경고" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "없음" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "설정" + +#~ msgid "Info" +#~ msgstr "정보" + +#~ msgid "Loading" +#~ msgstr "로드 중" diff --git a/applications/luci-app-adblock-fast/po/lt/adblock-fast.po b/applications/luci-app-adblock-fast/po/lt/adblock-fast.po new file mode 100644 index 0000000000..31b84a7f5a --- /dev/null +++ b/applications/luci-app-adblock-fast/po/lt/adblock-fast.po @@ -0,0 +1,773 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-04-12 04:01+0000\n" +"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/lt/>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (" +"n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s yra išjungtas/neįgalintas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s yra neįdiegtas arba nerastas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Veiksmas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktyvus/-i" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "„AdBlock Fast“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "Reklaminio/Skelbimų turinio blokatorius visuose egzemplioriuose" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "Reklaminio/Skelbimų turinio blokatorius pasirinktuose egzemplioriuose" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "„AdBlock-Fast“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "„AdBlock-Fast“ – Leidžiami ir blokuojami domenai-sritys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "„AdBlock-Fast“ – Leidžiami ir blokuojami saitų sąrašai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "„AdBlock-Fast“ – Konfigūracija" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "„AdBlock-Fast“ – Būklė/Būsena" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Pridėti IPv6 įvestis" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Pridėti IPv6 įvestis į blokavimo-sąrašą." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Pažengusi konfigūracija" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Leisti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Leidžmiami domenai-sritys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Mėginti sukurti suglaudintą talpyklos dalį „block-list“ visą laikinoje " +"atmintyje." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatinis konfigūravimo atnaujinimas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Paprasta konfigūracija" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blokuoti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blokuojami domenai-sritys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blokuojame %s domenų-sričių (su %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Talpykla/Podėlis" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Talpyklos failas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Talpyklos failas rastas." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Nepavyksta aptikti laisvos atminties" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Suglaudinta talpykla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Suglaudintos talpyklos failas sukurtas." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Suglaudintos talpyklos failas rastas." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Konfigūracijos (%s) patikrinimas nepavyko!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Valdo sistemos žurnalą ir konsolės išvesties aprašymą." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "„Curl“ atsisiuntimas – bandymas iš naujo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Maksimalus „Curl“ failo dydis (baitais)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "„DNS“ tarnyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" +"„DNS“ rezoliucijos pasirinkimas, peržiūrėkite –„%sREADME%s“, norint sužinoti " +"daugiau." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Katalogas suglaudintai talpyklos failui" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Katalogas skirtas suglaudintam talpyklos failui „block-list“ pasiliekančioje " +"atmintyje." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Išjungti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Išjungti derinimą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Išjungta/Neįgalinta (-as/-i)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Išjungiama „%s“ tarnyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "„Dnsmasq“ konfigūracijos failo „URL – Saitas“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Nepridėti IPv6 įvesčių" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Nelaikyti (išjungti) suglaudintos talpyklos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Nenaudoti (išjungti) daugkartinio apdorojimo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Atsisiuntimo laikotarpio atšaukimas (sekundėmis)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Atsisiunčiami sąrašai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Įjungti/Įgalinti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Įjungti/Įgalinti derinimą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Įjungia/Įgalina derinimo išvestį į „/tmp/adblock-fast.log“." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Įjungiama „%s“ tarnyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Klaida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Patirtos klaidos, prašome patikrinti „%sREADME%s“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Nepavyko" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Nepavyko pasiekti bendrintos atminties" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Nepavyko sukurti „%s“ failo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Nepavyko sukurti „block-list“ arba paleisti iš naujo „DNS“ sprendiklį*" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Nepavyko sukurti suglaudintos talpyklos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Nepavyko sukurti katalogą „%s“ failui" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Nepavyko sukurti „output/cache/gzip“ failo vietovės katalogą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Nepavyko atpažinti formato %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Nepavyko atsisiųsti %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Nepavyko atsisiųsti konfigūracijos atnaujinimo failo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Nepavyko formatuoti duomenų failą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Nepavyko perkelti „%s“ į „%s“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Nepavyko perkelti laikiną duomenų failą į „%s“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Nepavyko optimizuoti duomenų failo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Nepavyko nagrinėti %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Nepavyko nagrinėti konfigūracijos atnaujinimo failo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Nepavyko apdoroti „allow-list“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Nepavyko perleisti/paleisti iš naujo „DNS“ sprendiklio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Nepavyko pašalinti laikinų failų" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Nepavyko paleisti iš naujo/perleisti „DNS“ sprendiklio" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Nepavyko surūšiuoti duomenų failo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Nepavyko pradėti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Nepavyko sustabdyti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Nepavyko išpakuoti suglaudintos talpyklos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Priversti „DNS“ prievadai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Priversti „DNS“ prievadai:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Priversti perleidimą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Priversti maršrutizatoriaus „DNS“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" +"Priversti visus vietinius įrenginius, kad naudotų maršrutizatoriaus „DNS“ " +"serverį" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Priversti pakartotinį atsisiuntimą – „%s“ blokų sąrašo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Priverčia maršrutizatoriaus „DNS“ naudojimą vietiniams įrenginiams, kitaip " +"žinomas kaip „DNS užgrobimu“." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Laisvos atminties (%s) kiekis yra nepakankamas apdoroti visus įgalintus " +"sąrašus blokavimo sąraše („block-lists“)" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Suteikti „UCI“ ir failų prieigą – „luci-app-adblock-fast“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 palaikymas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Jeigu „curl“ yra įdiegtas ir aptiktas, tada jis neatsisiųs failų, kurie " +"didesni už šį." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Jeigu „curl“ yra įdiegtas ir aptiktas, tadas bus bandoma atsisiųsti šį daug " +"kartų pasibaigus užklausos laikui/klaidai." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Padaryti, kad individualūs domenai-sritys būtų leidžiami." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Padaryti, kad individualūs domenai-sritys būtų draudžiami." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Negalimas suglaudintas talpyklos katalogas – „%s“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "„LED“ (lemputė), skirta nurodyti būklę" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Paleisti visus sąrašų atsisiuntimus ir apdoroti vienu metu, sumažinant " +"tarnybos paleidimo laiką." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Leisti vietiniams (prisijungtiems) įrenginiams naudoti savo nustatytą „DNS“ " +"serverį, jeigu nustatytas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Nėra reklamų/skelbimų turinio blokatoriaus ant „SmartDNS“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Nėra reklamų/skelbimų turinio blokatoriaus ant „dnsmasq“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Nėra „HTTPS/SSL“ palaikymo šiame įrenginyje" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" +"Nėra įgalintų blokuojamųjų „URLs“ – saitų sąrašų, nei blokuojamų domenų-" +"sričių" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Neįdiegta arba nerasta" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Išvesties išsamumo/daugiažodiškumo nustatymas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Pauzė" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Užlaikomas* („užpauzinamas“) %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Atlikti konfigūracijos atnaujinimą, prieš atsisiunčiant leidžiamus ir/ar " +"draudžiamus sąrašus." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Pasirinkti „LED“ (Lemputės) kuri nėra naudojama %sSistemos „LED“ (Lemputės) " +"konfigūracijoje%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" +"Pasirinkti „SmartDNS“ egzempliorių/-us reklaminio/skelbimų turinio " +"blokatoriui/-iams" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" +"Pasirinkti „dnsmasq“ egzempliorių/-us reklaminio/skelbimų turinio " +"blokatoriui/-iams" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Pranešame, kad „%s“ yra nepalaikomas šioje sistemoje." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Apdorojami sąrašai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Atsisiųsti iš naujo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Paleidžiama iš naujo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Tarnybos valdymas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Tarnybos klaidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Tarnybos būsena" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Tarnybos įspėjimai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Daugkartinis apdorojimas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Dydis" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Dydis: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Dalies išvesties" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Kai kurie paketai, kurie yra rekomenduojami yra neįdiegti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Pradėti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Pradedamas/-a" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Pradedama %s tarnyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Būklė/Būsena" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stop" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Stabdyti atsisiuntimą, jeigu niekas nevyksta tiek ir aniek sekundžių." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Sustabdytas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Stabdoma „%s“ tarnyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Laikyti suglaudinta talpyklą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Laikyti suglaudintos talpyklos failą maršrutizatoriuje" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Nuslopinti išvestį" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "„%s“ nepavyko aptikti „WAN“ tinklo tarpuvartės" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"„dnsmasq ipset“ palaikymas yra įgalintas, tačiau „dnsmasq“ nėra įdiegtas " +"arba jo įdiegta būsena nepalaiko „ipset“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"„dnsmasq ipset“ palaikymas yra įgalintas, tačiau „ipset“ nėra įdiegtas arba " +"jo įdiegta būsena nepalaiko „%s“ tipo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"„dnsmasq nft set“ palaikymas yra įgalintas, tačiau „dnsmasq“ nėra įdiegtas " +"arba jo įdiegta būsena nepalaiko „nft set“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "„dnsmasq ipset“ palaikymas yra įgalintas, tačiau „nft“ nėra įdiegtas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "„URL“ – Saitas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"„URL – Saitas“ į išorinį „dnsmasq“ konfigūracijos failą, peržiūrėkite " +"„%sREADME%s“, dėl išsamesnės informacijos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"„URLs – Saitai“ į failą/-us, turinčius leidžiamuosius ar blokuojamuosius " +"sąrašus." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Nežinomas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Nežinoma klaida" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Nežinomas įspėjimas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" +"Naudoti reklaminio/skelbimų turinio blokatorių „SmartDNS“ egzemplioriuje/-se" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" +"Naudoti reklaminio/skelbimų turinio blokatorių „dnsmasq“ egzemplioriuje/-se" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Išorinio „dnsmasq“ konfigūracijos failo naudojimas aptiktas, prašome " +"nustatyti „%s“ parinktį į „%s“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Naudoti daugkartinį apdorojimą" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Išsamumo/Daugiažodiškumo išvestis" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Versija" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versija %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Įspėjimas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Jūs galite riboti reklaminio/skelbimų turinio blokavimą specifinėje/-iuose " +"„SmartDNS“ egzemplioriuje/-uose (%sdaugiau informacijos%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Jūs galite riboti reklaminio/skelbimų turinio blokavimą specifinėje/-iuose " +"„dnsmasq“ egzemplioriuje/-uose (%sdaugiau informacijos%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "papildomi „dnsmasq“ skleidėjai/p.k – vedėjai" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "„dnsmasq“ konfigūracija" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "„dnsmasq“ IP rinkinys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "„dnsmasq“ „nft rinkinys“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "„dnsmasq“ serverių failas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "joks" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "„smartdns“ domenų-sričių rinkinys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "„smartdns“ IP rinkinys" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "„smartdns“ „nft rinkinys“" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound reklamų/skelbimų turinių blokatoriaus sąrašas" + +#~ msgid "%s" +#~ msgstr "%s" diff --git a/applications/luci-app-adblock-fast/po/mr/adblock-fast.po b/applications/luci-app-adblock-fast/po/mr/adblock-fast.po new file mode 100644 index 0000000000..ff1cfe8725 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/mr/adblock-fast.po @@ -0,0 +1,725 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2020-02-07 09:18+0000\n" +"Last-Translator: Prachi Joshi <josprachi@yahoo.com>\n" +"Language-Team: Marathi <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationssimple-adblock/mr/>\n" +"Language: mr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 3.11-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "सेवा स्थिती" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "कॉन्फिगरेशन" + +#~ msgid "Reload" +#~ msgstr "रीलोड करा" diff --git a/applications/luci-app-adblock-fast/po/ms/adblock-fast.po b/applications/luci-app-adblock-fast/po/ms/adblock-fast.po new file mode 100644 index 0000000000..9269d05554 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ms/adblock-fast.po @@ -0,0 +1,722 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-22 09:21+0000\n" +"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ms/>\n" +"Language: ms\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Tindakan" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktif" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Pemboleh" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "Configuration" +#~ msgstr "Konfigurasi" diff --git a/applications/luci-app-adblock-fast/po/nb_NO/adblock-fast.po b/applications/luci-app-adblock-fast/po/nb_NO/adblock-fast.po new file mode 100644 index 0000000000..49f89e2418 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/nb_NO/adblock-fast.po @@ -0,0 +1,787 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-21 14:18+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/nb_NO/>\n" +"Language: nb_NO\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s er ikke installert, eller ble ikke funnet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Legg til IPv6-oppføringer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Legg til IPv6-oppføringer i svartelisten." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Avansert oppsett" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Tillat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Tillatte domener" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatisk oppsettsoppdatering" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Grunnleggende oppsett" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blokker" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blokkerte domener" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blokkerer %s domener (med %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Skru av" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Skru på avlusning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Ikke legg til noen IPv6-oppføringer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Skru på" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Skru på avlusning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Feil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Mislykket" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6-støtte" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Ikke installert, eller ble ikke funnet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Tjenestekontroll" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Tjenestestatus" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Start" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Starter …" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stopp" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Stoppet" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Fortreng utdata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Sirlig utdata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Advarsel" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +#, fuzzy +msgid "none" +msgstr "ingen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Tillatte nettadresser for domener" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Håndtering av hvit- og svartelister" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Blokkerte nettadresser for domener" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Blokkerte vertsnettadresser" + +#~ msgid "failed to access shared memory" +#~ msgstr "fikk ikke tilgang til delt minne" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "klarte ikke å flytte «%s» til «%s»" + +#~ msgid "failed to sort data file" +#~ msgstr "klarte ikke å sortere datafil" + +#~ msgid "failed to stop %s" +#~ msgstr "klarte ikke å stoppe %s" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "ingen HTTPS/SSL-støtte på enheten" + +#~ msgid "Downloading" +#~ msgstr "Laster ned …" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Feil: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Feil: %s %s" + +#~ msgid "Collected Errors" +#~ msgstr "Akkumulerte feil" + +#~ msgid "Configuration" +#~ msgstr "Oppsett" + +#, fuzzy +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Ytterligere dnsmasq-verter" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Dnsmasq-oppsett" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "Laster inn" + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Tjenestestatus [%s %s]" + +#~ msgid "Success" +#~ msgstr "Vellykket" + +#~ msgid "Task" +#~ msgstr "Oppgave" diff --git a/applications/luci-app-adblock-fast/po/nl/adblock-fast.po b/applications/luci-app-adblock-fast/po/nl/adblock-fast.po new file mode 100644 index 0000000000..6a45b89f82 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/nl/adblock-fast.po @@ -0,0 +1,723 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-04-18 14:03+0000\n" +"Last-Translator: Stephan <stephanrutten@users.noreply.hosted.weblate.org>\n" +"Language-Team: Dutch <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/nl/>\n" +"Language: nl\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s is momenteel uitgeschakeld" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s is niet geïnstalleerd of kon niet worden gevonden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Actie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Actief" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock op alle instanties" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock op specifieke instanties" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Toegestane en geblokkeerde domeinen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Toegestane en geblokkeerde URL-lijsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configuratie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "IPv6-adressen toevoegen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "IPV6-adressen toevoegen aan de blokkeerlijst." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Geavanceerde configuratie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Toestaan" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Toegestane domeinen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Probeer een gecomprimeerde cache met blokkeerlijsten in het persistente " +"geheugen te maken." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatische configuratie-update" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Basisconfiguratie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blokkeer" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Geblokkeerde domeinen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "%s domeinen blokkeren (met %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Cachebestand" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cachebestand gevonden." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Kan geen vrij RAM-geheugen detecteren" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Gecomprimeerde cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Gecomprimeerd cachebestand gemaakt." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Gecomprimeerd cachebestand gevonden." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Configuratie (%s) validatie mislukt!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Beheert het systeemlogboek en de uitgebreidheid van de console-uitvoer." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Herhaal Curl-download" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Maximale bestandsgrootte voor Curl (in bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS Service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Optie DNS- resolutie, zie de %sREADME%s voor meer informatie." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Map voor gecomprimeerd cache-bestand" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "Map voor gecomprimeerde cachebestand in het persistente geheugen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Uitschakelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Foutopsporing uitschakelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Uitgeschakeld" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Deactiveer %s service" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL van het Dnsmasq configuratiebestand" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Voeg geen IPv6-adressen toe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Bewaar geen gecomprimeerde cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Gebruik geen gelijktijdige verwerking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Downloadtime-out (in seconden)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Lijsten downloaden" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Inschakelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Foutopsporing inschakelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Schakelt debug-uitvoer naar /tmp/adblock-fast.log in." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "%s-service inschakelen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" diff --git a/applications/luci-app-adblock-fast/po/pl/adblock-fast.po b/applications/luci-app-adblock-fast/po/pl/adblock-fast.po new file mode 100644 index 0000000000..65de564e79 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/pl/adblock-fast.po @@ -0,0 +1,1174 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-11 03:16+0000\n" +"Last-Translator: Matthaiks <kitynska@gmail.com>\n" +"Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/pl/>\n" +"Language: pl\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s jest obecnie wyłączone" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s nie jest zainstalowany lub nie znaleziono" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "–" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Akcja" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktywna" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "Blokowanie reklam" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "Na wszystkich instancjach" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "Blokowanie reklam na wszystkich instancjach" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "Blokowanie reklam" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "Dozwolone i zablokowane domeny" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "Listy dozwolonych i zablokowanych adresów URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "Konfiguracja" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Dodawanie wpisów IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Dodaj wpisy IPv6 do list blokujących." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Zaawansowana konfiguracja" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Zezwól" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Dozwolone domeny" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Próba utworzenia z skompresowanej pamięci podręcznej list blokujących w " +"pamięci trwałej." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Automatyczna aktualizacja konfiguracji" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Podstawowa konfiguracja" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Zablokuj" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Zablokowane domeny" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blokowanie %s domen (z %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Pamięć podręczna" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Plik pamięci podręcznej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Znaleziono plik pamięci podręcznej." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Nie można wykryć wolnej pamięci RAM" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Skompresowana pamięć podręczna" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Utworzono skompresowany plik pamięci podręcznej." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Znaleziono skompresowany plik w pamięci podręcznej." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Błąd sprawdzania poprawności konfiguracji (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Kontroluje szczegółowość dziennika systemowego i danych wyjściowych konsoli." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Ponowne próby pobierania poprzez curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Maksymalny rozmiar pliku dla curl (w bajtach)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Usługa DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" +"Opcja rozwiązywania DNS, zobacz %sREADME%s, aby uzyskać szczegółowe " +"informacje." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Katalog dla skompresowanego pliku pamięci podręcznej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Katalog dla skompresowanego pliku pamięci podręcznej listy zablokowanych w " +"pamięci trwałej." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Wyłącz" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Wyłącz debugowanie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Wyłączone" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Wyłączanie usługi %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "Adres URL pliku konfiguracyjnego dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Nie dodawaj wpisów IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Nie przechowuj skompresowanej pamięci podręcznej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Nie używaj jednoczesnego przetwarzania" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Limit czasu pobierania (w sekundach)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Pobieranie list" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Włącz" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Włącz debugowanie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Włącza dane wyjściowe debugowania do pliku /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Włączanie usługi %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Błąd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Wystąpiły błędy. Sprawdź %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Niepowodzenie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Nie udało się uzyskać dostępu do pamięci współdzielonej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Nie udało się utworzyć pliku '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"Nie udało się utworzyć listy zablokowanych lub zrestartować resolwera DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Nie udało się utworzyć skompresowanej pamięci podręcznej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Nie udało się utworzyć katalogu dla pliku %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Nie udało się utworzyć katalogu plików output/cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Nie udało się wykryć formatu %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Nie udało się pobrać %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Nie udało się pobrać pliku aktualizacji konfiguracji" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Nie udało się sformatować pliku danych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Nie udało się przenieść '%s' do '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Nie udało się przenieść tymczasowego pliku danych do '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Nie udało się zoptymalizować pliku danych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Nie udało się przeanalizować %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Nie udało się przeanalizować pliku aktualizacji konfiguracji" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Nie udało się przetworzyć listy dozwolonych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Nie udało się przeładować/zrestartować resolwera DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Nie udało się usunąć plików tymczasowych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Nie udało się zrestartować/przeładować resolwera DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Nie udało się posortować pliku danych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Nie udało się uruchomić" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Nie udało się zatrzymać %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Nie udało się rozpakować skompresowanej pamięci podręcznej" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Wymuszone porty DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Wymuszone porty DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Wymuś przeładowanie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Wymuś DNS routera" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Wymuś serwer DNS routera na wszystkich urządzeniach lokalnych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Wymuszone ponowne pobieranie listy zablokowanych %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Wymusza użycie DNS routera na urządzeniach lokalnych, znane również jako DNS " +"Hijacking." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Wolna pamięć RAM (%s) nie wystarczy do przetworzenia wszystkich włączonych " +"list blokowania" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Przyznaj luci-app-adblock-fast dostęp do UCI i plików" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Obsługa IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Jeśli curl jest zainstalowany i wykryty, nie pobierze plików większych niż " +"ten." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Jeśli curl jest zainstalowany i wykryty, spróbuje pobrać go wiele razy po " +"przekroczeniu limitu czasu / awarii." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Poszczególne domeny, które mają być dozwolone." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Poszczególne domeny, które mają być zablokowane." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Nieprawidłowy katalog skompresowanej pamięci podręcznej '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "Dioda LED wskazująca status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Uruchom wszystkie listy plików do pobrania i przetwarzania jednocześnie, " +"zmniejszając czas rozpoczęcia usługi." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Pozwól urządzeniom lokalnym używać własnych serwerów DNS, jeśli ustawiono" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Brak usługi blokowania reklam na SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Brak usługi blokowania reklam na dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Brak obsługi HTTPS/SSL na urządzeniu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Brak list zablokowanych adresów URL ani zablokowanych domen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Nie zainstalowano lub nie znaleziono" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Ustawienia szczegółowości danych wyjściowych" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Wstrzymaj" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Wstrzymywanie %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Wykonaj aktualizację konfiguracji przed pobraniem list dozwolonych/" +"zablokowanych." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Wybierz diodę LED, która nie jest jeszcze używana na stronie %sKonfiguracja " +"diod LED%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Wybierz instancje SmartDNS do blokowania reklam" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Wybierz instancje dnsmasq do blokowania reklam" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Należy pamiętać, że %s nie jest obsługiwany w tym systemie." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Przetwarzanie list" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Pobierz ponownie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Ponowne uruchomienie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Kontrola usługi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Błędy usługi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Status usługi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Ostrzeżenia usługi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Jednoczesne przetwarzanie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Rozmiar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Rozmiar: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Niektóre dane wyjściowe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Brakuje niektórych zalecanych pakietów" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Uruchom" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Uruchamianie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Uruchamianie usługi %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Zatrzymaj" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Zatrzymaj pobieranie, jeśli jest zablokowane przez ustawioną liczbę sekund." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Zatrzymane" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Zatrzymywanie usługi %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Przechowuj skompresowaną pamięć podręczną" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Przechowuj skompresowany plik pamięci podręcznej w routerze" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Pomiń dane wyjściowe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "Nie udało się %s odnaleźć bramy WAN" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Obsługa ipset dnsmasq jest włączona, ale dnsmasq nie jest zainstalowany lub " +"zainstalowany dnsmasq nie obsługuje ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Obsługa ipset dnsmasq jest włączona, ale ipset nie jest zainstalowany lub " +"zainstalowany ipset nie obsługuje typu '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Obsługa zestawów nft jest włączona, ale dnsmasq nie jest zainstalowany lub " +"zainstalowany dnsmasq nie obsługuje zestawów nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" +"Obsługa zestawów nft dnsmasq jest włączona, ale nft nie jest zainstalowany" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "Adres URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"Adres URL do zewnętrznego pliku konfiguracyjnego dnsmasq, zobacz %sREADME%s, " +"aby uzyskać szczegółowe informacje." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"Adresy URL plików zawierających listy, które mają być dozwolone lub " +"zablokowane." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Nieznany" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Nieznany błąd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Nieznane ostrzeżenie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Użyj blokowania reklam w instancjach SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Użyj blokowania reklam w instancjach dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Wykryto użycie zewnętrznego pliku konfiguracyjnego dnsmasq, ustaw opcję '%s' " +"na '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Używaj jednoczesnego przetwarzania" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Pełne dane wyjściowe" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Wersja" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Wersja %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Ostrzeżenie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Możesz ograniczyć blokowanie reklam do określonych instancji SmartDNS " +"(%swięcej informacji%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Możesz ograniczyć blokowanie reklam do określonych instancji dnsmasq " +"(%swięcej informacji%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "Dodatkowe hosty dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "Konfiguracja dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "ipset dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "Zestaw nft dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "Plik serwerów dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "Brak" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "Zestaw domen smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "ipset smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "Zestaw nft smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "lista blokowania reklam unbound" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "Tylko dla %s" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific SmartDNS instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Możesz ograniczyć blokowanie reklam do określonych instancji SmartDNS " +#~ "(%swięcej informacji%s)." + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Możesz ograniczyć blokowanie reklam do określonych instancji dnsmasq " +#~ "(%swięcej informacji%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Wymuś ponowne pobranie" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Wymuś ponowne pobranie %s list blokujących" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Wystąpiły błędy. Sprawdź %sREADME%s!" + +#~ msgid "Failed to parse" +#~ msgstr "Nie udało się przeanalizować" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Dozwolone domeny URL" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Zarządzanie listami dozwolonych i blokujących" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Zablokowane adresy URL w stylu Adblock Plus" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Zablokowane domeny URL" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Zablokowane adresy URL hostów" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Włącza debugowanie wyjścia do /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Udziel dostępu UCI i plikom do luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "Simple AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Konfiguracja" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Status" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "Adresy URL do list domen sformatowanych w stylu Adblock Plus, które mają " +#~ "zostać zablokowane." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "Adresy URL do list domen, które mają być dozwolone." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "Adresy URL do list domen, które mają zostać zablokowane." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "Adresy URL do list hostów, które mają zostać zablokowane." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "błąd sprawdzania poprawności konfiguracji (%s)!" + +#~ msgid "disabled" +#~ msgstr "wyłączony" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "Obsługa ipset w dnsmasq jest włączona, ale dnsmasq nie jest zainstalowany " +#~ "lub zainstalowany dnsmasq nie obsługuje ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "Obsługa ipset w dnsmasq jest włączona, ale ipset nie jest zainstalowany " +#~ "lub zainstalowany ipset nie obsługuje typu '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "Obsługa nft w dnsmasq jest włączona, ale dnsmasq nie jest zainstalowany " +#~ "lub zainstalowany dnsmasq nie obsługuje nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "Obsługa nft set w dnsmasq jest włączona, ale nft nie jest zainstalowany" + +#~ msgid "failed to access shared memory" +#~ msgstr "nie można uzyskać dostępu do pamięci współdzielonej" + +#~ msgid "failed to create '%s' file" +#~ msgstr "nie można utworzyć pliku '%s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "nie udało się utworzyć listy blokowania lub zrestartować zaplecza DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "nie można utworzyć skompresowanej pamięci podręcznej" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "nie udało się utworzyć katalogu dla pliku %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "nie udało się utworzyć katalogu plików output/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "nie udało się pobrać" + +#~ msgid "failed to download Config Update file" +#~ msgstr "nie udało się pobrać pliku aktualizacji konfiguracji" + +#~ msgid "failed to format data file" +#~ msgstr "nie można sformatować pliku danych" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "nie można przenieść '%s' do '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "nie można przenieść tymczasowego pliku danych do '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "nie można zoptymalizować pliku danych" + +#~ msgid "failed to parse" +#~ msgstr "nie można przeanalizować" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "nie udało się przetworzyć pliku aktualizacji konfiguracji" + +#~ msgid "failed to process allow-list" +#~ msgstr "nie można przetworzyć listy dozwolonych" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "" +#~ "nie można ponownie załadować/uruchomić programu rozpoznawania nazw DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "nie można usunąć plików tymczasowych" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "" +#~ "nie można ponownie uruchomić/załadować programu rozpoznawania nazw DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "nie można posortować pliku danych" + +#~ msgid "failed to stop %s" +#~ msgstr "nie można zatrzymać %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "nie można rozpakować skompresowanej pamięci podręcznej" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "brak obsługi HTTPS/SSL na urządzeniu" + +#~ msgid "some recommended packages are missing" +#~ msgstr "brakuje niektórych zalecanych pakietów" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s nie udało się wykryć bramy WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "wykryto użycie zewnętrznego pliku konfiguracyjnego dnsmasq, ustaw opcję " +#~ "'%s'na '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Wersja: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "Usługa %s nie wykryła bramy WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Nie można utworzyć katalogu dla '%s'" + +#~ msgid "Downloading" +#~ msgstr "Pobieranie" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Błąd: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Błąd: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Znaleziono plik pamięci podręcznej zawierający %s domen." + +#~ msgid "Collected Errors" +#~ msgstr "Zebrane błędy" + +#~ msgid "Configuration" +#~ msgstr "Konfiguracja" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Dodatkowe hosty DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Konfiguracja DNSMASQ" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "Ipset DNSMASQ" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "Nft Set DNSMASQ" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Plik z serwerami DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Opóźnienie (w sekundach) rozpoczęcia rozruchu" + +#~ msgid "Info" +#~ msgstr "Informacja" + +#~ msgid "Loading" +#~ msgstr "Ładowanie" + +#~ msgid "Message" +#~ msgstr "Wiadomość" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Wybierz opcję rozpoznawania nazw DNS, aby utworzyć listę blokowania " +#~ "reklam, zobacz %sREADME%s, aby uzyskać więcej informacji." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Uruchom usługę po ustawionym opóźnieniu rozruchu." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Stan usługi [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Ustawienia Simple AdBlock" + +#~ msgid "Success" +#~ msgstr "Sukces" + +#~ msgid "Task" +#~ msgstr "Zadanie" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Nieograniczona lista AdBlock" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Zestaw IP DNSMASQ" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "Zestaw NFT DNSMASQ" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s zablokowane %s domen (z %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Wybierz opcję rozpoznawania DNS, aby utworzyć listę adblock, zobacz <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\"> README</a>, aby " +#~ "uzyskać szczegółowe informacje." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Adresy URL domen na czarnej liście" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Domeny na czarnej liście" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Adresy URL hostów na czarnej liście" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Poszczególne domeny do umieszczenia na czarnej liście." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Poszczególne domeny do umieszczenia na białej liście." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "Adresy URL list domen, które mają znaleźć się na czarnej liście." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "Adresy URL list domen, które mają znaleźć się na białej liście." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "Adresy URL list hostów, które mają znaleźć się na czarnej liście." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Zarządzanie białą listą oraz listą blokujących" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Adresy URL domen białej listy" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Biała lista domen" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "" +#~ "nie można utworzyć listy zablokowanych lub zrestartować programu " +#~ "rozpoznawania nazw DNS" + +#~ msgid "failed to process whitelist" +#~ msgstr "nie można przetworzyć białej listy" + +#~ msgid "Grant UCI access for luci-app-simple-adblock" +#~ msgstr "Udziel dostępu UCI do luci-app-simple-adblock" + +#~ msgid "Service Status [%s]" +#~ msgstr "Status usługi [%s]" + +#~ msgid "Cache file containing" +#~ msgstr "Plik podręczny zawierający" + +#~ msgid "Compressed cache file found" +#~ msgstr "Znaleziono skompresowany plik w pamięci podręcznej" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Wybierz opcję rozpoznawania nazw DNS, aby utworzyć listę Adblock, zobacz" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Wybierz diodę LED, która nie jest jeszcze używana" + +#~ msgid "Please note that" +#~ msgstr "Proszę zwrócić uwagę" + +#~ msgid "README" +#~ msgstr "Plik readme" + +#~ msgid "System LED Configuration" +#~ msgstr "Konfiguracja diod LED" + +#~ msgid "domains" +#~ msgstr "domeny" + +#~ msgid "domains found" +#~ msgstr "znalezione domeny" + +#~ msgid "failed to create" +#~ msgstr "nie można utworzyć" + +#~ msgid "failed to move" +#~ msgstr "nie można przenieść" + +#~ msgid "failed to move temporary data file to" +#~ msgstr "nie można przenieść tymczasowego pliku danych do" + +#~ msgid "failed to stop" +#~ msgstr "nie udało się zatrzymać" + +#~ msgid "file" +#~ msgstr "plik" + +#~ msgid "for details." +#~ msgstr "dla szczegółów." + +#~ msgid "is blocking" +#~ msgstr "jest blokowany" + +#~ msgid "is not installed or not found" +#~ msgstr "nie jest zainstalowany lub nie znaleziono" + +#~ msgid "is not supported on this system." +#~ msgstr "nie jest wspierane w tym systemie." + +#~ msgid "to" +#~ msgstr "do" + +#~ msgid "with" +#~ msgstr "z" + +#~ msgid "Enable/Start" +#~ msgstr "Włącz/Start" + +#~ msgid "Reload" +#~ msgstr "Przeładuj" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "Usługa jest wyłączona/zatrzymana" + +#~ msgid "Service is enabled/started" +#~ msgstr "Usługa jest włączona/uruchomiona" + +#~ msgid "Service started with error" +#~ msgstr "Uruchomiono usługę z błędem" + +#~ msgid "Stop/Disable" +#~ msgstr "Zatrzymaj/Wyłącz" diff --git a/applications/luci-app-adblock-fast/po/pt/adblock-fast.po b/applications/luci-app-adblock-fast/po/pt/adblock-fast.po new file mode 100644 index 0000000000..3091b5c8b9 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/pt/adblock-fast.po @@ -0,0 +1,1130 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-15 00:29+0000\n" +"Last-Translator: ssantos <ssantos@web.de>\n" +"Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/pt/>\n" +"Language: pt\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s está desativado no momento" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s não está instalado ou não foi encontrado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Ação" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Ativo" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock em todas as instâncias" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock em instâncias específicas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - domínios permitidos e bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Listas de URLs permitidas e bloqueadas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Adicionar entradas IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Adicionar entradas IPv6 à lista de blocos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configurações Avançadas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Permitir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Domínios Permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Tentativa de criar um cache comprimido de lista de blocos na memória " +"persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Atualização da configuração automática" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configurações Básicas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Bloquear" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Domínios Bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Bloqueio de %s domínios (com %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Ficheiro de cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Ficheiro de cache encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Não consigo detetar RAM livre" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Cache comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Ficheiro de cache comprimida criado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Ficheiro de cache comprimido encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Houve uma falha na validação da configuração (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Controla o log do sistema e a verbosidade da saída do console." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Repetir descarregamento do Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Tamanho máximo do ficheiro curl (em bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Serviço DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Opção de resolução de DNS, consulte %sREADME%s para obter detalhes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Diretório para arquivo de cache compactado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Diretório para o arquivo de cache compactado da lista de bloqueio na memória " +"persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Desativar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Desativar Depuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Desativado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Desativando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL do ficheiro de configuração do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Não adicionar entradas de IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Não armazenar cache comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Não utilizar processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Tempo limite ao descarregar (em segundos)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "A descarregar listas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Ativar Depuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Ativa a saída de depuração para /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Ativando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Erro" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Erros encontrados, por favor verifique o %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Falha" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Falha ao aceder a memória partilhada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Falha ao criar o ficheiro '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Falha ao criar a lista de bloqueio ou reiniciar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Falha ao criar o cache comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Falha ao criar o diretório para o ficheiro %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Falha ao criar o diretório para a saída do ficheiro /cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Falha ao detetar o formato %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Falha ao descarregar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Falha ao descarregar o ficheiro de atualização de configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Falha ao formatar o ficheiro de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Falha ao mover '%s' para '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Falha ao mover o ficheiro de dados temporário para '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Falha ao otimizar o ficheiro de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Falha ao analisar %" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Falha ao analisar o ficheiro de atualização de configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Falha ao processar a lista de permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Falha ao recarregar/reiniciar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Falha ao remover ficheiros temporários" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Falha ao reiniciar/recarregar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Falha ao ordenar o ficheiro de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Falha ao iniciar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Falha ao parar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Falha ao descomprimir o cache comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Forçar portas de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Forçar portas DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Forçar recarregamento" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Forçar o DNS do Roteador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Forçar o servidor de DNS do Roteador para todos os aparelhos locais" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Forçar a descarga de listas de bloqueio %s novamente" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Força o uso do DNS do Router em aparelhos locais, também conhecido como DNS " +"Hijacking." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"O ram livre (%s) não é suficiente para processar todas as listas de bloqueio " +"ativadas" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Conceder acesso ao ficheiro e ao UCI ao luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Suporte de IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Se o curl estiver instalado e for detetado, não serão transferidos ficheiros " +"maiores que isto." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Se o curl for instalado e detetado, ele tentaria descarrega-lo muitas vezes " +"se atingir limite de tempo/falhar." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Domínios individuais a serem permitidos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Domínios individuais a serem bloqueados." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Diretório de cache comprimido inválido '%s '" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED para indicar o estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Iniciar todos os descarregamentos e processamento de listas simultaneamente, " +"reduzindo a hora de início do serviço." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Deixar aparelhos locais usar os próprios servidores de DNS deles, se forem " +"definidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Não há AdBlock no SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Não há AdBlock no dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Nenhum suporte de HTTPS/SSL no dispositivo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Não há listas de URLs bloqueadas nem domínios bloqueados ativados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Não está instalado ou não foi encontrado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Definição do detalhamento do registro" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Pausar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "A pausar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Execute a atualização da configuração antes de descarregar as listas de " +"bloqueio/permissão." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Escolha o LED ainda não utilizado em %sConfiguração dos LED do sistema%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Escolha a(s) instância(s) do SmartDNS para o AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Escolha a(s) instância(s) de dnsmasq para AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Por favor, note que %s não é suportado neste sistema." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Processamento de listas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Descarregar novamente" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Reiniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Controle de serviços" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Erros de Serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Estado do Serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Avisos de Serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Tamanho" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Tamanho: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Pouco detalhado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Alguns pacotes recomendados faltam" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Iniciar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Iniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Iniciando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Parar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Parar o descarregamento se ele for interrompido por uma quantidade de " +"segundos definida." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Parado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Parando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Armazenar cache comprimido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Armazenar ficheiro de cache comprimido no roteador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Suprimir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "A %s não conseguiu descobrir o gateway da WAN" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"O suporte para ipset dnsmasq está ativado, mas o dnsmasq não está instalado " +"ou o dnsmasq não suporta ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"O suporte para dnsmasq ipset está ativado, mas o ipset não está instalado ou " +"o ipset instalado não suporta o tipo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"O suporte para dnsmasq nft set está ativado, mas o dnsmasq não está " +"instalado ou o dnsmasq não suporta nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" +"O suporte para dnsmasq nft sets está ativado, mas o nft não está instalado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL para o ficheiro de configuração dnsmasq externo, consulte %sREADME%s " +"para obter detalhes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URLs para ficheiros que contêm listas a serem permitidas ou bloqueadas." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Desconhecido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Erro desconhecido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Aviso desconhecido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Usar o AdBlocking na(s) instância(s) do SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Usar o AdBlocking na(s) instância(s) do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Uso de um ficheiro de configuração dnsmasq externo detetado, defina a opção " +"'%s' para '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Utilizar processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Detalhado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Versão" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versão %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Aviso" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Pode limitar o AdBlocking para as instâncias específicas do SmartDNS (%smais " +"informações)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Pode limitar o AdBlocking para as instâncias específicas do smartdns (%smais " +"informações)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "Hosts adicionais dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "Configuração do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "Ficheiro de servidores dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "nenhum" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "conjunto de domínios smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "ipset do smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "nft set do smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "lista de bloqueio de anúncios do unbound" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Force Re-Download" +#~ msgstr "Forçar a Re-Descarrega" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Forçar a transferência de listas de bloqueio %s novamente" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "URLs de Domínios Permitidos" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Gestão de Listas dos Permitidos e Bloqueados" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "URLs estilo AdBlockPlus bloqueados" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URLs de Domínios Bloqueados" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "URLs de Hosts Bloqueados" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Ativa a saída de depuração para /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Conceder acesso a UCI e a ficheiros para luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "AdBlock simples" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Configuração" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Estado" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URLs para listas de domínios a serem bloqueados formatados no estilo de " +#~ "AdBlockPlus." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URLs para listas de domínios a serem permitidos." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URLs para listas de domínios a serem bloqueados." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URLs para listas de hosts a serem bloqueados." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "falha na validação da configuração (%s)!" + +#~ msgid "disabled" +#~ msgstr "desativado" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "O suporte para ipset dnsmasq está ativado, mas o dnsmasq não está " +#~ "instalado ou o dnsmasq não suporta ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "O suporte para dnsmasq ipset está ativado, mas o ipset não está instalado " +#~ "ou o ipset instalado não suporta o tipo '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "O suporte para dnsmasq nft set está ativado, mas o dnsmasq não está " +#~ "instalado ou o dnsmasq não suporta nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "O suporte para dnsmasq nft sets está ativado, mas o nft não está instalado" + +#~ msgid "failed to access shared memory" +#~ msgstr "falha ao acessar a memória compartilhada" + +#~ msgid "failed to create '%s' file" +#~ msgstr "falha ao criar o ficheiro '%s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "falha ao criar a lista de bloqueio ou reiniciar o resolvedor de DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "falha ao criar cache comprimido" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "falha ao criar o diretório para o ficheiro %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "falha ao criar diretório de ficheiros de saída/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "falha ao descarregar" + +#~ msgid "failed to download Config Update file" +#~ msgstr "falha ao descarregar o ficheiro de atualização de configuração" + +#~ msgid "failed to format data file" +#~ msgstr "falha ao formatar o ficheiro de dados" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "falha ao mover '%s' para '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "falha ao mover o ficheiro de dados temporário para '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "falha ao otimizar o ficheiro de dados" + +#~ msgid "failed to parse" +#~ msgstr "falha ao analisar" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "falha ao analisar o ficheiro de atualização de configuração" + +#~ msgid "failed to process allow-list" +#~ msgstr "falha ao processar a lista de permitidos" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "falha ao recarregar / reiniciar o resolvedor de DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "falha ao remover ficheiros temporários" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "falha ao reiniciar/recarregar o resolvedor de DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "falha ao ordenar o ficheiro de dados" + +#~ msgid "failed to stop %s" +#~ msgstr "falha ao parar %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "falha ao descomprimir o cache comprimido" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "nenhum suporte de HTTPS/SSL no aparelho" + +#~ msgid "some recommended packages are missing" +#~ msgstr "alguns pacotes recomendados faltam" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "o %s não conseguiu descobrir o gateway da WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "uso de um ficheiro de configuração dnsmasq externo detetado, defina a " +#~ "opção '%s' para '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Versão: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "O serviço %s não conseguiu descobrir o gateway WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Não foi possível criar o diretório para '%s'" + +#~ msgid "Downloading" +#~ msgstr "Descarregando" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Erro: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Erro: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Ficheiro de cache contendo %s domínios encontrados." + +#~ msgid "Collected Errors" +#~ msgstr "Erros coletados" + +#~ msgid "Configuration" +#~ msgstr "Configuração" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Hosts adicionais do DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Configuração do DNSMASQ" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ipset" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft Set" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Ficheiro de Servidores do DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Atraso (em segundos) para o início quando o equipamento é ligado" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "A carregar" + +#~ msgid "Message" +#~ msgstr "Mensagem" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Escolha a opção de resolução DNS para criar uma lista do adblock, " +#~ "consulte os %sREADME%s para mais detalhes." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Executar o serviço na inicialização após um atraso definido." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Estado do Serviço [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Configuração do Simple AdBlock" + +#~ msgid "Success" +#~ msgstr "Sucesso" + +#~ msgid "Task" +#~ msgstr "Tarefa" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Lista de AdBlock do Unbound" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Conjunto IP do DNSMASQ" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "Conjunto DNSMASQ NFT" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s está a bloquear %s domínios (com %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Escolha a opção de resolução DNS para criar a lista de adblock, veja a o " +#~ "<a href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> para " +#~ "detalhes." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Endereço com lista de Domínio para a Lista Negra" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Domínios para a Lista Negra" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Endereços de Hosts para a Lista Negra" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Domínios individuais a serem incluídos na lista negra." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Domínios individuais a serem listados na lista branca." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URLs para listas de domínios a serem postos na lista negra." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "URLs para listas de domínios a serem incluídos na lista branca." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URLs para listas de domínios a serem incluídos na lista negra." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Geração de Listas Branca e Preta" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Endereço com lista de domínio para a Lista Branca" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Domínios para a Lista Branca" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "falha ao criar a lista de bloqueio ou reiniciar o resolvedor de DNS" + +#~ msgid "failed to process whitelist" +#~ msgstr "falha ao processar a lista branca" + +#~ msgid "Grant UCI access for luci-app-simple-adblock" +#~ msgstr "Conceder acesso UCI ao luci-app-simple-adblock" + +#~ msgid "Service Status [%s]" +#~ msgstr "Estado do Serviço [%s]" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Escolher a opção de resolução DNS para criar a lista de adblock, veja o" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Escolha um LED não usando em" + +#~ msgid "Please note that" +#~ msgstr "Por favor, note que" + +#~ msgid "README" +#~ msgstr "LEIAME" + +#~ msgid "System LED Configuration" +#~ msgstr "Configuração do LED" + +#~ msgid "for details." +#~ msgstr "para detalhes." + +#~ msgid "is not supported on this system." +#~ msgstr "não é suportado neste sistema." + +#~ msgid "Enable/Start" +#~ msgstr "Habilitar/Iniciar" + +#~ msgid "Reload" +#~ msgstr "Recarregar" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "O serviço está desativado/parado" + +#~ msgid "Service is enabled/started" +#~ msgstr "O serviço está ativado/executado" + +#~ msgid "Service started with error" +#~ msgstr "O serviço iniciou com erro" + +#~ msgid "Stop/Disable" +#~ msgstr "Parar/Desativar" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "" +#~ "Controla o sistema de registro e o detalhamento das mensagens de saída do " +#~ "console" + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "" +#~ "Forçar o uso do DNS do Roteador nos dispositivos locais, também conhecido " +#~ "como redirecionamento de DNS" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "Domínios individuais para serem incluídos na Lista Negra" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "Domínios individuais para serem incluídos na Lista Branca" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "Endereço da lista dos domínios para a Lista Negra" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "Endereço da lista dos domínios para a Lista Branca" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "Endereço da lista dos hosts para a Lista Negra" + +#~ msgid "Enable/start service" +#~ msgstr "Habilitar/Iniciar o serviço" diff --git a/applications/luci-app-adblock-fast/po/pt_BR/adblock-fast.po b/applications/luci-app-adblock-fast/po/pt_BR/adblock-fast.po new file mode 100644 index 0000000000..cca535ee81 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/pt_BR/adblock-fast.po @@ -0,0 +1,1180 @@ +msgid "" +msgstr "" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2024-01-14 10:54+0000\n" +"Last-Translator: Davison Silva <davison_silva@outlook.com>\n" +"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsadblock-fast/pt_BR/>\n" +"Language: pt_BR\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n > 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s está atualmente desativado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s não está instalado ou não foi encontrado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Ação" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Ativo" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock em todas as instâncias" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock em instâncias selecionadas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Domínios Permitidos e Bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Lista de URLs Permitidas e Bloqueadas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Adicionar Entradas IPV6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Adicionar entradas IPv6 à lista de blocos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configuração Avançada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Permitir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Domínios Permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Tentar criar um cache comprimido da lisa de blocos na memória persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Atualização automática da configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configurações Básicas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Bloquear" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Domínios Bloqueados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Bloqueando %s domínios (com %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Arquivo de cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Arquivo de cache foi encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Não é possível detectar RAM livre" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Cache compactado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Foi criado um arquivo de cache compactado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Arquivo de cache compactado foi encontrado." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Houve uma falha na validação da configuração (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" +"Controla o registro de log do sistema e a verbosidade da saída do console." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Repetir o Download do Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Tamanho máximo do arquivo Curl (em bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Serviço de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" +"Opção da resolução do DNS, consulte %sREADME%s para obter mais detalhes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Diretório para o arquivo de cache compactado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Diretório para o arquivo de cache compactado da lista de bloqueio na memória " +"persistente." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Desativar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Desabilitar Depuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Desabilitado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Desativando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL do arquivo de configuração do Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Não adicionar entradas IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Não armazenar a cache compactada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Não utilizar processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Tempo limite ao baixar (em segundos)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Listas de download" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Ativar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Habilitar Depuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Habilitar saída de depuração para /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Ativando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Erro" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Erros encontrados, por favor verifique o %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Falha" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Falha ao acessar memória compartilhada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Falha ao criar o arquivo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Falha ao criar lista de bloqueio ou reiniciar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Falha ao criar o cache compactado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Falha ao criar o diretório para o arquivo %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Falha ao criar o diretório para a saída do arquivo /cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Falha ao detectar o formato %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Falha ao baixar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Falha ao baixar o arquivo de configuração de atualização" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Falha ao formatar o arquivo de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Falha ao mover '%s' para '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Falha ao mover o arquivo de dados temporário para '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Falha ao otimizar o arquivo de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Falha ao analisar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Falha ao analisar o arquivo de atualização de configuração" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Falha ao processar a lista de permitidos" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Falha ao recarregar/reiniciar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Falha ao remover arquivos temporários" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Falha ao reiniciar/recarregar o resolvedor de DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Falha ao classificar o arquivo de dados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Falha ao iniciar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Falha ao parar %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Falha ao descompactar o cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Forçar portas DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Imponha o uso das portas DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Impor o Recarregamento" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Impor o DNS do roteador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Impõem o servidor de DNS do roteador para todos os dispositivos locais" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Forçar novo download das listas de bloqueio %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Impõem o uso do DNS do Roteador em dispositivos locais, também é conhecido " +"como DNS Hijacking." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"A ram livre (%s) não é suficiente para processar todas as listas de bloqueio " +"habilitadas" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Conceder acesso ao arquivo e ao UCI para luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Suporte ao IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Se o curl estiver instalado e for detectado, ele não baixará arquivos " +"maiores que isso." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Se o curl for instalado e for detectado, ele tentará baixar isso várias " +"vezes em caso de falha ou limite de tempo." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Os domínios individuais que serão permitidos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Os domínios individuais que serão bloqueados." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Diretório de cache comprimido inválido '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED para indicar o estado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Iniciar todos os downloads e processamento das listas simultaneamente, " +"reduzindo o tempo de início do serviço." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Deixe que os dispositivos locais usem os seus próprios servidores DNS caso " +"seja definido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Sem AdBlock no SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Sem AdBlock no dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Sem suporte HTTPS/SSL no dispositivo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Não há lista de URLs bloqueadas nem domínios bloqueados habilitados" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Não está instalado ou não foi encontrado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Definição do detalhamento do registro" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Pausa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Pausando %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Execute a atualização da configuração antes de baixar as listas de bloqueio/" +"permissão." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Escolha o LED ainda não utilizado em %sConfiguração do LED do sistema%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Escolha a(s) instância(s) SmartDNS para AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Escolha a(s) instância(s) dnsmasq para AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Por favor, note que %s não é compatível com este sistema." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Listas de processamento" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Baixar novamente" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Reiniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Controle do Serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Erros do serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Condição do Serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Avisos do serviço" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Tamanho" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Tamanho: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Pouco detalhado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Alguns pacotes recomendados estão faltando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Início" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Iniciando" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Iniciando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Parar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Pare o download caso ele esteja estagnado por determinados segundos." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Parado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Parando o serviço %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Armazene o cache que foi compactado" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Armazenar arquivo de cache que foi compactado no roteador" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Suprimir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "O %s não conseguiu descobrir o gateway WAN" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"O suporte ao ipset no dnsmasq está habilitado, mas o dnsmasq não está " +"instalado ou o dnsmasq instalado não suporta ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"O suporte ao ipset no dnsmasq está habilitado, mas o ipset não está " +"instalado ou o ipset instalado não suporta o tipo '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"A URL para o arquivo de configuração externa do dnsmasq, consulte %sREADME%s " +"para obter mais detalhes." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Desconhecido" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Utilizar processamento simultâneo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Saída detalhada" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Versão" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versão %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Alerta" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "hosts adicionais do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "configuração do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "ipset do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "conjunto nft do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "arquivo dos servidores do dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "nenhum" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "lista de bloqueio de anúncios não vinculados" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock somente em %s" + +#~ msgid "Force Re-Download" +#~ msgstr "Impor o re-download" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Impor um novo download das listas de bloqueio %s" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "A URLs dos Domínios Permitidos" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Lista de Gerenciamento dos Permitidos e dos Bloqueados" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "URLs com estilo AdBlockPlus foram bloqueados" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "As URLs dos Domínios Bloqueados" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "A URLs dos Hosts Bloqueados" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Ativa a saída de depuração para o arquivo /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Conceda acesso ao arquivo e ao UCI para o luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "AdBlock Simples" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "AdBlock Simples - Configuração" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "AdBlock Simples - Condição" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URLs para as listas de domínios formatados no estilo AdBlockPlus que " +#~ "serão bloqueados." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "A listagem das URLs dos domínios que serão permitidos." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "A listagem das URLs dos domínios que serão bloqueados." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "A listagem das URLs dos hosts que serão bloqueados." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "houve uma falha na validação da configuração (%s)!" + +#~ msgid "disabled" +#~ msgstr "desativado" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "O suporte ao ipset dnsmasq está ativado, mas o dnsmasq não está instalado " +#~ "ou o dnsmasq instalado não oferece suporte ao ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "O suporte ao ipset dnsmasq está ativado, mas o ipset não está instalado " +#~ "ou o ipset instalado não suporta o tipo '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "O suporte ao conjunto dnsmasq nft está ativado, mas o dnsmasq ou não está " +#~ "instalado ou o dnsmasq instalado não oferece suporte ao conjunto nft" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "O suporte a conjuntos dnsmasq nft está ativado, mas o nft não está " +#~ "instalado" + +#~ msgid "failed to access shared memory" +#~ msgstr "houve uma falha ao acessar a memória compartilhada" + +#~ msgid "failed to create '%s' file" +#~ msgstr "houve uma falha ao criar o arquivo '% s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "falha ao criar a lista de bloqueio ou para reiniciar o resolvedor DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "houve uma falha ao criar a cache compactada" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "houve uma falha ao criar um diretório para o arquivo %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "houve uma falha ao criar o diretório do arquivo de saída/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "o download falhou" + +#~ msgid "failed to download Config Update file" +#~ msgstr "houve uma falha ao baixar o arquivo Config Update" + +#~ msgid "failed to format data file" +#~ msgstr "a formatação do arquivo de dados falhou" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "houve uma falha ao mover o '%s' para '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "houve uma falha ao mover o arquivo de dados temporário para '% s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "houve uma falha ao optimizar o arquivos de dados" + +#~ msgid "failed to parse" +#~ msgstr "houve uma falha na análise" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "houve uma falha ao analisar o arquivo Config Update" + +#~ msgid "failed to process allow-list" +#~ msgstr "falha durante o processamento da lista de permitidos" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "houve uma falha durante a recarga/reinicio do DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "houve uma falha ao tentar apagar os arquivos temporários" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "houve uma falha ao tentar reiniciar/recarregar o DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "houve uma falha ao tentar classificar o arquivo de dados" + +#~ msgid "failed to stop %s" +#~ msgstr "houve uma falha para parar %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "houve uma falha ao tentar descompactar a cache" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "no dispositivo não há compatibilidade com HTTPS/SSL" + +#~ msgid "some recommended packages are missing" +#~ msgstr "estão faltando alguns pacotes recomendados" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "o %s falhou ao descobrir o gateway WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "uso de arquivo de configuração externa do dnsmasq foi detectado, defina a " +#~ "opção '%s' para '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Versão: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "O serviço %s falhou ao descobrir o gateway WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Não foi possível criar um diretório para '%s'" + +#~ msgid "Downloading" +#~ msgstr "Baixando" + +#~ msgid "%s Error: %s" +#~ msgstr "%s: Erro: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Erro: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Arquivo de cache contendo %s domínios foram encontrados." + +#~ msgid "Collected Errors" +#~ msgstr "Erros Coletados" + +#~ msgid "Configuration" +#~ msgstr "Configuração" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Hosts adicionais do DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Configuração DNSMASQ" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ipset" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft Set" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Arquivo de Servidores DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Atraso (em segundos) para o início quando o equipamento é ligado" + +#~ msgid "Info" +#~ msgstr "Informação" + +#~ msgid "Loading" +#~ msgstr "Carregando" + +#~ msgid "Message" +#~ msgstr "Mensagem" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Escolha a opção da resolução do DNS para criar uma lista do adblock, " +#~ "consulte os %sREADME%s para obter mais detalhes." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Execute o serviço após definir o atraso na inicialização." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Condição Geral do Serviço [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Configuração do AdBlock Simples" + +#~ msgid "Success" +#~ msgstr "Sucesso" + +#~ msgid "Task" +#~ msgstr "Tarefa" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Lista de AdBlock não vinculados" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Conjunto de IP do DNSMASQ" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "Conjunto DNSMASQ NFT" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s está bloqueando os domínios %s (com %s)." + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the <a " +#~ "href=\"%s#dns-resolution-option\" target=\"_blank\">README</a> for " +#~ "details." +#~ msgstr "" +#~ "Escolha a opção de resolução do DNS para criar a lista de adblock, " +#~ "consulte o <a href=\"%s#dns-resolution-option\" target=\"_blank\">README</" +#~ "a> para obter mais detalhes." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Endereço com lista de Domínio para a Lista Negra" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Domínios para a Lista Negra" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Endereços de Hosts para a Lista Negra" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Domínios individuais a serem incluídos na lista negra." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Domínios individuais a serem listados na lista branca." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "Listagem de URLs para ser adicionada na lista negra." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "Listagem de URLs para ser adicionada na lista branca." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "Listagem de URLs de hosts para ser adicionada na lista negra." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Gerenciamento de Listas Branca e Preta" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Endereço com lista de domínio para a Lista Branca" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Domínios para a Lista Branca" + +#~ msgid "failed to create blocklist or restart DNS resolver" +#~ msgstr "houve uma falha ao criar a lista de bloqueio ou reiniciar o DNS" + +#~ msgid "failed to process whitelist" +#~ msgstr "houve uma falha ao processar a lista branca" + +#~ msgid "Grant UCI access for luci-app-simple-adblock" +#~ msgstr "Conceda acesso UCI ao luci-app-simple-adblock" + +#~ msgid "Service Status [%s]" +#~ msgstr "Condição Geral do Serviço [%s]" + +#~ msgid "Cache file containing" +#~ msgstr "Arquivo cache que contenha" + +#~ msgid "Compressed cache file found" +#~ msgstr "Um arquivo cache compactado foi encontrado" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Escolha a opção de resolução DNS para criar uma lista de bloqueio de " +#~ "anúncios (adblock), veja o" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Escolha um LED não usando em" + +#~ msgid "Please note that" +#~ msgstr "Por favor, note que" + +#~ msgid "README" +#~ msgstr "LEIA-ME" + +#~ msgid "System LED Configuration" +#~ msgstr "Configuração do LED" + +#~ msgid "domains" +#~ msgstr "domínios" + +#~ msgid "domains found" +#~ msgstr "domínios foram encontrados" + +#~ msgid "failed to create" +#~ msgstr "houve uma falha ao criar" + +#~ msgid "failed to move" +#~ msgstr "não foi possível mover" + +#~ msgid "failed to move temporary data file to" +#~ msgstr "houve uma falha ao tentar mover o arquivo de dados temporário para" + +#~ msgid "failed to stop" +#~ msgstr "houve uma falha ao parar" + +#~ msgid "file" +#~ msgstr "arquivo" + +#~ msgid "for details." +#~ msgstr "para mais detalhes." + +#~ msgid "is blocking" +#~ msgstr "está bloqueando" + +#~ msgid "is not installed or not found" +#~ msgstr "não está instalado ou não foi encontrado" + +#~ msgid "is not supported on this system." +#~ msgstr "não é compatível com este sistema." + +#~ msgid "to" +#~ msgstr "para" + +#~ msgid "with" +#~ msgstr "com" + +#~ msgid "Enable/Start" +#~ msgstr "Habilitar/Iniciar" + +#~ msgid "Reload" +#~ msgstr "Recarregar" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "O serviço está desabilitado/parado" + +#~ msgid "Service is enabled/started" +#~ msgstr "O serviço está habilitado/rodando" + +#~ msgid "Service started with error" +#~ msgstr "O serviço iniciou com erro" + +#~ msgid "Stop/Disable" +#~ msgstr "Parar/Desabilitar" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "" +#~ "Controla o sistema de registro e o detalhamento das mensagens de saída do " +#~ "console" + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "" +#~ "Forçar o uso do DNS do Roteador nos dispositivos locais, também conhecido " +#~ "como redirecionamento de DNS" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "Domínios individuais para serem incluídos na Lista Negra" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "Domínios individuais para serem incluídos na Lista Branca" + +#~ msgid "Start Simple Adblock service" +#~ msgstr "Inicie o serviço Simple Adblock" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "Endereço da lista dos domínios para a Lista Negra" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "Endereço da lista dos domínios para a Lista Branca" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "Endereço da lista dos hosts para a Lista Negra" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log" +#~ msgstr "Habilitar a saída da depuração para /tmp/simple-adblock.log" + +#~ msgid "Run service after set delay on boot" +#~ msgstr "Rodar o serviço depois de um atraso quando o equipamento é ligado" + +#~ msgid "Stop the download if it is stalled for set number of seconds" +#~ msgstr "" +#~ "Para de baixar se estiver trancado por um determinado número de segundos" + +#~ msgid "Enable/start service" +#~ msgstr "Habilitar/Iniciar o serviço" diff --git a/applications/luci-app-adblock-fast/po/ro/adblock-fast.po b/applications/luci-app-adblock-fast/po/ro/adblock-fast.po new file mode 100644 index 0000000000..c252901e15 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ro/adblock-fast.po @@ -0,0 +1,994 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-08 01:07+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" +"Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ro/>\n" +"Language: ro\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " +"20)) ? 1 : 2;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s este în prezent dezactivat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s nu este instalat sau nu este găsit" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Acțiune" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Activ" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock rapid" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock pe toate instanțele" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Domenii permise și blocate" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Listă de URL-uri permise și blocate" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Configurație" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Stare" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Adăugați intrări IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Adăugați intrări IPv6 la block-list." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Configurație avansată" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Permiteți" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Domenii permise" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Încercarea de a crea o memorie cache comprimată a listei de blocuri în " +"memoria persistentă." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Actualizare automată a configurației" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Configurație de Bază" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blochează" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Domenii Blocate" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blocarea domeniilor %s (cu %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Fișier cache găsit." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "A fost creat un fișier cache comprimat." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "S-a găsit fișierul cache comprimat." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Eșec de validare a configurației (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Controlează verbalizarea jurnalului de sistem și a ieșirii consolei." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Reîncercarea descărcării Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Dimensiunea maximă a fișierului Curl (în bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Serviciul DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "opțiunea de rezoluție DNS, consultați %sREADME%s pentru detalii." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Director pentru fișierul cache comprimat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Director pentru fișierul cache comprimat al listei de blocare din memoria " +"persistentă." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Dezactivați" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Dezactivarea depanării" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Dezactivat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Dezactivarea serviciului %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL-ul fișierului de configurare Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Nu adăugați intrări IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Nu stocați memoria cache comprimată" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Nu folosiți procesarea simultană" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Time-out pentru descărcare (în secunde)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Descărcarea listelor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Activează" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Activați depanarea" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Activează ieșirea de depanare în /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Activarea serviciului %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Eroare" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Erori întâlnite, vă rugăm să verificați %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Eșec" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Nu a reușit să acceseze memoria partajată" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Nu s-a reușit crearea fișierului '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"Nu s-a reușit crearea listei de blocuri sau repornirea rezolvatorului DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Nu a reușit să creeze memoria cache comprimată" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Nu s-a reușit crearea unui director pentru fișierul %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Nu a reușit să creeze directorul de fișiere output/cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Nu a reușit să detecteze formatul %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Nu a reușit să descarce %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Nu s-a reușit descărcarea fișierului de actualizare a configurației" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Nu a reușit să formateze fișierul de date" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Nu a reușit să mute \"%s\" în \"%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Nu a reușit să mute fișierul de date temporare în \"%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Nu a reușit să optimizeze fișierul de date" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Nu a reușit să analizeze %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Nu a reușit să analizeze fișierul Config Update" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Nu a reușit să proceseze allow-list" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Nu s-a reușit sortarea fișierului de date" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Nu a reușit să oprească %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Forțați porturile DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Reîncărcare de forță" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Forțați DNS-ul routerului" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Forțați serverul DNS al Routerului pentru toate dispozitivele locale" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Forțează utilizarea Router DNS pe dispozitivele locale, cunoscută și sub " +"numele de DNS Hijacking." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Suport IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Dacă curl este instalat și detectat, acesta nu va descărca fișiere mai mari " +"de atât." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"În cazul în care curl este instalat și detectat, acesta va încerca din nou " +"să descarce de atâtea ori la timeout/ eșec." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Domenii individuale care să fie permise." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Domenii individuale care urmează să fie blocate." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED pentru a indica starea" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Lansarea simultană a tuturor descărcărilor și procesării listelor, reducând " +"timpul de pornire a serviciului." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Permiteți dispozitivelor locale să utilizeze propriile servere DNS, dacă " +"sunt setate" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Nu este instalat sau nu a fost găsit" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Setarea verbalității de ieșire" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Efectuați actualizarea configurației înainte de a descărca listele de " +"blocare/permitere." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Alegeți LED-ul care nu este deja utilizat în %sSystem LED Configuration%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Vă rugăm să rețineți că %s nu este acceptat pe acest sistem." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Listă de prelucrare" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Repornire" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Controlul serviciilor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Erori de serviciu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Starea serviciului" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Avertismente de serviciu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Prelucrare simultană" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Unele ieșiri" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Porniți" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Începând cu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Pornirea serviciului %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stop" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Oprește descărcarea în cazul în care aceasta este blocată pentru un număr de " +"secunde stabilit." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "S-a oprit" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Se operște servciul %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Stocarea cache-ului comprimat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Stocați fișierul cache comprimat pe router" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Suprimarea ieșirii" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL către fișierul extern de configurare dnsmasq, consultați %sREADME%s " +"pentru detalii." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Utilizați procesarea simultană" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Ieșire abundentă" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versiunea %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Avertisment" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq gazde suplimentare" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "configurare dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "setați dnsmasq nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "fișierul serverelor dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "niciunul" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "listă nelegată adblock" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock numai pe %s" + +#~ msgid "Force Re-Download" +#~ msgstr "Forțați reîncărcarea" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Forțați reîncărcarea forțată a listelor de blocuri %s" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "URL-uri de domeniu permise" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Gestionarea listelor permise și blocate" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "URL-uri blocate în stilul AdBlockPlus" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URL-uri de domenii blocate" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Gazde blocate URL-uri" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Activează ieșirea de depanare în /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Acordă UCI și acces la fișiere pentru luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "AdBlock simplu" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Configurație" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Stare" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "URL-uri către liste de domenii formatate în stilul AdBlockPlus care " +#~ "urmează să fie blocate." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URL-uri către listele de domenii care trebuie permise." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URL-uri către listele de domenii care urmează să fie blocate." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URL-uri către listele de gazde care urmează să fie blocate." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "eșecul validării config (%s)!" + +#~ msgid "disabled" +#~ msgstr "dezactivat" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "suportul dnsmasq ipset este activat, dar dnsmasq fie nu este instalat, " +#~ "fie instalat dnsmasq nu suportă ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "suportul dnsmasq ipset este activat, dar ipset fie nu este instalat, fie " +#~ "ipset instalat nu suportă '%s' tip" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "suportul dnsmasq nft set este activat, dar dnsmasq fie nu este instalat, " +#~ "fie instalat dnsmasq nu suportă nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "suportul pentru seturi dnsmasq nft este activat, dar nft nu este instalat" + +#~ msgid "failed to access shared memory" +#~ msgstr "nu a reușit să acceseze memoria partajată" + +#~ msgid "failed to create '%s' file" +#~ msgstr "nu a reușit să creeze fișierul \"%s" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "nu a reușit să creeze o listă de blocuri sau să repornească rezolvarea DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "nu a reușit să creeze memoria cache comprimată" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "nu a reușit să creeze directorul pentru fișierul %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "nu a reușit să creeze directorul de fișiere output/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "nu a reușit să descarce" + +#~ msgid "failed to download Config Update file" +#~ msgstr "nu a reușit să descarce fișierul Config Update" + +#~ msgid "failed to format data file" +#~ msgstr "nu a reușit să formateze fișierul de date" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "nu a reușit să mute \"%s\" în \"%s" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "nu a reușit să mute fișierul de date temporare în \"%s" + +#~ msgid "failed to optimize data file" +#~ msgstr "nu a reușit să optimizeze fișierul de date" + +#~ msgid "failed to parse" +#~ msgstr "nu a reușit să analizeze" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "nu a reușit să analizeze fișierul Config Update" + +#~ msgid "failed to process allow-list" +#~ msgstr "nu a reușit să proceseze allow-list" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "nu a reușit să reîncarce/repornească rezolvatorul DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "nu a reușit să elimine fișierele temporare" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "nu a reușit să repornească/reîncarce rezolvarea DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "nu a reușit să sorteze fișierul de date" + +#~ msgid "failed to stop %s" +#~ msgstr "nu a reușit să oprească %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "nu a reușit să despacheteze memoria cache comprimată" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "nu există suport HTTPS/SSL pe dispozitiv" + +#~ msgid "some recommended packages are missing" +#~ msgstr "unele pachete recomandate lipsesc" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s nu a reușit să descopere gateway-ul WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "a fost detectată utilizarea unui fișier de configurare dnsmasq extern, vă " +#~ "rugăm să setați opțiunea '%s' la '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Versiune: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "Serviciul %s nu a reușit să descopere gateway-ul WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Nu se poate crea un director pentru \"%s" + +#~ msgid "Downloading" +#~ msgstr "Descărcarea" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Eroare: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Eroare: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "A fost găsit fișierul cache care conține %s domenii." + +#~ msgid "Collected Errors" +#~ msgstr "Erori colectate" + +#~ msgid "Configuration" +#~ msgstr "Configurație" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ Gazde suplimentare" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ Configurație" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ip set" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Setare Nft" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Fișier servere DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Întârziere (în secunde) pentru pornirea la pornire" + +#~ msgid "Info" +#~ msgstr "Informații" + +#~ msgid "Loading" +#~ msgstr "Încărcare" + +#~ msgid "Message" +#~ msgstr "Mesaj" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Alegeți opțiunea de rezoluție DNS pentru care să creați lista adblock, " +#~ "consultați %sREADME%s pentru detalii." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Rularea serviciului după o întârziere setată la pornire." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Starea serviciului [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Setări simple pentru AdBlock" + +#~ msgid "Success" +#~ msgstr "Succes" + +#~ msgid "Task" +#~ msgstr "Sarcină" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Lista AdBlock fără legătură" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ Setați IP" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "Setați DNSMASQ NFT" diff --git a/applications/luci-app-adblock-fast/po/ru/adblock-fast.po b/applications/luci-app-adblock-fast/po/ru/adblock-fast.po new file mode 100644 index 0000000000..60a26f203f --- /dev/null +++ b/applications/luci-app-adblock-fast/po/ru/adblock-fast.po @@ -0,0 +1,1118 @@ +msgid "" +msgstr "" +"Project-Id-Version: LuCI: simple-adblock\n" +"POT-Creation-Date: 2017-12-07 14:00+0300\n" +"PO-Revision-Date: 2024-04-12 04:01+0000\n" +"Last-Translator: st7105 <st7105@gmail.com>\n" +"Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/ru/>\n" +"Language: ru\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5-dev\n" +"Project-Info: Это технический перевод, не дословный. Главное-удобный русский " +"интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s сейчас отключен" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s не установлен или не найден" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Действие" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Активный" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock во всех случаях" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock в отдельных экземплярах" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Разрешенные и заблокированные домены" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Разрешенные и заблокированные списки URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Конфигурация" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Статус" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Добавить записи IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Добавление записей IPv6 в чёрный список." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Расширенные настройки" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Разрешить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Разрешённые домены" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "Пытаться создавать сжатый кэш списка блокировок в постоянной памяти." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Автоматическое обновление конфигурации" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Основная конфигурация" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Блок" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Блокируемые домены" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Блокировка %s доменов (с %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Кэш-файл" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Файл кеша найден." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Не удается обнаружить свободную оперативную память" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Сжатый кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Создан сжатый файл кеша." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Найден сжатый кэш-файл." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Конфигурация (%s) не прошла проверку!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Контроль вывода системного журнала и его информативности." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Попытки загрузки через Curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Максимальный размер файла Curl (в байтах)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Служба DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Опция разрешения DNS, подробности см. в %sREADME%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Каталог для сжатого файла кэша" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "Каталог для сжатого кэш-файла блок-листа в постоянной памяти." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Отключить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Отключить отладку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Отключено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Отключение службы %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL-адрес файла конфигурации Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Не добавлять записи IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Не хранить сжатый кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Не использовать одновременную обработку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Время ожидания загрузки (в секундах)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Загрузка списков" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Включить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Включить отладку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Включает вывод отладки в файл /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Включение службы %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Ошибка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Обнаружены ошибки, сверьтесь с %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Ошибка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Не удалось получить доступ к общей памяти" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Не удалось создать файл '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Не удалось создать блок-лист или перезапустить DNS-резольвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Не удалось создать сжатый кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Не удалось создать каталог для файла %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Не удалось создать каталог output/cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Не удалось определить формат %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Не удалось загрузить %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Не удалось загрузить файл обновления конфигурации" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Не удалось отформатировать файл данных" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Не удалось переместить '%s' в '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Не удалось переместить временный файл данных в '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Не удалось оптимизировать файл данных" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Не удалось разобрать %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Не удалось разобрать файл обновления конфигурации" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Не удалось обработать разрешающий список" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Не удалось перезагрузить/перезапустить DNS-резольвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Не удалось удалить временные файлы" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Не удалось перезапустить/перезагрузить DNS-резольвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Не удалось сортировать файл данных" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Не удалось запустить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Не удалось остановить %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Не удалось распаковать сжатый кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Принудительное использование портов DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Принудительное использование портов DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Принудительная перезагрузка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Назначить DNS роутера" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Назначить DNS роутера всем локальным устройствам" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Принудительная повторная загрузка %s списков блоков" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Принудительное использование DNS роутера на локальных устройствах, или " +"перехват DNS." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Свободной памяти (%s) недостаточно для обработки всех включенных блок-листов" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Предоставить UCI и доступ к файлам для luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Поддержка IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Если curl установлен и обнаружен, он не будет загружать файлы большего " +"размера." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Если curl установлен и обнаружен, данное значение устанавливает количество " +"повторных попыток загрузки в случае неудачи." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Отдельные домены, которые будут разрешены." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Отдельные домены, которые будут заблокированы." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Недопустимый каталог сжатого кэша '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "Светодиоды для индикации состояния" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Запускает все загрузки и обработки списков одновременно, сокращая время " +"запуска службы." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Разрешить локальным устройствам использовать собственные DNS, если они " +"прописаны в настройках сети устройства" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Отсутствие AdBlock на SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Отсутствие AdBlock на dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Отсутствие поддержки HTTPS/SSL на устройстве" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Нет заблокированных URL-адресов и доменов" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Не установлен или не найден" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Настройка журнала" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Пауза" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Пауза %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Осуществлять обновление конфигурации перед загрузкой списков блокировок." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "Выберите светодиод, не используемый в %sSystem LED Configuration%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Выберите экземпляр(ы) SmartDNS для AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Выберите экземпляр(ы) dnsmasq для AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Обратите внимание: %s не поддерживается в этой системе." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Обработка списков" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Перезагрузить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Перезапуск" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Управление службой" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Ошибки службы" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Статус службы" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Предупреждения службы" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Одновременная обработка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Размер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Размер: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Частичная запись" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Некоторые рекомендуемые пакеты отсутствуют" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Запустить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Запуск" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Запуск службы %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Статус" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Остановить" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" +"Остановка загрузки, если она задерживается на заданное количество секунд." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Остановлена" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Остановка службы %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Хранить сжатый кэш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Хранить сжатый файл кэша на роутере" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Запрет записи" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s не удалось обнаружить WAN-шлюз" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Поддержка dnsmasq ipset включена, но dnsmasq либо не установлен, либо " +"установленный dnsmasq не поддерживает ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Поддержка dnsmasq ipset включена, но ipset либо не установлен, либо " +"установленный ipset не поддерживает тип '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Поддержка dnsmasq nft set включена, но dnsmasq либо не установлен, либо " +"установленный dnsmasq не поддерживает nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "Поддержка наборов dnsmasq nft включена, но nft не установлен" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL-адрес внешнего файла конфигурации dnsmasq, подробности см. в %sREADME%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URL-адреса файлов, содержащих списки, которые должны быть разрешены или " +"заблокированы." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Неизвестный" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Неизвестная ошибка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Неизвестное предупреждение" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Использовать AdBlocking на экземпляре(ах) SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Использовать блокировку рекламы на экземпляре(ах) dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Обнаружено использование внешнего файла конфигурации dnsmasq, пожалуйста, " +"установите опцию '%s' в значение '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Использовать одновременную обработку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Подробный вывод" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Версия" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Версия %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Внимание" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Вы можете ограничить AdBlocking конкретным экземпляром SmartDNS " +"(%sдополнительная информация%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Вы можете ограничить блокировку AdBlock конкретным экземпляром " +"(экземплярами) dnsmasq (%sдополнительная информация%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq дополнительные хосты" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "конфигурация dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "IP-набор dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft-набор" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "файл серверов dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "ничего" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "набор доменов smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nftset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "несвязанный список adblock" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock только в %s" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific SmartDNS instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Вы можете ограничить блокировку рекламы определенным экземпляром " +#~ "(экземплярами) SmartDNS (%sдополнительная информация%s)." + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Вы можете ограничить AdBlocking определенным экземпляром (экземплярами) " +#~ "dnsmasq (%sдополнительная информация%s)." + +#~ msgid "Force Re-Download" +#~ msgstr "Принудительно загрузить" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Принудительная повторная загрузка блок-списков %s" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Возникли ошибки, проверьте %sREADME%s!" + +#~ msgid "Failed to parse" +#~ msgstr "Не удалось выполнить разбор" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Разрешённые URL-адреса доменов" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Управление списками разрешения и блокировки" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Заблокированные URL-адреса в стиле AdBlockPlus" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "URL-адреса блокируемых доменов" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "URL-адреса блокируемых хостов" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Включает вывод отладочной информации в /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Предоставить luci-app-simple-adblock доступ к UCI и файлам" + +#~ msgid "Simple AdBlock" +#~ msgstr "Простой AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - Конфигурация" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - Статус" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "URL-адреса списков блокируемых доменов в стиле AdBlockPlus." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "URL списков разрешаемых доменов." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "URL списков блокируемых доменов." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "URL списков блокируемых хостов." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "ошибка проверки конфигурации (%s)!" + +#~ msgid "disabled" +#~ msgstr "отключено" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "поддержка dnsmasq ipset включена, но dnsmasq либо не установлен, либо " +#~ "установленный dnsmasq не поддерживает ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "поддержка dnsmasq ipset включена, но ipset либо не установлен, либо " +#~ "установленный ipset не поддерживает тип '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "поддержка dnsmasq nft set включена, но dnsmasq либо не установлен, либо " +#~ "установленный dnsmasq не поддерживает nft set" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "поддержка наборов dnsmasq nft включена, но nft не установлен" + +#~ msgid "failed to access shared memory" +#~ msgstr "не удалось получить доступ к общей памяти" + +#~ msgid "failed to create '%s' file" +#~ msgstr "не удалось создать файл '%s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "не удалось создать чёрный список или перезапустить службу DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "не удалось создать сжатый кэш" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "не удалось создать каталог для файла %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "не удалось создать каталог файлов output/cache/gzip" + +#~ msgid "failed to download" +#~ msgstr "не удалось загрузить" + +#~ msgid "failed to download Config Update file" +#~ msgstr "не удалось загрузить файл обновления конфигурации" + +#~ msgid "failed to format data file" +#~ msgstr "не удалось отформатировать файл данных" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "не удалось переместить '%s' в '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "не удалось переместить временный файл данных в '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "не удалось оптимизировать файл данных" + +#~ msgid "failed to parse" +#~ msgstr "не удалось обработать" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "не удалось обработать файл обновления конфигурации" + +#~ msgid "failed to process allow-list" +#~ msgstr "не удалось обработать список разрешения" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "не удалось перезапустить службу DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "не удалось удалить временные файлы" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "не удалось перезапустить службу DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "не удалось отсортировать файл данных" + +#~ msgid "failed to stop %s" +#~ msgstr "не удалось остановить %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "не удалось распаковать сжатый кэш" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "нет поддержки HTTPS/SSL на устройстве" + +#~ msgid "some recommended packages are missing" +#~ msgstr "некоторые рекомендуемые пакеты отсутствуют" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s не удалось обнаружить WAN-шлюз" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "обнаружено использование внешнего файла конфигурации dnsmasq, пожалуйста, " +#~ "установите опцию '%s' на '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Версия: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "Службе %s не удалось обнаружить шлюз WAN!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "Не удалось создать каталог для '%s'" + +#~ msgid "Downloading" +#~ msgstr "Скачивание" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Ошибка: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Ошибка: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "Найден кэш-файл, содержащий %s доменов." + +#~ msgid "Collected Errors" +#~ msgstr "Найденные ошибки" + +#~ msgid "Configuration" +#~ msgstr "Конфигурация" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Дополнительные хосты DNSMASQ" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Конфигурация DNSMASQ" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "Файл серверов DNSMASQ" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Задержка (в секундах) запуска службы при загрузке" + +#~ msgid "Info" +#~ msgstr "Информация" + +#~ msgid "Loading" +#~ msgstr "Загрузка" + +#~ msgid "Message" +#~ msgstr "Сообщение" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Выбор службы DNS, для которой будет создан список блокировки. " +#~ "Дополнительная информация в %sREADME%s." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Запуск службы при загрузке системы после установленной задержки." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Статус службы [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Настройки Simple AdBlock" + +#~ msgid "Success" +#~ msgstr "Успех" + +#~ msgid "Task" +#~ msgstr "Задача" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Список AdBlock Unbound" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "Установка IP DNSMASQ" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s блокирует %s домены (с %s)." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "URL ссылки Черных<br />списков доменов" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Черный список доменов" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "URL ссылки Черных<br />списков хостов" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "Отдельные домены должны быть в черном списке." + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "Отдельные домены должны быть в белом списке." + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "URL-адреса списков доменов, которые должны быть в черном списке." + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "URL-адреса списков доменов, которые должны быть в белом списке." + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "URL-адреса списков хостов, которые должны быть в черном списке." + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "Белый и черный списки управления" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "URL ссылки Белых списков доменов" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Белый список доменов" + +#~ msgid "Grant UCI access for luci-app-simple-adblock" +#~ msgstr "Предоставить UCI доступ для luci-app-simple-adblock" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "" +#~ "Выберите параметр разрешения DNS, для которого создается список adblock, " +#~ "см." + +#~ msgid "Pick the LED not already used in" +#~ msgstr "Выберите LED не используется на странице" + +#~ msgid "Please note that" +#~ msgstr "Обратите внимание, что" + +#~ msgid "README" +#~ msgstr "Описание" + +#~ msgid "System LED Configuration" +#~ msgstr "Настройка LED индикации системы." + +#~ msgid "for details." +#~ msgstr "для деталей." + +#~ msgid "is not supported on this system." +#~ msgstr "не поддерживается в этой системе." + +#~ msgid "Enable/Start" +#~ msgstr "Включить/Старт" + +#~ msgid "Reload" +#~ msgstr "Перезапустить" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "Сервис выключен/остановлен" + +#~ msgid "Service is enabled/started" +#~ msgstr "Сервис включен/запущен" + +#~ msgid "Service started with error" +#~ msgstr "Служба запущена с ошибкой" + +#~ msgid "Stop/Disable" +#~ msgstr "Стоп/Отключить" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "Детальная настройка записи событий в системный журнал." + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "" +#~ "Назначить DNS роутера всем локальным устройствам, методом DNS Hijacking." + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "Домены добавленные пользователем в Черный список." + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "Домены добавленные пользователем в Белый список." + +#~ msgid "Start Simple Adblock service" +#~ msgstr "Запуск сервиса Simple Adblock" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "URL ссылки Черных списков доменов." + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "URL ссылки Белых списков доменов." + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "URL ссылки Черных списков хостов." diff --git a/applications/luci-app-adblock-fast/po/sk/adblock-fast.po b/applications/luci-app-adblock-fast/po/sk/adblock-fast.po new file mode 100644 index 0000000000..ae5a2ed590 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/sk/adblock-fast.po @@ -0,0 +1,732 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-03-27 01:01+0000\n" +"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n" +"Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/sk/>\n" +"Language: sk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktívny" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Zakázať" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Zakázané" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Povoliť" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Chyba" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Štart" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Zastaviť" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Upozornenie" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "žiadne" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "disabled" +#~ msgstr "zakázané" + +#~ msgid "Configuration" +#~ msgstr "Konfigurácia" + +#~ msgid "Info" +#~ msgstr "Informácie" + +#, fuzzy +#~ msgid "Loading" +#~ msgstr "Načítava sa" diff --git a/applications/luci-app-adblock-fast/po/sv/adblock-fast.po b/applications/luci-app-adblock-fast/po/sv/adblock-fast.po new file mode 100644 index 0000000000..431b4d5631 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/sv/adblock-fast.po @@ -0,0 +1,844 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2023-12-25 23:28+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" +"Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/sv/>\n" +"Language: sv\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s är för närvarande avstängd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s är inte installerat eller kunde inte hittas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Åtgärd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktiv" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock på alla instanser" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - Tillåtna och Blockerade domäner" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - Tillåtna och Blockerade URL-listor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Inställning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Lägg till IPv6-poster" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Lägg till IPv6-poter till blockeringslistan." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Avancerad konfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Tillåt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Tillåtna domäner" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Standardkonfiguration" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Blockera" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Blockerade domäner" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Blockerar %s-domäner (med %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Cache-filen hittades." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Packad cache-fil skapades." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Packad cache-fil hittades." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Valideringen för inställningen av (%s) misslyckades!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Styr system-loggen och verbositet för konsolutmatningen." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Maximal filstorlek för Curl (i bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS-tjänst" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Katalog för packad cache-fil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Katalog för packad cache-fil av blockeringslistan i det beständiga minnet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Stäng av" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Inaktivera avlusning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Avstängd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Stänger av %s-tjänsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Lägg inte till IPv6-poster" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Lagra inte packad cache" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Time-out för hämtning (i sekunder)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Hämtar listor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Aktivera" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Aktivera avlusning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Aktiverar avlusningens utmatning till /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Aktiverar %s-tjänsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Fel" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Misslycka" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Skapandet av filen '%s' misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"Skapandet av blockeringslistan eller att starta om DNS-utlösaren misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Skapandet av packad cache misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Skapandet av katalogen till filen %s misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Skapandet av katalogen för utmatningen/cache/gzip-fil misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Hämtningen av %s misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Formateringen av data-filen misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Flytten av '%s' till '%s' misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Flytten av temporär data-fil till '%s' misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Optimeringen av data-filen misslyckades" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Tvinga DNS-portar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Tvinga DNS-portar:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6-stöd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Individuella domäner att tillåta." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Individuella domäner att blockera." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED för att indikera status" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "Låt lokala enheter använda sina egna DNS-servrar om de är inställda" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Inte installerad eller kunde inte hittas" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Vänligen notera att %s stöds inte i det här systemet." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Startar om" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Tjänstkontroll" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Status för tjänsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Simultan behandling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Viss utmatning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Starta" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Startar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Startar %s-tjänsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Stopp" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Stoppad" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Stoppar %s-tjänsten" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Förträng utmatning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Okänd" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Använd simultan behandling" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Utförlig utmatning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Version %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Varning" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "ytterligare värdar för dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "konfiguration för dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "ipset för dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "ställ in nft för dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "inga" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "AdBlock endast på %s" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "Fel inträffade, vänligen kolla i %README%s!" + +#~ msgid "Failed to parse" +#~ msgstr "Tolkningen misslyckades" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Tillåtna webbadresser för domäner" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Aktiverar utmatningen för avlusning till /tmp/simple-adblock.log." + +#~ msgid "Simple AdBlock" +#~ msgstr "Simple AdBlock" + +#~ msgid "failed to create '%s' file" +#~ msgstr "skapandet av filen '%s' misslyckades" + +#~ msgid "failed to download" +#~ msgstr "nerladdningen misslyckades" + +#~ msgid "failed to format data file" +#~ msgstr "formatering av data-filen misslyckades" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "flytten av '%s' till '%s' misslyckades" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "flytten av temporär data-fil till '%s' misslyckades" + +#~ msgid "failed to parse" +#~ msgstr "tolkning misslyckades" + +#~ msgid "failed to process allow-list" +#~ msgstr "behandlingen av tillåt-listan misslyckades" + +#~ msgid "failed to remove temporary files" +#~ msgstr "borttagningen av de temporära filerna misslyckades" + +#~ msgid "failed to stop %s" +#~ msgstr "stoppandet av %s misslyckades" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "inget HTTPS/SSL-stöd i enheten" + +#~ msgid "Downloading" +#~ msgstr "Laddar ner" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Fel: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Fel: %s %s" + +#~ msgid "Collected Errors" +#~ msgstr "Insamlade fel" + +#~ msgid "Configuration" +#~ msgstr "Konfiguration" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "Fler värdar för DNSMASQ" + +#~ msgid "Info" +#~ msgstr "Info" + +#~ msgid "Loading" +#~ msgstr "Laddar" + +#~ msgid "Message" +#~ msgstr "Meddelande" + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Status för tjänsten [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Inställningar för Simple AdBlock" + +#~ msgid "Success" +#~ msgstr "Lyckades" + +#~ msgid "Task" +#~ msgstr "Uppgift" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s blockerar %s domäner (med %s)." + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "Svartlistade domänadresser" + +#~ msgid "Blacklisted Domains" +#~ msgstr "Svartlistade domäner" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "Svartlistade värdadresser" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "Vitlistade domänadresser" + +#~ msgid "Whitelisted Domains" +#~ msgstr "Vitlistade domäner" + +#~ msgid "Reload" +#~ msgstr "Ladda om" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "Kontrollerar systemloggar och detaljnivån för konsoll-utmatningen" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "Individuella domäner som ska svartlistas" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "Individulla domäner som ska svartlistas" + +#~ msgid "Enable/start service" +#~ msgstr "Aktivera/starta tjänsten" diff --git a/applications/luci-app-adblock-fast/po/templates/adblock-fast.pot b/applications/luci-app-adblock-fast/po/templates/adblock-fast.pot new file mode 100644 index 0000000000..874c6386bc --- /dev/null +++ b/applications/luci-app-adblock-fast/po/templates/adblock-fast.pot @@ -0,0 +1,710 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "" diff --git a/applications/luci-app-adblock-fast/po/tr/adblock-fast.po b/applications/luci-app-adblock-fast/po/tr/adblock-fast.po new file mode 100644 index 0000000000..63eb498147 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/tr/adblock-fast.po @@ -0,0 +1,992 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-11 03:16+0000\n" +"Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n" +"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/tr/>\n" +"Language: tr\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s şu anda devre dışı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s yüklenmemiş ya da bulunamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Aksiyon" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Aktif" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "Tüm örneklerde AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "Seçili örneklerde Reklam Engelleme" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Hızlı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - İzin Verilen ve Engellenen Alan Adları" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - İzin Verilen ve Engellenen URL'leri Listeler" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Yapılandırma" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - Durum" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "IPv6 girişleri ekle" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Engelleme listesine IPv6 girişleri ekle." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Gelişmiş Yapılandırma" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "İzin ver" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "İzin Verilen Alanlar" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "" +"Kalıcı bellekte sıkıştırılmış bir blok liste önbelleği oluşturmaya çalış." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Otomatik Yapılandırma Güncellemesi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Temel Yapılandırma" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Engelle" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Engellenen Alan Adları" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "%s alanı (%s ile) engelleniyor." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Önbellek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Önbellek dosyası" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Önbellek dosyası bulundu." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Boş RAM algılanamıyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Sıkıştırılmış önbellek" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Sıkıştırılmış önbellek dosyası oluşturuldu." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Sıkıştırılmış önbellek dosyası bulundu." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Yapılandırma (%s) doğrulama hatası!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Sistem günlüğünü ve konsol çıktı ayrıntı düzeyini kontrol eder." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl indirmeyi yeniden dene" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl azami dosya boyutu (bayt cinsinden)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS Hizmeti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS çözümleme seçeneği, ayrıntılar için %sREADME%s bakın." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Sıkıştırılmış önbellek dosyası dizini" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Kalıcı bellekteki blok listesinin sıkıştırılmış önbellek dosyası için dizin." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Devre dışı bırak" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Hata Ayıklamayı Devre Dışı Bırak" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Devre dışı bırakıldı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "%s hizmeti devre dışı bırakılıyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "Dnsmasq Yapılandırma Dosyası URL'si" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "IPv6 girişleri ekleme" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Sıkıştırılmış önbelleği saklama" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Eşzamanlı işlemeyi kullanma" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "İndirme zaman aşımı (saniye cinsinden)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Listeler indiriliyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Etkinleştir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Hata ayıklamayı etkinleştir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "/tmp/adblock-fast.log dosyasına hata ayıklama çıktısını etkinleştirir." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "%s hizmeti etkinleştiriliyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Hata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Hatalarla karşılaşıldı, lütfen %sREADME%s dosyasını kontrol edin" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Başarısız" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Paylaşılan belleğe erişilemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "'%s' dosyası oluşturulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" +"Engellenenler listesi oluşturulamadı veya DNS çözümleyici yeniden " +"başlatılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Sıkıştırılmış önbellek oluşturulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "%s dosyası için dizin oluşturulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Çıktı/önbellek/gzip dosya dizini oluşturulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "%s biçimi algılanamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "%s indirilemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Yapılandırma Güncelleme dosyası indirilemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Veri dosyası biçimlendirilemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "'%s', '%s' konumuna taşınamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Geçici veri dosyası '%s' dizinine taşınamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Veri dosyası optimize edilemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "%s ayrıştırılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Yapılandırma Güncelleme dosyası ayrıştırılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "İzin verilenler listesi işlenemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "DNS çözümleyici yeniden yüklenemedi/yeniden başlatılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Geçici dosyalar kaldırılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "DNS çözümleyici yeniden başlatılamadı/yeniden yüklenemedi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Veri dosyası sıralanamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Başlatılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "%s durdurulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Sıkıştırılmış önbellek paketi açılamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "DNS Bağlantı Noktalarını Zorla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "DNS bağlantı noktalarını zorla:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Yeniden Yüklemeye Zorla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Yönlendirici DNS'sini Zorla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Yönlendirici DNS sunucusunu tüm yerel cihazlara zorla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "%s blok listelerini yeniden indirmeye zorla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Yönlendirici DNS'sini zorla, yerel cihazlarda, DNS Hijacking olarak da " +"bilinir." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Boş ram (%s) etkinleştirilmiş tüm blok listelerini işlemek için yeterli değil" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Luci-app-adblock-fast için UCI ve dosya erişimi yetkisi verin" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 Desteği" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"curl kuruluysa ve algılanırsa, bundan daha büyük dosyaları indirmeyecektir." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Curl kurulur ve algılanırsa, zaman aşımı/başarısızlık durumunda bunu birçok " +"kez indirmeyi deneyecektir." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "İzin verilecek bireysel alanlar." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Engellenecek bireysel alanlar." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Geçersiz sıkıştırılmış ön bellek dizini '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "Durumu göstermek için LED" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Tüm liste indirmelerini ve işlemeyi aynı anda başlatarak hizmetin başlama " +"zamanını azaltın." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Ayarlanmışsa, yerel cihazların kendi DNS sunucularını kullanmasına izin verin" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "SmartDNS'de AdBlock yok" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "dnsmasq'ta AdBlock yok" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Cihazda HTTPS/SSL desteği yok" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Engellenen liste URL'si veya engellenen alan adı etkin değil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Yüklü değil veya bulunamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Çıktı Ayrıntı Ayarı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Duraklat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Duraklatılıyor %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Engelleme / izin listelerini indirmeden önce yapılandırma güncellemesini " +"gerçekleştirin." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "%sSystem LED Configuration%s kullanılmayan LED'i seçin." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Reklam Engelleme için SmartDNS örnek(ler)ini seçin" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "AdBlocking için dnsmasq örnek(ler)ini seçin" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Lütfen %s 'nin bu sistemde desteklenmediğini unutmayın." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Listeler işleniyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Yeniden İndir" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Yeniden başlatılıyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Hizmet Kontrolü" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Hizmet Hataları" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Hizmet Durumu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Hizmet Uyarıları" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Eşzamanlı işleme" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Boyut" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Boyut: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Biraz çıktı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Önerilen paketlerden bazıları eksik" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Başlat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Başlıyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "%s hizmeti başlatılıyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Durum" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Dur" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Ayarlanan saniye kadar inmezse indirmeyi durdurun." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Durduruldu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "%s hizmeti durduruluyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Sıkıştırılmış önbelleği depola" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Sıkıştırılmış önbellek dosyasını yönlendiricide sakla" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Çıkışı bastır" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s WAN ağ geçidini bulamadı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Dnsmasq ipset desteği etkin, ancak dnsmasq yüklü değil veya yüklü dnsmasq " +"ipset'i desteklemiyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Dnsmasq ipset desteği etkin, ancak ipset ya kurulu değil ya da kurulu ipset " +"'%s' tipini desteklemiyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Dnsmasq nft set desteği etkin, ancak dnsmasq yüklü değil veya yüklü dnsmasq " +"nft setini desteklemiyor" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "Dnsmasq nft setleri desteği etkin ancak nft yüklü değil" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"Harici dnsmasq yapılandırma dosyasının URL'si, ayrıntılar için %sREADME%s " +"bakın." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"İzin verilecek veya engellenecek listeleri içeren dosya(lar)ın URL'leri." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Bilinmeyen" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Bilinmeyen hata" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Bilinmeyen uyarı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "SmartDNS örneklerinde AdBlocking'i kullan" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Şu dnsmasq örneklerinde AdBlocking kullan" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Harici dnsmasq yapılandırma dosyası kullanımı algılandı, lütfen '%s' " +"seçeneğini '%s' olarak ayarlayın" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Eşzamanlı işlemeyi kullan" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Ayrıntılı çıktı" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Versiyon" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Versiyon %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Dikkat" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Reklam Engellemeyi belirli SmartDNS örnekleriyle (%sdaha fazla bilgi%s) " +"sınırlandırabilirsiniz." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Reklam Engellemeyi belirli dnsmasq örnekleriyle (%sdaha fazla bilgi%s) " +"sınırlandırabilirsiniz." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq ek ana makineleri" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq yapılandırması" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft kümesi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq sunucular dosyası" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "hiçbiri" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "smartdns alan adı seti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft seti" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound reklam engelleme listesi" + +#~ msgid "AdBlock on %s only" +#~ msgstr "Yalnızca %s'de AdBlock" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "Reklam Engellemeyi belirli bir dnsmasq örneğiyle (%sdaha fazla bilgi%s) " +#~ "sınırlandırabilirsiniz." + +#~ msgid "Force Re-Download" +#~ msgstr "Yeniden İndirmeye Zorla" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "%s engelleme listelerini yeniden indirmeye zorla" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "İzin Verilen Alan URL'leri" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "İzin Verilen ve Engellenen Listeler Yönetimi" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Engellenen Alan URL'leri" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Engellenen Barındırma URL'leri" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "/tmp/simple-adblock.log için hata ayıklama çıktısını etkinleştirir." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "luci-app-simple-adblock için UCI ve dosya erişimi verin" + +#~ msgid "Simple AdBlock" +#~ msgstr "Simple AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Basit Reklam Engelleyici - Yapılandırma" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Basit Reklam Engelleyici - Durum" + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "İzin verilecek alan listelerinin URL'leri." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "Engellenecek alan listelerinin URL'leri." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "Engellenecek ana bilgisayar listelerinin URL'leri." + +#~ msgid "disabled" +#~ msgstr "devre dışı" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "dnsmasq ipset desteği etkinleştirildi, ancak dnsmasq kurulu değil veya " +#~ "kurulu dnsmasq ipset desteklemiyor" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "dnsmasq ipset desteği etkinleştirildi, ancak ipset kurulu değil veya " +#~ "kurulu ipset '%s' türünü desteklemiyor" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "dnsmasq nft kümesi desteği etkinleştirildi, ancak dnsmasq kurulu değil " +#~ "veya kurulu dnsmasq nft kümesini desteklemiyor" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "dnsmasq nft kümeleri desteği etkinleştirildi, ancak nft kurulu değil" + +#~ msgid "failed to access shared memory" +#~ msgstr "paylaşılan belleğe erişilemedi" + +#~ msgid "failed to create '%s' file" +#~ msgstr "'%s' dosyası oluşturulamadı" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "engelleme listesi oluşturulamadı veya DNS çözümleyiciyi yeniden " +#~ "başlatamadı" + +#~ msgid "failed to create compressed cache" +#~ msgstr "sıkıştırılmış önbellek oluşturulamadı" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "%s dosyası için dizin oluşturulamadı" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "çıktı/önbellek/gzip dosya dizini oluşturulamadı" + +#~ msgid "failed to download" +#~ msgstr "indirme başarısız" + +#~ msgid "failed to download Config Update file" +#~ msgstr "Yapılandırma Güncelleme dosyası indirilemedi" + +#~ msgid "failed to format data file" +#~ msgstr "veri dosyası biçimlendirilemedi" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "'%s' , '%s' konumuna taşınamadı" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "geçici veri dosyası '%s' konumuna taşınamadı" + +#~ msgid "failed to optimize data file" +#~ msgstr "veri dosyası optimize edilemedi" + +#~ msgid "failed to parse" +#~ msgstr "ayrıştırılamadı" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "Yapılandırma Güncelleme dosyası ayrıştırılamadı" + +#~ msgid "failed to process allow-list" +#~ msgstr "izin listesi işlenemedi" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "DNS çözümleyicisi yeniden yüklenemedi/yeniden başlatılamadı" + +#~ msgid "failed to remove temporary files" +#~ msgstr "geçici dosyalar kaldırılamadı" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "DNS çözümleyicisi yeniden başlatılamadı/yeniden yüklenemedi" + +#~ msgid "failed to sort data file" +#~ msgstr "veri dosyası sıralanamadı" + +#~ msgid "failed to stop %s" +#~ msgstr "%s durdurulamadı" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "sıkıştırılmış önbelleği açma başarısız oldu" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "cihazda HTTPS/SSL desteği yok" + +#~ msgid "some recommended packages are missing" +#~ msgstr "tavsiye edilen bazı paketler eksik" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "harici dnsmasq yapılandırma dosyası kullanımı algılandı, lütfen '%s' " +#~ "seçeneğini '%s' olarak ayarlayın" + +#~ msgid "Version: %s" +#~ msgstr "Sürüm: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "%s hizmeti WAN ağ geçidini bulamadı!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "'%s' için dizin oluşturulamıyor" + +#~ msgid "Downloading" +#~ msgstr "İndiriliyor" + +#~ msgid "%s Error: %s" +#~ msgstr "%s Hata: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s Hata: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "%s etki alanını içeren önbellek dosyası bulundu." + +#~ msgid "Collected Errors" +#~ msgstr "Toplanan Hatalar" + +#~ msgid "Configuration" +#~ msgstr "Yapılandırma" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ Ek Ana Bilgisayarlar" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ Yapılandırması" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ipset" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft Set" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ Sunucuları Dosyası" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "Açılışta başlatma için gecikme (saniye cinsinden)" + +#~ msgid "Info" +#~ msgstr "Bilgi" + +#~ msgid "Loading" +#~ msgstr "Yükleniyor" + +#~ msgid "Message" +#~ msgstr "İleti" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "Adblock listesini oluşturmak için DNS çözümleme seçeneğini seçin, " +#~ "ayrıntılar için %sREADME%s bakın." + +#~ msgid "Run service after set delay on boot." +#~ msgstr "Önyüklemede gecikme ayarlandıktan sonra hizmeti çalıştırın." + +#~ msgid "Service Status [%s %s]" +#~ msgstr "Hizmet Durumu [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Simple AdBlock Ayarları" + +#~ msgid "Success" +#~ msgstr "Başarılı" + +#~ msgid "Task" +#~ msgstr "Görev" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Unbound AdBlock Listesi" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP Seti" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "DNSMASQ NFT Seti" diff --git a/applications/luci-app-adblock-fast/po/uk/adblock-fast.po b/applications/luci-app-adblock-fast/po/uk/adblock-fast.po new file mode 100644 index 0000000000..0033f9ca16 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/uk/adblock-fast.po @@ -0,0 +1,775 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-04-01 18:18+0000\n" +"Last-Translator: Ievgen Ievgen <jony057dev@gmail.com>\n" +"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/uk/>\n" +"Language: uk\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s зараз вимикнено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s не встановлено, або не знайдено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Дія" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Активне" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "Швидкий AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock на всіх екземплярах" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "AdBlock у вибраних екземплярах" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "Швидкий AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "Швидкий AdBlock - дозволені та заблоковані домени" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "Швидкий AdBlock - дозволені та заблоковані списки URL-адрес" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "Швидкий AdBlock - Налаштування" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "Швидкий AdBlock - Статус" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Додавання записів IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Додайте записи IPv6 до block-list." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Розширена Конфігурація" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Дозволити" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Дозволені домени" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "Спроба створити стислий кеш блок-списків у постійній пам'яті." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Автоматичне оновлення конфігурації" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Базова конфігурація" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Блок" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Заблоковані домени" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Блокування %s доменів (з %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "Кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "Файл кешу" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Знайдено файл кешу." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "Не вдається виявити вільну оперативну пам'ять" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "Стислий кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Створено файл стисненого кешу." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Знайдено файл стисненого кешу." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Помилка перевірки конфігурації (%s)!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Контролює детальність системного журналу та консольного виводу." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Повторна спроба завантаження curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Максимальний розмір файлу curl (у байтах)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS Служба" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Параметр розпізнавання DNS, див. %sREADME%s для отримання деталей." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Каталог для стисненого файлу кешу" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "Каталог для стисненого кеш-файлу блок-списків у постійній пам'яті." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Вимкнути" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Вимкнути дебаггінг" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Вимкнено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Вимкнення служби %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL-адреса файлу конфігурації Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Не додавати записи IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Не зберігати стиснений кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Не використовувати одночасну обробку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Тайм-аут завантаження (у секундах)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Списки для завантаження" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Увімкнути" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Увімкнути дебаггінг" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "Дозволяє виведення дебагу до файлу /tmp/adblock-fast.log." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Увімкнення служби %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Помилка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "Виникли помилки, будь ласка, перевірте %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Невдача" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Не вдалося отримати доступ до спільної пам'яті" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Не вдалося створити файл '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "Не вдалося створити список блокування або перезапустити DNS-резолвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "Не вдалося створити стиснений кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "Не вдалося створити каталог для файлу %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "Не вдалося створити каталог файлів output/cache/gzip" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "Не вдалося виявити формат %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "Не вдалося завантажити %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "Не вдалося завантажити файл оновлення конфігурації" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "Не вдалося відформатувати файл даних" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "Не вдалося перемістити '%s' на '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "Не вдалося перемістити тимчасовий файл даних до '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "Не вдалося оптимізувати файл даних" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "Не вдалося розпарсити %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "Не вдалося розпарсити файл оновлення конфігурації" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "Не вдалося обробити список дозволів" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "Не вдалося перезавантажити/перезапустити DNS-резолвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "Не вдалося видалити тимчасові файли" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "Не вдалося перезапустити/перезавантажити DNS-резолвер" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "Не вдалося відсортувати файл даних" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "Не вдалося запустити" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "Не вдалося зупинити %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "Не вдалося розпакувати стиснений кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "Примусове використання портів DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Примусове використання DNS-портів:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Примусове перезавантаження" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Примусове використання DNS маршрутизатора" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Ввімкнути DNS-сервер маршрутизатора на всіх локальних пристроях" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "Примусове перезавантаження списків блокування %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Змушує маршрутизатор використовувати DNS на локальних пристроях, також " +"відомий як перехоплення DNS." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" +"Вільної оперативної пам'яті (%s) недостатньо для обробки всіх увімкнених " +"блок-списків" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "Надати UCI та доступ до файлів для luci-app-adblock-fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 підтримка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Якщо curl встановлено і виявлено, він не буде завантажувати файли, більші за " +"цей розмір." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Якщо curl встановлено і виявлено, він буде повторювати спроби завантаження " +"багато разів після тайм-ауту/помилки." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Окремі домени що повинні бути дозволені." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Блокування окремих доменів." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "Неправильний каталог стисненого кешу '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "Світлодіод для індикації стану" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Запускати завантаження та обробку всіх списків одночасно, скорочуючи час " +"запуску сервісу." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Дозволити локальним пристроям використовувати власні DNS-сервери, якщо вони " +"встановлені" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "Не використовувати AdBlock на SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "Не використовувати AdBlock на dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "Пристрій не підтримує HTTPS/SSL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "Не увімкнено списки блокування URL-адрес та заблокованих доменів" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Не встановлено або не знайдено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Налаштування детальності виводу" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "Пауза" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "Пауза %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Виконати оновлення конфігурації перед завантаженням списків " +"блокування/дозволів." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "" +"Виберіть світлодіод, який ще не використовується у %sSystem LED " +"Configuration%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "Виберіть екземпляр(и) SmartDNS для блокування реклами" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "Виберіть екземпляр(и) dnsmasq для блокування AdBlocking" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Зверніть увагу, що %s не підтримується в цій системі." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Списки обробки" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "Завантажити знову" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Перезапуск" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Керування службою" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Помилки служби" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Стан служби" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Попередження служби" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Одночасна обробка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "Розмір" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "Розмір: %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Деякі результати" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "Деякі рекомендовані пакунки відсутні" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Запустити" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Запуск" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Запуск служби %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "Статус" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Зупинити" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Зупинити завантаження, якщо воно зупинилося на задану кількість секунд." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Зупинено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Зупинка служби %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Зберігати стиснений кеш" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Зберігати стислий файл кешу на роутері" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Подавити вивід" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s не вдалося виявити WAN-шлюз" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"Підтримка dnsmasq ipset увімкнена, але dnsmasq або не встановлено, або " +"встановлений dnsmasq не підтримує ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"Підтримка dnsmasq ipset увімкнена, але ipset або не встановлено, або " +"встановлений ipset не підтримує тип '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"Увімкнено підтримку набору dnsmasq nft, але dnsmasq або не встановлено, або " +"встановлено dnsmasq, який не підтримує набір nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "У dnsmasq підтримку наборів nft увімкнено, але nft не встановлено" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL до зовнішнього конфігураційного файлу dnsmasq, докладніше див. у " +"%sREADME%." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" +"URL-адреси файлів, що містять списки, які потрібно дозволити або заблокувати." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "Невідомо" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "Невідома помилка" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "Невідоме попередження" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "Використовуйте AdBlocking на екземплярі(ах) SmartDNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "Використовуйте AdBlocking на екземплярі(ах) dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" +"Виявлено використання зовнішнього конфігураційного файлу dnsmasq, будь " +"ласка, встановіть опцію '%s' на '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Використовувати одночасну обробку" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Детальний вивід" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "Версія" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "Версія %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Застереження" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" +"Ви можете обмежити блокування реклами для певного(их) екземпляра(ів) " +"SmartDNS (%smore information%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" +"Ви можете обмежити блокування AdBlocking до певного(их) екземпляра(ів) " +"dnsmasq (%smore information%s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq додаткові хости" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "Конфігурація dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "IP-набір dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft набір" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "Файл серверів dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "нічого" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "набір доменів smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "IP-набір smartdns" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "Набір smartdns nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "неприв'язаний список adblock" + +#~ msgid "AdBlock on %s only" +#~ msgstr "Тільки на %s" + +#~ msgid "Configuration" +#~ msgstr "Конфігурація" + +#~ msgid "Info" +#~ msgstr "Інформація" + +#~ msgid "Loading" +#~ msgstr "Завантаження" + +#~ msgid "Message" +#~ msgstr "Повідомлення" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "Налаштування «Simple AdBlock»" + +#~ msgid "Enable/Start" +#~ msgstr "Увімкнути/Запустити" + +#~ msgid "Stop/Disable" +#~ msgstr "Зупинити/Вимкнути" diff --git a/applications/luci-app-adblock-fast/po/vi/adblock-fast.po b/applications/luci-app-adblock-fast/po/vi/adblock-fast.po new file mode 100644 index 0000000000..c139ceee78 --- /dev/null +++ b/applications/luci-app-adblock-fast/po/vi/adblock-fast.po @@ -0,0 +1,898 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-02-02 12:51+0000\n" +"Last-Translator: Hứa Đức Quân <huaducquan14@gmail.com>\n" +"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsadblock-fast/vi/>\n" +"Language: vi\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s hiện đang bị vô hiệu hóa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s chưa được cài đặt hoặc không tìm thấy" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "Hành động" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "Kích hoạt" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "AdBlock trên tất cả" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - Cấu hình" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "Thêm các mục IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "Thêm các mục IPv6 vào danh sách chặn." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "Cấu hình nâng cao" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "Cho phép" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "Các miền được cho phép" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "Cố gắng tạo bộ nhớ đệm nén của danh sách chặn trong bộ nhớ cố định." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "Cập nhật cấu hình tự động" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "Cấu hình cơ bản" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "Chặn" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "Đã chặn tên miền" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "Chặn %s miền (với %s)." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "Tìm thấy tệp bộ nhớ đệm." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "Tạo tệp bộ nhớ đệm nén." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "Tìm thấy tệp bộ nhớ đệm nén." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "Kiểm tra cấu hình (%s) thất bại!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "Điều khiển độ chi tiết của nhật ký hệ thống và đầu ra bảng điều khiển." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Thử lại tải xuống curl" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Kích thước tệp tối đa của curl (theo byte)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "Dịch vụ DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "Tùy chọn giải quyết DNS, xem %sREADME%s để biết chi tiết." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "Thư mục cho tệp bộ nhớ đệm nén" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "" +"Thư mục cho tệp bộ nhớ đệm nén của danh sách chặn trong bộ nhớ cố định." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "Vô hiệu hóa" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "Vô hiệu hóa gỡ lỗi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "Vô hiệu hoá" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "Vô hiệu hóa dịch vụ %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "URL tệp cấu hình Dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "Không thêm các mục IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "Không lưu trữ bộ nhớ đệm nén" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "Không sử dụng xử lý đồng thời" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "Thời gian chờ tải xuống (theo giây)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "Đang tải xuống danh sách" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "Bật lên" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "Bật gỡ lỗi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "Bật dịch vụ %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "Lỗi" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "Thất bại" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "Truy cập bộ nhớ được chia sẻ thất bại" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "Tạo file '%s' thất bại" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "Bắt buộc cổng DNS:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "Bắt buộc tải lại" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "Force Router DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "Force Router DNS server đến tất cả thiết bị nội bộ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "" +"Force Router DNS của bộ định tuyến trên các thiết bị cục bộ, còn được gọi là " +"chiếm quyền điều khiển DNS." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "Hỗ trợ IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "" +"Nếu curl được cài đặt và phát hiện, nó sẽ không tải xuống các tệp lớn hơn số " +"này." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "" +"Nếu curl được cài đặt và phát hiện, nó sẽ thử lại tải xuống nhiều lần này " +"khi hết thời gian/chạy thất bại." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "Các miền riêng lẻ được cho phép." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "Các miền riêng lẻ bị chặn." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED để chỉ trạng thái" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "" +"Khởi chạy tải xuống và xử lý tất cả các danh sách đồng thời, giảm thời gian " +"khởi động dịch vụ." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "" +"Cho phép các thiết bị cục bộ sử dụng máy chủ DNS của riêng chúng nếu được đặt" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "Không được cài đặt hoặc không tìm thấy" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "Cài đặt độ chi tiết đầu ra" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "" +"Thực hiện cập nhật cấu hình trước khi tải xuống các danh sách chặn/cho phép." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "Chọn LED chưa được sử dụng trong %sCấu hình LED Hệ thống%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "Lưu ý rằng %s không được hỗ trợ trên hệ thống này." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "Đang xử lý danh sách" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "Đang khởi động lại" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "Điều khiển dịch vụ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "Lỗi dịch vụ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "Trạng thái dịch vụ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "Cảnh báo dịch vụ" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "Xử lý đồng thời" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "Một số đầu ra" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "Bắt đầu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "Đang bắt đầu" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "Bắt đầu dịch vụ %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "Dừng" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "Dừng tải xuống nếu nó bị treo trong số giây đã đặt." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "Đã dừng" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "Dừng dịch vụ %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "Lưu trữ bộ nhớ đệm nén" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "Lưu trữ tệp bộ nhớ đệm nén trên bộ định tuyến" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "Ngăn chặn đầu ra" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "" +"URL tới tệp cấu hình dnsmasq bên ngoài, xem %sREADME%s để biết chi tiết." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "Sử dụng xử lý đồng thời" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "Đầu ra chi tiết" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "Cảnh báo" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "các máy chủ bổ sung của dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "cấu hình dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "ipset của dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "bộ nft của dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "tệp máy chủ của dnsmasq" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "không" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "danh sách chặn quảng cáo không bị ràng buộc" + +#~ msgid "Force Re-Download" +#~ msgstr "Bắt buộc tải lại" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "Bắt buộc tải lại %s danh sách chặn" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "Các URL miền được cho phép" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "Quản lý danh sách được cho phép và bị chặn" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "Các URL kiểu AdBlockPlus bị chặn" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "Các URL miền bị chặn" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "Các URL máy chủ bị chặn" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "Cho phép đầu ra gỡ lỗi đến /tmp/simple-adblock.log." + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "Cấp quyền truy cập UCI và tệp cho luci-app-simple-adblock" + +#~ msgid "Simple AdBlock" +#~ msgstr "Chặn quảng cáo đơn giản" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Chặn quảng cáo đơn giản - Cấu hình" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Chặn quảng cáo đơn giản - Trạng thái" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "" +#~ "Các URL tới các danh sách các miền được định dạng kiểu AdBlockPlus để bị " +#~ "chặn." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "Các URL tới các danh sách các miền được cho phép." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "Các URL tới các danh sách các miền bị chặn." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "Các URL tới các danh sách các máy chủ bị chặn." + +#~ msgid "config (%s) validation failure!" +#~ msgstr "cấu hình (%s) xác thực thất bại!" + +#~ msgid "disabled" +#~ msgstr "Đã vô hiệu hóa" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "hỗ trợ ipset của dnsmasq được bật, nhưng dnsmasq hoặc không được cài đặt " +#~ "hoặc dnsmasq được cài đặt không hỗ trợ ipset" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "Hỗ trợ ipset của dnsmasq được bật, nhưng ipset hoặc không được cài đặt " +#~ "hoặc ipset được cài đặt không hỗ trợ loại '%s'" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "Hỗ trợ bộ nft của dnsmasq được bật, nhưng dnsmasq hoặc không được cài đặt " +#~ "hoặc dnsmasq được cài đặt không hỗ trợ bộ nft" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "" +#~ "Hỗ trợ các bộ nft của dnsmasq được bật, nhưng nft không được cài đặt" + +#~ msgid "failed to access shared memory" +#~ msgstr "không thể truy cập bộ nhớ chia sẻ" + +#~ msgid "failed to create '%s' file" +#~ msgstr "không thể tạo tệp '%s'" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "" +#~ "không thể tạo danh sách chặn hoặc khởi động lại trình giải quyết DNS" + +#~ msgid "failed to create compressed cache" +#~ msgstr "không thể tạo bộ nhớ đệm nén" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "không thể tạo thư mục cho tệp %s" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "không thể tạo thư mục tệp đầu ra/bộ nhớ đệm/gzip" + +#~ msgid "failed to download" +#~ msgstr "không thể tải xuống" + +#~ msgid "failed to download Config Update file" +#~ msgstr "không thể tải xuống tệp Cập nhật Cấu hình" + +#~ msgid "failed to format data file" +#~ msgstr "không thể định dạng tệp dữ liệu" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "không thể di chuyển '%s' đến '%s'" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "không thể di chuyển tệp dữ liệu tạm thời đến '%s'" + +#~ msgid "failed to optimize data file" +#~ msgstr "không thể tối ưu hóa tệp dữ liệu" + +#~ msgid "failed to parse" +#~ msgstr "không thể phân tích cú pháp" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "không thể phân tích cú pháp tệp Cập nhật Cấu hình" + +#~ msgid "failed to process allow-list" +#~ msgstr "không thể xử lý danh sách cho phép" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "không thể tải lại/khởi động lại trình giải quyết DNS" + +#~ msgid "failed to remove temporary files" +#~ msgstr "không thể xóa các tệp tạm thời" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "không thể khởi động lại/tải lại trình giải quyết DNS" + +#~ msgid "failed to sort data file" +#~ msgstr "không thể sắp xếp tệp dữ liệu" + +#~ msgid "failed to stop %s" +#~ msgstr "không thể dừng %s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "không thể giải nén bộ nhớ đệm nén" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "không có hỗ trợ HTTPS/SSL trên thiết bị" + +#~ msgid "some recommended packages are missing" +#~ msgstr "một số gói được khuyến nghị bị thiếu" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s không thể phát hiện cổng WAN" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "" +#~ "phát hiện sử dụng tệp cấu hình dnsmasq bên ngoài, vui lòng đặt tùy chọn " +#~ "'%s' thành '%s'" + +#~ msgid "Version: %s" +#~ msgstr "Phiên bản: %s" + +#~ msgid "Configuration" +#~ msgstr "Cấu hình" diff --git a/applications/luci-app-adblock-fast/po/zh_Hans/adblock-fast.po b/applications/luci-app-adblock-fast/po/zh_Hans/adblock-fast.po new file mode 100644 index 0000000000..d6b8e152fb --- /dev/null +++ b/applications/luci-app-adblock-fast/po/zh_Hans/adblock-fast.po @@ -0,0 +1,1102 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2018. +# Zheng Qian <sotux82@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: \n" +"PO-Revision-Date: 2024-04-11 03:16+0000\n" +"Last-Translator: 大王叫我来巡山 <hamburger2048@users.noreply.hosted.weblate." +"org>\n" +"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsadblock-fast/zh_Hans/>\n" +"Language: zh_Hans\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.5-dev\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s 当前已禁用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s 未安装或未找到" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "操作" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "活跃" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "在所有实例上实施广告拦截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "选定实例上的 AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - 黑白域名" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - 黑白列表 URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast -配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - 状态" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "添加 IPv6 条目" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "将 IPv6 条目添加到阻止列表。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "高级配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "允许" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "允许的域" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "尝试在非易失性内存中创建压缩的阻止列表缓存。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "自动配置更新" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "基本配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "拦截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "已拦截域名" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "拦截 %s 个域名 (用 %s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "缓存文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "找到了缓存文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "无法检测剩余内存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "压缩的缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "创建了压缩的缓存文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "找到压缩的缓存文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "配置(%s)验证失败!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "控制系统日志和控制台输出的详细程度。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl 下载重试" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl 最大文件尺寸(单位 bytes)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS 服务" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS 解析选项,详情见 %sREADME%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "已压缩缓存文件的目录" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "保存持久化内存中拦截列表已压缩缓存文件的目录。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "禁用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "禁用调试" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "已禁用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "禁用 %s 服务中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "Dnsmasq 配置文件 URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "不要添加 IPv6 条目" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "不要存储压缩的缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "不要使用并行处理" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "下载超时(秒)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "下载列表中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "启用调试" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "将调试信息输出到 tmp/adblock-fast.log 文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "启用 %s 服务中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "错误" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "遇到错误,请检查 %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "失败" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "访问共享内存失败" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "未能创建 '%s' 文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "未能创建拦截列表或重启 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "未能创建压缩缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "未能为 %s 文件创建目录" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "未能创建 output/cache/gzip 文件目录" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "检测 %s 格式失败" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "未能下载 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "未能下载配置更新文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "未能格式化数据文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "未能将 '%s' 移至 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "未能将临时文件移至 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "未能优化数据文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "解析 %s 格式失败" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "未能解析配置更新文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "未能处理白名单" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "未能重新加载/重启 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "未能删除临时文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "未能重启/重新加载 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "未能对数据文件进行排序" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "启动失败" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "未能停止 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "未能解包压缩的缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "强制 DNS 端口" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "强制使用特定 DNS 端口:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "强制刷新" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "强制使用路由器 DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "强制所有本地设备使用路由器 DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "强制重新下载 %s 个拦截清单" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "强制在本地设备上使用路由器 DNS,也称为 DNS 劫持。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "剩余内存(%s)不足以处理所有启用的黑名单列表" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "授予 luci-app-adblock-fast 模块UCI 和文件访问权限" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "IPv6 支持" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "如果安装了 curl 且被检测到,它不会下载超过这个大小的文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "如果安装并检测到 curl,则会在超时/失败时重试指定次数。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "允许使用单个域。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "单个域将被阻止。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "无效的压缩缓存目录 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED 指示状态" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "同时开始所有的列表下载和处理任务,减少启动时间。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "如果进行了设置,允许本地设备使用自己的 DNS 服务器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "SmartDNS 上没有 Adblock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "dnsmasq 上无 AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "设备不支持 HTTPS/SSL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "未启用黑名单网址和黑名单" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "未安装或未找到" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "输出详细程度设置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "暂停" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "正在暂停 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "在下载阻止/允许列表之前执行配置更新。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "选取尚未在 %s 系统 LED 配置%s 中使用的 LED。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "选择广告拦截的 SmartDNS 实例" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "选择广告拦截的 dnsmasq 实例" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "请注意,此系统不支持%s。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "处理列表中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "已重新下载" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "正在重新启动" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "服务控制" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "服务出错" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "服务状态" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "服务警告" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "并行处理" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "大小" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "大小:%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "一些输出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "缺少某些推荐包" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "启动" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "正在启动" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "启动 %s 服务中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "状态" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "停止" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "如果下载停顿了指定的秒数则停止下载。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "已停止" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "停止 %s 服务中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "存储压缩的缓存" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "将压缩的缓存文件存储在路由器上" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "抑制输出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s 未能发现 WAN 网关" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"已启用 dnsmasq ipset 支持,但要么没安装 dnsmasq ,要么已安装的 dnsmasq 不支" +"持 ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"已启用 dnsmasq ipset 支持,但要么没安装 ipset,要么已安装的 ipset 不支持 " +"'%s' 类型" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"已启用 dnsmasq nft set 支持,但要么没安装 dnsmasq,要么已安装的 dnsmasq 不支" +"持 nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "已启用 dnsmasq nft sets 支持,但未安装 nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "外部 dnsmasq 配置文件 URL,详情见 %sREADME%s." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "包含黑白名单文件的 URL 地址。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "未知" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "未知错误" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "未知警报" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "在 SmartDNS 实例上使用广告拦截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "在 dnsmasq 实例上使用广告拦截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "检测到使用了外部 dnsmasq 配置文件,请将 '%s' 选项设为 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "使用并行处理" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "详细输出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "版本" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "版本 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "警告" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "你可以只在特定 SmartDNS 实例上进行广告拦截(%更多信息%s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "你可以只在特定 dnsmasq 实例上进行广告拦截(%更多信息%s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq 附加 hosts" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq 配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ip集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft 集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq 服务器文件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "无" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "smartdns 域名集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ip集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft 集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound 广告拦截列表" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "AdBlock on %s only" +#~ msgstr "仅在 %s 上实施广告拦截" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific SmartDNS instance(s) (%smore " +#~ "information%s)." +#~ msgstr "你可以只在特定 SmarDNS 实例上拦截广告(%s更多信息%s)。" + +#~ msgid "" +#~ "You can limit the AdBlocking to a specific dnsmasq instance(s) (%smore " +#~ "information%s)." +#~ msgstr "" +#~ "你可以将广告拦截限制到特定的一个或多个 dnsmasq 实例(%s更多信息%s)。" + +#~ msgid "Force Re-Download" +#~ msgstr "强制重新下载" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "强制重新下载 %s 拦截列表" + +#~ msgid "Errors encountered, please check the %sREADME%s!" +#~ msgstr "遇到错误,请检查 %sREADME%s!" + +#~ msgid "Failed to parse" +#~ msgstr "解析失败" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "允许的网域网址" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "允许和禁止列表管理" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "拦截 AdblockPlus 样式的 URL" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "封锁的网域网址" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "封锁的主机网址" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "将调试输出到 /tmp/simple-adblock.log。" + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "为luci-app-simple-adblock授予UCI和文件访问权限" + +#~ msgid "Simple AdBlock" +#~ msgstr "简易 AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - 配置" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - 状态" + +#~ msgid "URLs to lists of AdBlockPlus-style formatted domains to be blocked." +#~ msgstr "AdBlockPlus 样式域名拦截列表的 URL." + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "允许的域列表的URL。" + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "阻止的域列表的 URL." + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "阻止的主机列表的 URL。" + +#~ msgid "config (%s) validation failure!" +#~ msgstr "配置 (%s) 验证失败!" + +#~ msgid "disabled" +#~ msgstr "已禁用" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "dnsmasq ip 集支持已开启,但 dnsmasq 要么没安装或安装的 dnsmasq 不支持 ip " +#~ "集" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "dnsmasq ip 集支持已开启,但 ip 集要么没安装或安装的 ip 集不支持 '%s' 类型" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "dnsmasq nft 集支持已开启,但 dnsmasq 要么没安装或安装的 dnsmasq 不支持 " +#~ "nft 集" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "dnsmasq nft 集支持已开启,但 nft 未安装" + +#~ msgid "failed to access shared memory" +#~ msgstr "无法访问共享内存" + +#~ msgid "failed to create '%s' file" +#~ msgstr "无法创建“%s”文件" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "无法创建阻止列表或重新启动DNS解析器" + +#~ msgid "failed to create compressed cache" +#~ msgstr "创建压缩缓存失败" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "为 %s 文件创建目录失败" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "未能创建 output/cache/gzip 文件目录" + +#~ msgid "failed to download" +#~ msgstr "下载失败" + +#~ msgid "failed to download Config Update file" +#~ msgstr "下载配置更新文件失败" + +#~ msgid "failed to format data file" +#~ msgstr "格式化数据文件失败" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "未能将“%s”移至“%s”" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "无法将临时数据文件移动到“%s”" + +#~ msgid "failed to optimize data file" +#~ msgstr "无法优化数据文件" + +#~ msgid "failed to parse" +#~ msgstr "解析失败" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "无法解析配置更新文件" + +#~ msgid "failed to process allow-list" +#~ msgstr "无法处理允许清单" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "无法重新加载/重新启动DNS解析器" + +#~ msgid "failed to remove temporary files" +#~ msgstr "无法删除临时文件" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "无法重新启动/重新加载DNS解析器" + +#~ msgid "failed to sort data file" +#~ msgstr "无法排序数据文件" + +#~ msgid "failed to stop %s" +#~ msgstr "无法停止%s" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "无法解压缩压缩缓存" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "设备上没有 HTTPS/SSL 支持" + +#~ msgid "some recommended packages are missing" +#~ msgstr "缺少某些推荐的包" + +#~ msgid "the %s failed to discover WAN gateway" +#~ msgstr "%s 未能发现 WAN 网关" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "检测到使用了外部 dnsmasq 配置文件,请将 '%s' 选项设为 '%s'" + +#~ msgid "Version: %s" +#~ msgstr "版本:%s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "%s service 未能发现 WAN 网关!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "无法为 '%s' 创建目录" + +#~ msgid "Downloading" +#~ msgstr "下载中" + +#~ msgid "%s Error: %s" +#~ msgstr "%s 错误: %s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s 错误: %s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "找到包含%s个域名的缓存文件。" + +#~ msgid "Collected Errors" +#~ msgstr "收集的错误" + +#~ msgid "Configuration" +#~ msgstr "配置" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ 的额外主机名" + +#~ msgid "DNSMASQ Config" +#~ msgstr "DNSMASQ 配置" + +#~ msgid "DNSMASQ Ipset" +#~ msgstr "DNSMASQ Ip集" + +#~ msgid "DNSMASQ Nft Set" +#~ msgstr "DNSMASQ Nft 集" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ Servers 文件" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "开机启动延迟(秒)" + +#~ msgid "Info" +#~ msgstr "信息" + +#~ msgid "Loading" +#~ msgstr "加载中" + +#~ msgid "Message" +#~ msgstr "消息" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "选择DNS解析选项以为其创建广告阻止列表,有关详细信息,请参见%sREADME%s。" + +#~ msgid "Run service after set delay on boot." +#~ msgstr "系统启动后延后指定时间再启动本服务。" + +#~ msgid "Service Status [%s %s]" +#~ msgstr "服务状态 [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "简易 AdBlock 设置" + +#~ msgid "Success" +#~ msgstr "成功完成" + +#~ msgid "Task" +#~ msgstr "任务" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "Ubound AdBlock 列表" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP 组" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "DNSMASQ NFT 集合" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s正在阻止%s域(包含%s)。" + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "列入黑名单的域名 URL" + +#~ msgid "Blacklisted Domains" +#~ msgstr "列入黑名单的域名" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "列入黑名单的主机 URL" + +#~ msgid "Individual domains to be blacklisted." +#~ msgstr "黑名单中的域名。" + +#~ msgid "Individual domains to be whitelisted." +#~ msgstr "白名单中的域名。" + +#~ msgid "URLs to lists of domains to be blacklisted." +#~ msgstr "列入黑名单的域名列表 URL。" + +#~ msgid "URLs to lists of domains to be whitelisted." +#~ msgstr "列入白名单的域名列表 URL。" + +#~ msgid "URLs to lists of hosts to be blacklisted." +#~ msgstr "列入黑名单的主机名列表 URL。" + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "白名单和黑名单管理" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "白名单域名 URL" + +#~ msgid "Whitelisted Domains" +#~ msgstr "白名单域名" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the" +#~ msgstr "选择 DNS 解析选项以为其创建广告阻止列表,请参见" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "选择尚未使用的 LED" + +#~ msgid "Please note that" +#~ msgstr "请注意" + +#~ msgid "README" +#~ msgstr "README" + +#~ msgid "System LED Configuration" +#~ msgstr "系统 LED 配置" + +#~ msgid "for details." +#~ msgstr "详细信息。" + +#~ msgid "is not supported on this system." +#~ msgstr "在该系统上不受支持。" + +#~ msgid "Enable/Start" +#~ msgstr "启用/启动" + +#~ msgid "Reload" +#~ msgstr "重新载入" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "服务已禁用/已停止" + +#~ msgid "Service is enabled/started" +#~ msgstr "服务已启用/已启动" + +#~ msgid "Service started with error" +#~ msgstr "服务启动时出错" + +#~ msgid "Stop/Disable" +#~ msgstr "停止/禁用" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "控制系统日志和控制台输出的详细程度" + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "强制路由器 DNS 在本地设备上使用,也称为 DNS 劫持" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "要列入黑名单的单独域名" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "要列入白名单的单独域名" + +#~ msgid "Start Simple Adblock service" +#~ msgstr "启动简单 Adblock 服务" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "黑名单域名列表的 URL" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "白名单域名列表的 URL" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "黑名单主机列表的 URL" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log" +#~ msgstr "启用到 /tmp/simple-adblock.log 的调试输出" + +#~ msgid "Run service after set delay on boot" +#~ msgstr "开机后延迟多少秒运行服务" + +#~ msgid "Stop the download if it is stalled for set number of seconds" +#~ msgstr "如果下载停滞设定的秒数后,则停止下载" diff --git a/applications/luci-app-adblock-fast/po/zh_Hant/adblock-fast.po b/applications/luci-app-adblock-fast/po/zh_Hant/adblock-fast.po new file mode 100644 index 0000000000..207b1e389f --- /dev/null +++ b/applications/luci-app-adblock-fast/po/zh_Hant/adblock-fast.po @@ -0,0 +1,1034 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2018. +# +msgid "" +msgstr "" +"PO-Revision-Date: 2023-12-19 15:10+0000\n" +"Last-Translator: Hulen <shift0106@gmail.com>\n" +"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsadblock-fast/zh_Hant/>\n" +"Language: zh_Hant\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.3\n" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:228 +msgid "%s is currently disabled" +msgstr "%s 目前已禁用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:106 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:51 +msgid "%s is not installed or not found" +msgstr "%s 未安裝或找不到" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:97 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:98 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:99 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:100 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:101 +msgid "-" +msgstr "-" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:519 +msgid "Action" +msgstr "操作" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:116 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:61 +msgid "Active" +msgstr "已啓用" + +#: applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json:3 +msgid "AdBlock Fast" +msgstr "AdBlock Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:199 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:263 +msgid "AdBlock on all instances" +msgstr "在所有實例上實施廣告攔截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:200 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:264 +msgid "AdBlock on select instances" +msgstr "選取實例上的 AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:22 +msgid "AdBlock-Fast" +msgstr "AdBlock-Fast" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:470 +msgid "AdBlock-Fast - Allowed and Blocked Domains" +msgstr "AdBlock-Fast - 黑白網域名稱" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:494 +msgid "AdBlock-Fast - Allowed and Blocked Lists URLs" +msgstr "AdBlock-Fast - 黑白清單網址" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:59 +msgid "AdBlock-Fast - Configuration" +msgstr "AdBlock-Fast - 設定" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:119 +msgid "AdBlock-Fast - Status" +msgstr "AdBlock-Fast - 狀態" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:372 +msgid "Add IPv6 entries" +msgstr "加入 IPv6 項目" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:369 +msgid "Add IPv6 entries to block-list." +msgstr "加入 IPv6 項目到封鎖清單。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:63 +msgid "Advanced Configuration" +msgstr "高級配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:520 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Allow" +msgstr "允許" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:478 +msgid "Allowed Domains" +msgstr "允許的網域" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:433 +msgid "" +"Attempt to create a compressed cache of block-list in the persistent memory." +msgstr "嘗試在持久性記憶體中創建區塊列表的壓縮快取。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:357 +msgid "Automatic Config Update" +msgstr "自動組態更新" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:62 +msgid "Basic Configuration" +msgstr "基本配置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:521 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:525 +msgid "Block" +msgstr "攔截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:486 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:87 +msgid "Blocked Domains" +msgstr "封鎖的域名" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:132 +msgid "Blocking %s domains (with %s)." +msgstr "封鎖 %s 個網域 (用 %s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:88 +msgid "Cache" +msgstr "快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:66 +msgid "Cache file" +msgstr "快取檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:158 +msgid "Cache file found." +msgstr "已找到快取檔案。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:195 +msgid "Can't detect free RAM" +msgstr "無法偵測剩餘記憶體" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:68 +msgid "Compressed cache" +msgstr "壓縮的快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:137 +msgid "Compressed cache file created." +msgstr "已建立快取壓縮檔案。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:160 +msgid "Compressed cache file found." +msgstr "找到壓縮的快取文件。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:226 +msgid "Config (%s) validation failure!" +msgstr "設定 (%s) 驗證失敗!" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:330 +msgid "Controls system log and console output verbosity." +msgstr "控制系統日誌和主控台輸出的詳細程度。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:406 +msgid "Curl download retry" +msgstr "Curl 下載重試" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:393 +msgid "Curl maximum file size (in bytes)" +msgstr "Curl 最大的檔案限制(位元)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:144 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:86 +msgid "DNS Service" +msgstr "DNS服務" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:66 +msgid "DNS resolution option, see the %sREADME%s for details." +msgstr "DNS 解析選項,請參考%sREADME%s之詳細。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:444 +msgid "Directory for compressed cache file" +msgstr "已壓縮快取的目錄" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:446 +msgid "" +"Directory for compressed cache file of block-list in the persistent memory." +msgstr "儲存持久化記憶體中攔截清單已壓縮快取檔案的目錄。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:429 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:360 +msgid "Disable" +msgstr "停用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:462 +msgid "Disable Debugging" +msgstr "禁用除錯" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:154 +msgid "Disabled" +msgstr "已停用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:423 +msgid "Disabling %s service" +msgstr "正在停用 %s 服務" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:176 +msgid "Dnsmasq Config File URL" +msgstr "Dnsmasq 設定檔案的網址" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:371 +msgid "Do not add IPv6 entries" +msgstr "不要加入 IPv6 項目" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:436 +msgid "Do not store compressed cache" +msgstr "不存儲壓縮的快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:423 +msgid "Do not use simultaneous processing" +msgstr "不要使用同步處理" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:383 +msgid "Download time-out (in seconds)" +msgstr "下載超時(秒)" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:114 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:57 +msgid "Downloading lists" +msgstr "下載清單" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:410 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:361 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:515 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:459 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:463 +msgid "Enable Debugging" +msgstr "啟用除錯" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:460 +msgid "Enables debug output to /tmp/adblock-fast.log." +msgstr "將偵錯資訊輸出到 tmp/adblock-fast.log 檔案。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:404 +msgid "Enabling %s service" +msgstr "正在啟用 %s 服務" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:58 +msgid "Error" +msgstr "錯誤" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:303 +msgid "Errors encountered, please check the %sREADME%s" +msgstr "遇到錯誤,請檢查 %sREADME%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:60 +msgid "Fail" +msgstr "失敗" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:251 +msgid "Failed to access shared memory" +msgstr "存取共享記憶體失敗" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:247 +msgid "Failed to create '%s' file" +msgstr "未能建立 '%s' 檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:269 +msgid "Failed to create block-list or restart DNS resolver" +msgstr "未能建立攔截清單或重新啟動 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:260 +msgid "Failed to create compressed cache" +msgstr "未能建立壓縮快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:246 +msgid "Failed to create directory for %s file" +msgstr "未能為 %s 檔案建立目錄" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:281 +msgid "Failed to create output/cache/gzip file directory" +msgstr "未能建立 output/cache/gzip 檔案目錄" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:283 +msgid "Failed to detect format %s" +msgstr "偵測 %s 格式失敗" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:276 +msgid "Failed to download %s" +msgstr "未能下載 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:274 +msgid "Failed to download Config Update file" +msgstr "未能下載設定更新檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:255 +msgid "Failed to format data file" +msgstr "未能格式化資料檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:264 +msgid "Failed to move '%s' to '%s'" +msgstr "未能將 '%s' 移至 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:257 +msgid "Failed to move temporary data file to '%s'" +msgstr "未能將臨時檔案移至 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:253 +msgid "Failed to optimize data file" +msgstr "未能最佳化資料檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:278 +msgid "Failed to parse %s" +msgstr "解析 %s 格式失敗" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:277 +msgid "Failed to parse Config Update file" +msgstr "未能解析設定更新檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:254 +msgid "Failed to process allow-list" +msgstr "未能處理白名單" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:272 +msgid "Failed to reload/restart DNS resolver" +msgstr "未能重新載入/重新啟動 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:262 +msgid "Failed to remove temporary files" +msgstr "未能刪除臨時檔案" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:250 +msgid "Failed to restart/reload DNS resolver" +msgstr "未能重新啟動/重新載入 DNS 解析器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:252 +msgid "Failed to sort data file" +msgstr "未能對資料檔案進行排序" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:115 +msgid "Failed to start" +msgstr "啟動失敗" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:271 +msgid "Failed to stop %s" +msgstr "未能停止 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:263 +msgid "Failed to unpack compressed cache" +msgstr "未能解包壓縮的快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:89 +msgid "Force DNS Ports" +msgstr "強制 DNS 連接埠" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:140 +msgid "Force DNS ports:" +msgstr "強制使用DNS端口:" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:113 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:56 +msgid "Force Reloading" +msgstr "強制重新載入中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:318 +msgid "Force Router DNS" +msgstr "強制使用路由器 DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:322 +msgid "Force Router DNS server to all local devices" +msgstr "強制所有本地裝置使用路由器 DNS" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:351 +msgid "Force redownloading %s block lists" +msgstr "強制重新下載 %s 個攔截清單" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:319 +msgid "Forces Router DNS use on local devices, also known as DNS Hijacking." +msgstr "強制在本地裝置上使用路由器 DNS,也稱為 DNS 劫持。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:288 +msgid "Free ram (%s) is not enough to process all enabled block-lists" +msgstr "剩餘記憶體 (%s) 不足以處理所有啟用的攔截清單" + +#: applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json:3 +msgid "Grant UCI and file access for luci-app-adblock-fast" +msgstr "授予 luci-app-adblock-fast 模組 UCI 和檔案存取權限" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:368 +msgid "IPv6 Support" +msgstr "支援 IPv6" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:395 +msgid "" +"If curl is installed and detected, it would not download files bigger than " +"this." +msgstr "如果已安裝並檢測到curl,則不會下載比這個更大的檔案。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:408 +msgid "" +"If curl is installed and detected, it would retry download this many times " +"on timeout/fail." +msgstr "如果已安裝並檢測到curl,則會在逾時/失敗時重試多次下載。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:479 +msgid "Individual domains to be allowed." +msgstr "允許使用單個網域。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:487 +msgid "Individual domains to be blocked." +msgstr "單個網域將被阻擋." + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:193 +msgid "Invalid compressed cache directory '%s'" +msgstr "無效的壓縮快取目錄 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:342 +msgid "LED to indicate status" +msgstr "LED 指示狀態" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:420 +msgid "" +"Launch all lists downloads and processing simultaneously, reducing service " +"start time." +msgstr "同時啟動所有列表下載和處理,從而縮短了服務啟動時間。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:321 +msgid "Let local devices use their own DNS servers if set" +msgstr "如果進行了設定,允許本地裝置使用自己的 DNS 伺服器" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:265 +msgid "No AdBlock on SmartDNS" +msgstr "SmartDNS 上沒有 Adblock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:201 +msgid "No AdBlock on dnsmasq" +msgstr "dnsmasq 上無 AdBlock" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:279 +msgid "No HTTPS/SSL support on device" +msgstr "裝置不支援 HTTPS/SSL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:285 +#, fuzzy +msgid "No blocked list URLs nor blocked-domains enabled" +msgstr "未啟用黑名單網址和黑名單" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:174 +msgid "Not installed or not found" +msgstr "未安裝或未找到" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:329 +msgid "Output Verbosity Setting" +msgstr "輸出詳細程度設定" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:372 +msgid "Pause" +msgstr "暫停" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:367 +msgid "Pausing %s" +msgstr "正在暫停 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:358 +msgid "Perform config update before downloading the block/allow-lists." +msgstr "下載封鎖/允許清單前執行組態更新。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:344 +msgid "Pick the LED not already used in %sSystem LED Configuration%s." +msgstr "選擇 %s系統 LED 組態%s 中尚未使用的 LED。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:293 +msgid "Pick the SmartDNS instance(s) for AdBlocking" +msgstr "選擇廣告攔截的 SmartDNS 實例" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:230 +msgid "Pick the dnsmasq instance(s) for AdBlocking" +msgstr "選擇廣告攔截的 dnsmasq 實例" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:74 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:79 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:84 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:89 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:96 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:103 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:119 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:126 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:135 +msgid "Please note that %s is not supported on this system." +msgstr "請注意:此系統不支援 %s。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:111 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:54 +msgid "Processing lists" +msgstr "處理清單" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:357 +msgid "Redownload" +msgstr "已重新下載" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:112 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:55 +msgid "Restarting" +msgstr "重新啟動中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:470 +msgid "Service Control" +msgstr "服務控制" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:294 +msgid "Service Errors" +msgstr "服務出錯" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:123 +msgid "Service Status" +msgstr "服務狀態" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:200 +msgid "Service Warnings" +msgstr "服務警告" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:418 +msgid "Simultaneous processing" +msgstr "同時處理中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:502 +msgid "Size" +msgstr "大小" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:512 +msgid "Size: %s" +msgstr "大小:%s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:333 +msgid "Some output" +msgstr "一些輸出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:190 +msgid "Some recommended packages are missing" +msgstr "缺少某些推薦套件" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:338 +msgid "Start" +msgstr "啟動" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:110 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:53 +msgid "Starting" +msgstr "開始中" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:332 +msgid "Starting %s service" +msgstr "正在啟動 %s 服務" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:84 +msgid "Status" +msgstr "狀態" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:391 +msgid "Stop" +msgstr "停止" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:384 +msgid "Stop the download if it is stalled for set number of seconds." +msgstr "如果下載停頓了指定的秒數,請停止下載。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:109 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:52 +msgid "Stopped" +msgstr "已停止" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:385 +msgid "Stopping %s service" +msgstr "正在停止 %s 服務" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:437 +msgid "Store compressed cache" +msgstr "存儲壓縮的快取" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:431 +msgid "Store compressed cache file on router" +msgstr "將壓縮的快取文件存儲在路由器上" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:332 +msgid "Suppress output" +msgstr "抑制輸出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:244 +msgid "The %s failed to discover WAN gateway" +msgstr "%s 未能發現 WAN 閘道" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:232 +msgid "" +"The dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +"installed dnsmasq does not support ipset" +msgstr "" +"已啟用 dnsmasq ipset 支援,但可能沒安裝 dnsmasq ,不然就是已安裝的 dnsmasq 不" +"支援 ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:235 +msgid "" +"The dnsmasq ipset support is enabled, but ipset is either not installed or " +"installed ipset does not support '%s' type" +msgstr "" +"已啟用 dnsmasq ipset 支援,但可能沒安裝 ipset,不然就是已安裝的 ipset 不支援 " +"'%s' 類型" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:238 +msgid "" +"The dnsmasq nft set support is enabled, but dnsmasq is either not installed " +"or installed dnsmasq does not support nft set" +msgstr "" +"已啟用 dnsmasq nft set 支援,但可能沒安裝 dnsmasq,不然就是已安裝的 dnsmasq " +"不支援 nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:241 +msgid "The dnsmasq nft sets support is enabled, but nft is not installed" +msgstr "已啟用 dnsmasq nft sets 支援,但未安裝 nft" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:528 +msgid "URL" +msgstr "URL" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:178 +msgid "" +"URL to the external dnsmasq config file, see the %sREADME%s for details." +msgstr "指向外部 dnsmasq 設置檔案的網址,請參考 %sREADME%s 之詳細內容。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:495 +msgid "URLs to file(s) containing lists to be allowed or blocked." +msgstr "包含黑白名單檔案的 URL 位址。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:506 +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:95 +msgid "Unknown" +msgstr "未知" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:301 +msgid "Unknown error" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:208 +msgid "Unknown warning" +msgstr "" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:255 +msgid "Use AdBlocking on the SmartDNS instance(s)" +msgstr "在 SmartDNS 實例上使用廣告攔截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:191 +msgid "Use AdBlocking on the dnsmasq instance(s)" +msgstr "在 dnsmasq 實例上使用廣告攔截" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:187 +msgid "" +"Use of external dnsmasq config file detected, please set '%s' option to '%s'" +msgstr "偵測到使用了外部 dnsmasq 設定檔案,請將 '%s' 選項設為 '%s'" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:424 +msgid "Use simultaneous processing" +msgstr "使用同步處理" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:334 +msgid "Verbose output" +msgstr "詳細輸出" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:85 +msgid "Version" +msgstr "版本" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/adblock-fast/status.js:126 +msgid "Version %s" +msgstr "版本 %s" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/status/include/70_adblock-fast.js:59 +msgid "Warning" +msgstr "警告" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:257 +msgid "" +"You can limit the AdBlocking to the specific SmartDNS instance(s) (%smore " +"information%s)." +msgstr "您可以只在特定 SmartDNS 實例上進行廣告攔截 (%s更多資訊%s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:193 +msgid "" +"You can limit the AdBlocking to the specific dnsmasq instance(s) (%smore " +"information%s)." +msgstr "您可以只在特定 dnsmasq 實例上進行廣告攔截 (%s更多資訊%s)。" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:148 +msgid "dnsmasq additional hosts" +msgstr "dnsmasq 的額外主機" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:149 +msgid "dnsmasq config" +msgstr "dnsmasq 設置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:151 +msgid "dnsmasq ipset" +msgstr "dnsmasq ipset" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:154 +msgid "dnsmasq nft set" +msgstr "dnsmasq nft set" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:156 +msgid "dnsmasq servers file" +msgstr "dnsmasq 服務器檔案設置" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:347 +msgid "none" +msgstr "無" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:159 +msgid "smartdns domain set" +msgstr "smartdns 網域集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:161 +msgid "smartdns ipset" +msgstr "smartdns ip集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:164 +msgid "smartdns nft set" +msgstr "smartdns nft 集" + +#: applications/luci-app-adblock-fast/htdocs/luci-static/resources/view/adblock-fast/overview.js:168 +msgid "unbound adblock list" +msgstr "unbound 廣告攔截清單" + +#~ msgid "%s" +#~ msgstr "%s" + +#~ msgid "Force Re-Download" +#~ msgstr "強制重新下載" + +#~ msgid "Force re-downloading %s block lists" +#~ msgstr "強制重新下載 %s 區塊列表" + +#~ msgid "Allowed Domain URLs" +#~ msgstr "允許的網域網址" + +#~ msgid "Allowed and Blocked Lists Management" +#~ msgstr "允許和禁止列表管理" + +#~ msgid "Blocked AdBlockPlus-style URLs" +#~ msgstr "已封鎖的 AdBlockPlus 風格網址" + +#~ msgid "Blocked Domain URLs" +#~ msgstr "封鎖的網域網址" + +#~ msgid "Blocked Hosts URLs" +#~ msgstr "封鎖的主機網址" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log." +#~ msgstr "將除錯輸出啟用到 /tmp/simple-adblock.log。" + +#~ msgid "Grant UCI and file access for luci-app-simple-adblock" +#~ msgstr "授予 luci-app-simple-adblock 擁有 UCI 和檔案存取的權限" + +#~ msgid "Simple AdBlock" +#~ msgstr "簡單 AdBlock" + +#~ msgid "Simple AdBlock - Configuration" +#~ msgstr "Simple AdBlock - 設定" + +#~ msgid "Simple AdBlock - Status" +#~ msgstr "Simple AdBlock - 狀態" + +#~ msgid "URLs to lists of domains to be allowed." +#~ msgstr "允許的網域列表的URL." + +#~ msgid "URLs to lists of domains to be blocked." +#~ msgstr "指向要阻止的網域列表的URL。" + +#~ msgid "URLs to lists of hosts to be blocked." +#~ msgstr "指向要阻止的主機列表的URL。" + +#~ msgid "config (%s) validation failure!" +#~ msgstr "設定檔(%s)驗證失敗!" + +#~ msgid "disabled" +#~ msgstr "已禁用" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but dnsmasq is either not installed or " +#~ "installed dnsmasq does not support ipset" +#~ msgstr "" +#~ "已啟用 DNSMASQ ipset 支援,但 DNSMASQ 未安裝或已安裝 DNSMASQ 不支援 IPSET" + +#~ msgid "" +#~ "dnsmasq ipset support is enabled, but ipset is either not installed or " +#~ "installed ipset does not support '%s' type" +#~ msgstr "" +#~ "已啟用 DNSMASQ IPSET 支援,但 IPSET 未安裝或已安裝 IPSET 不支援「%s」類型" + +#~ msgid "" +#~ "dnsmasq nft set support is enabled, but dnsmasq is either not installed " +#~ "or installed dnsmasq does not support nft set" +#~ msgstr "" +#~ "已啟用 DNSMASQ NFT 集支援,但 DNSMASQ 未安裝或已安裝 DNSMASQ 不支援 NFT 集" + +#~ msgid "dnsmasq nft sets support is enabled, but nft is not installed" +#~ msgstr "已啟用 DNSMASQ NFT 集支援,但未安裝 NFT" + +#~ msgid "failed to access shared memory" +#~ msgstr "存取分享記憶體失敗" + +#~ msgid "failed to create '%s' file" +#~ msgstr "\"%s\" 檔案建立失敗" + +#~ msgid "failed to create block-list or restart DNS resolver" +#~ msgstr "建立封鎖清單或重新啟動 DNS 解析器失敗" + +#~ msgid "failed to create compressed cache" +#~ msgstr "建立壓縮快取失敗" + +#~ msgid "failed to create directory for %s file" +#~ msgstr "無法為 %s 檔案建立目錄" + +#~ msgid "failed to create output/cache/gzip file directory" +#~ msgstr "未能建立 output/cache/gzip 檔案目錄" + +#~ msgid "failed to download" +#~ msgstr "下載失敗" + +#~ msgid "failed to download Config Update file" +#~ msgstr "下載組態更新檔失敗" + +#~ msgid "failed to format data file" +#~ msgstr "格式化資料檔失敗" + +#~ msgid "failed to move '%s' to '%s'" +#~ msgstr "移動 \"%s\" 到 \"%s\" 失敗" + +#~ msgid "failed to move temporary data file to '%s'" +#~ msgstr "移動臨時資料檔到 \"%s\" 失敗" + +#~ msgid "failed to optimize data file" +#~ msgstr "最佳化資料檔失敗" + +#~ msgid "failed to parse" +#~ msgstr "解析失敗" + +#~ msgid "failed to parse Config Update file" +#~ msgstr "解析組態更新檔失敗" + +#~ msgid "failed to process allow-list" +#~ msgstr "處理允許清單失敗" + +#~ msgid "failed to reload/restart DNS resolver" +#~ msgstr "重新載入/重新啟動 DNS 解析器失敗" + +#~ msgid "failed to remove temporary files" +#~ msgstr "刪除臨時檔失敗" + +#~ msgid "failed to restart/reload DNS resolver" +#~ msgstr "重新啟動/重新載入 DNS 解析器失敗" + +#~ msgid "failed to sort data file" +#~ msgstr "資料檔排序失敗" + +#~ msgid "failed to stop %s" +#~ msgstr "%s 停止失敗" + +#~ msgid "failed to unpack compressed cache" +#~ msgstr "壓縮快取解壓縮失敗" + +#~ msgid "no HTTPS/SSL support on device" +#~ msgstr "設備不支持HTTPS / SSL" + +#~ msgid "some recommended packages are missing" +#~ msgstr "缺少一些推薦的軟體包" + +#~ msgid "" +#~ "use of external dnsmasq config file detected, please set '%s' option to " +#~ "'%s'" +#~ msgstr "檢測到使用外部 DNSMASQ 配置檔,請將“%s”選項設置為“%s”" + +#~ msgid "Version: %s" +#~ msgstr "版本: %s" + +#~ msgid "The %s service failed to discover WAN gateway!" +#~ msgstr "%s 服務未能發現廣域網閘道!" + +#~ msgid "Unable to create directory for '%s'" +#~ msgstr "無法為 『%s' 建立目錄" + +#~ msgid "Downloading" +#~ msgstr "下載中" + +#~ msgid "%s Error: %s" +#~ msgstr "%s 錯誤:%s" + +#~ msgid "%s Error: %s %s" +#~ msgstr "%s 錯誤:%s %s" + +#~ msgid "Cache file containing %s domains found." +#~ msgstr "快取檔中已找到 %s 個網域。" + +#~ msgid "Collected Errors" +#~ msgstr "收集的錯誤" + +#~ msgid "Configuration" +#~ msgstr "組態" + +#~ msgid "DNSMASQ Additional Hosts" +#~ msgstr "DNSMASQ附加主機" + +#~ msgid "DNSMASQ Config" +#~ msgstr "Dnsmasq 組態" + +#~ msgid "DNSMASQ Servers File" +#~ msgstr "DNSMASQ伺服器文件" + +#~ msgid "Delay (in seconds) for on-boot start" +#~ msgstr "開機啟動延遲(秒)" + +#~ msgid "Info" +#~ msgstr "資訊" + +#~ msgid "Loading" +#~ msgstr "正在載入中" + +#~ msgid "Message" +#~ msgstr "訊息" + +#~ msgid "" +#~ "Pick the DNS resolution option to create the adblock list for, see the " +#~ "%sREADME%s for details." +#~ msgstr "" +#~ "選擇 DNS 解析選項以建立 Adblock 清單,請參閱 %sREADME%s 以獲得詳細資訊。" + +#~ msgid "Run service after set delay on boot." +#~ msgstr "設定啟動後延遲執行服務。" + +#~ msgid "Service Status [%s %s]" +#~ msgstr "服務狀態 [%s %s]" + +#~ msgid "Simple AdBlock Settings" +#~ msgstr "簡單 AdBlock 設定" + +#~ msgid "Success" +#~ msgstr "成功" + +#~ msgid "Task" +#~ msgstr "任務" + +#~ msgid "Unbound AdBlock List" +#~ msgstr "未綁定的AdBlock列表" + +#~ msgid "DNSMASQ IP Set" +#~ msgstr "DNSMASQ IP設定" + +#~ msgid "DNSMASQ NFT Set" +#~ msgstr "DNSMASQ NFT 集合" + +#~ msgid "%s is blocking %s domains (with %s)." +#~ msgstr "%s 正在封鎖 %s 網域(具有 %s)。" + +#~ msgid "Blacklisted Domain URLs" +#~ msgstr "列入黑名單的域名 URL" + +#~ msgid "Blacklisted Domains" +#~ msgstr "列入黑名單的域名" + +#~ msgid "Blacklisted Hosts URLs" +#~ msgstr "列入黑名單的主機 URL" + +#~ msgid "Whitelist and Blocklist Management" +#~ msgstr "白名單和黑名單管理" + +#~ msgid "Whitelisted Domain URLs" +#~ msgstr "白名單域名 URL" + +#~ msgid "Whitelisted Domains" +#~ msgstr "白名單域名" + +#~ msgid "Pick the LED not already used in" +#~ msgstr "選擇尚未使用的 LED" + +#~ msgid "System LED Configuration" +#~ msgstr "系統 LED 配置" + +#~ msgid "Enable/Start" +#~ msgstr "啟用/啟動" + +#~ msgid "Reload" +#~ msgstr "重新載入" + +#~ msgid "Service is disabled/stopped" +#~ msgstr "服務已禁用/已停止" + +#~ msgid "Service is enabled/started" +#~ msgstr "服務已啟用/已啟動" + +#~ msgid "Service started with error" +#~ msgstr "服務啟動時出錯" + +#~ msgid "Stop/Disable" +#~ msgstr "停止/禁用" + +#~ msgid "Controls system log and console output verbosity" +#~ msgstr "控制系統日誌和控制檯輸出的詳細程度" + +#~ msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" +#~ msgstr "強制路由器 DNS 在本地裝置上使用,也稱為 DNS 劫持" + +#~ msgid "Individual domains to be blacklisted" +#~ msgstr "要列入黑名單的單獨域名" + +#~ msgid "Individual domains to be whitelisted" +#~ msgstr "要列入白名單的單獨域名" + +#~ msgid "Start Simple Adblock service" +#~ msgstr "啟動簡單 Adblock 服務" + +#~ msgid "URLs to lists of domains to be blacklisted" +#~ msgstr "黑名單域名列表的 URL" + +#~ msgid "URLs to lists of domains to be whitelisted" +#~ msgstr "白名單域名列表的 URL" + +#~ msgid "URLs to lists of hosts to be blacklisted" +#~ msgstr "黑名單主機列表的 URL" + +#~ msgid "Enables debug output to /tmp/simple-adblock.log" +#~ msgstr "啟用到 /tmp/simple-adblock.log 的除錯輸出" + +#~ msgid "Run service after set delay on boot" +#~ msgstr "開機後延遲多少秒執行服務" + +#~ msgid "Stop the download if it is stalled for set number of seconds" +#~ msgstr "如果下載停滯設定的秒數後,則停止下載" diff --git a/applications/luci-app-adblock-fast/root/etc/uci-defaults/40_luci-adblock-fast b/applications/luci-app-adblock-fast/root/etc/uci-defaults/40_luci-adblock-fast new file mode 100644 index 0000000000..080086891a --- /dev/null +++ b/applications/luci-app-adblock-fast/root/etc/uci-defaults/40_luci-adblock-fast @@ -0,0 +1,4 @@ +#!/bin/sh +rm -rf /var/luci-modulecache/; rm -f /var/luci-indexcache; +[ -x /etc/init.d/rpcd ] && /etc/init.d/rpcd reload; +exit 0 diff --git a/applications/luci-app-adblock-fast/root/usr/libexec/rpcd/luci.adblock-fast b/applications/luci-app-adblock-fast/root/usr/libexec/rpcd/luci.adblock-fast new file mode 100755 index 0000000000..8859c11d71 --- /dev/null +++ b/applications/luci-app-adblock-fast/root/usr/libexec/rpcd/luci.adblock-fast @@ -0,0 +1,319 @@ +#!/bin/sh +# Copyright 2023 MOSSDeF, Stan Grishin (stangri@melmac.ca) +# shellcheck disable=SC2018,SC2019,SC3043,SC3060 + +# TechRef: https://openwrt.org/docs/techref/rpcd +# TESTS +# ubus -v list luci.adblock-fast +# ubus -S call luci.adblock-fast getFileUrlFilesizes '{"name": "adblock-fast" }' +# ubus -S call luci.adblock-fast getInitList '{"name": "adblock-fast" }' +# ubus -S call luci.adblock-fast getInitStatus '{"name": "adblock-fast" }' +# ubus -S call luci.adblock-fast getPlatformSupport '{"name": "adblock-fast" }' +# ubus -S call luci.adblock-fast setInitAction '{"name": "adblock-fast", "action": "start" }' +# ubus -S call luci.adblock-fast setInitAction '{"name": "adblock-fast", "action": "dl" }' +# ubus -S call luci.adblock-fast setInitAction '{"name": "adblock-fast", "action": "pause" }' +# ubus -S call luci.adblock-fast setInitAction '{"name": "adblock-fast", "action": "stop" }' + +readonly adbFunctionsFile='/etc/init.d/adblock-fast' +if [ -s "$adbFunctionsFile" ]; then +# shellcheck source=../../../../../adblock-fast/files/etc/init.d/adblock-fast + . "$adbFunctionsFile" +else + logger -t adblock-fast 'error' "adblock-fast init.d file ($adbFunctionsFile) not found!" + print_json_string 'error' "adblock-fast init.d file ($adbFunctionsFile) not found!" +fi + +get_file_url_filesizes() { + _get_file_url_size() { + local url size + config_get url "$1" 'url' + config_get size "$1" 'size' + [ -n "$size" ] || size="$(get_url_filesize "$url")" + json_add_object + json_add_string 'url' "$url" + json_add_int 'size' "$size" + json_close_object + } + local name="$1" i + json_init + json_add_object "$name" + json_add_array 'sizes' + config_load "$name" + config_foreach _get_file_url_size 'file_url' + json_close_array + json_close_object + json_dump + json_cleanup +} + +get_init_list() { + local name + name="$(basename "$1")" + name="${name:-$packageName}" + json_init + json_add_object "$name" + json_add_boolean 'enabled' "$(is_enabled "$name")" + if is_running "$name"; then + json_add_boolean 'running' '1' + else + json_add_boolean 'running' '0' + fi + json_close_object + json_dump + json_cleanup +} + +set_init_action() { + local name action="$2" cmd + name="$(basename "$1")" + name="${name:-$packageName}" + if [ ! -f "/etc/init.d/$name" ]; then + print_json_string 'error' 'Init script not found!' + return + fi + case $action in + enable) + cmd="/etc/init.d/${name} ${action}" + cmd="${cmd} && uci_set ${name} config enabled 1 && uci_commit $name" + ;; + disable) + cmd="/etc/init.d/${name} ${action}" + cmd="${cmd} && uci_set ${name} config enabled 0 && uci_commit $name" + ;; + start|stop|reload|restart|dl|pause) + cmd="/etc/init.d/${name} ${action}" + ;; + esac + if [ -n "$cmd" ] && eval "$cmd" >/dev/null 2>&1; then + print_json_bool "result" '1' + else + print_json_bool "result" '0' + fi +} + +get_init_status() { + local name + name="$(basename "$1")" + name="${name:-$packageName}" + local errors warnings ports dns outputFile outputCache outputGzip outputConfig + local i j +# shellcheck disable=SC2034 + local compressed_cache_dir + config_load "$name" + config_get compressed_cache_dir 'config' 'compressed_cache_dir' '/etc' + compressed_cache_dir="$(sanitize_dir "$compressed_cache_dir")" + compressed_cache_dir="${compressed_cache_dir:-/etc}" + if [ -n "$(uci_get "$packageName" 'config' 'dnsmasq_config_file_url')" ]; then + dns="dnsmasq.conf" + else + dns="$(uci_get "$packageName" 'config' 'dns' 'dnsmasq.servers')" + fi + + dns_set_output_values "$dns" + + json_init + json_add_object "$name" + json_add_boolean 'enabled' "$(is_enabled "$name")" + json_add_string 'status' "$(json 'get' 'status')" + if is_running "$name"; then + json_add_boolean 'running' '1' + else + json_add_boolean 'running' '0' + fi + json_add_string 'version' "$PKG_VERSION" + errors="$(ubus_get_data errors)" + json_add_array 'errors' + if [ -n "$errors" ]; then + for i in $errors; do + if str_contains "$i" '|'; then + error_extra="${i##*|}" + error_id="${i%|*}" + else + error_id="$i" + unset error_extra + fi + json_add_object + json_add_string 'id' "$error_id" + json_add_string 'extra' "$error_extra" + json_close_object + done + fi + json_close_array + warnings="$(ubus_get_data warnings)" + json_add_array 'warnings' + if [ -n "$warnings" ]; then + for i in $warnings; do + if str_contains "$i" '|'; then + error_extra="${i##*|}" + error_id="${i%|*}" + else + error_id="$i" + unset error_extra + fi + json_add_object + json_add_string 'id' "$error_id" + json_add_string 'extra' "$error_extra" + json_close_object + done + fi + json_close_array + + ports="$(ubus_get_ports)" + if [ -n "$ports" ]; then + json_add_boolean 'force_dns_active' '1' + json_add_array 'force_dns_ports' + for i in $ports; do json_add_int '' "$i"; done + json_close_array + else + json_add_boolean 'force_dns_active' '0' + fi + json_add_int 'entries' "$(ubus_get_data entries)" + json_add_string 'dns' "$dns" + json_add_string 'outputFile' "$outputFile" + json_add_string 'outputCache' "$outputCache" + json_add_string 'outputGzip' "$outputGzip" + if [ -s "$outputFile" ]; then + json_add_boolean 'outputFileExists' '1' + else + json_add_boolean 'outputFileExists' '0' + fi + if [ -s "$outputCache" ]; then + json_add_boolean 'outputCacheExists' '1' + else + json_add_boolean 'outputCacheExists' '0' + fi + if [ -s "$outputGzip" ]; then + json_add_boolean 'outputGzipExists' '1' + else + json_add_boolean 'outputGzipExists' '0' + fi + json_add_array 'leds' + for i in /sys/class/leds/*; do json_add_string '' "$(basename "$i")"; done + json_close_array + json_close_object + json_dump + json_cleanup +} + +get_platform_support() { + local name + name="$(basename "$1")" + name="${name:-$packageName}" + json_init + json_add_object "$name" + if check_ipset; then + json_add_boolean 'ipset_installed' '1' + else + json_add_boolean 'ipset_installed' '0' + fi + if check_nft; then + json_add_boolean 'nft_installed' '1' + else + json_add_boolean 'nft_installed' '0' + fi + if check_dnsmasq; then + json_add_boolean 'dnsmasq_installed' '1' + else + json_add_boolean 'dnsmasq_installed' '0' + fi + if check_dnsmasq_ipset; then + json_add_boolean 'dnsmasq_ipset_support' '1' + else + json_add_boolean 'dnsmasq_ipset_support' '0' + fi + if check_dnsmasq_nftset; then + json_add_boolean 'dnsmasq_nftset_support' '1' + else + json_add_boolean 'dnsmasq_nftset_support' '0' + fi + if check_smartdns; then + json_add_boolean 'smartdns_installed' '1' + else + json_add_boolean 'smartdns_installed' '0' + fi + if check_smartdns_ipset; then + json_add_boolean 'smartdns_ipset_support' '1' + else + json_add_boolean 'smartdns_ipset_support' '0' + fi + if check_smartdns_nftset; then + json_add_boolean 'smartdns_nftset_support' '1' + else + json_add_boolean 'smartdns_nftset_support' '0' + fi + if check_unbound; then + json_add_boolean 'unbound_installed' '1' + else + json_add_boolean 'unbound_installed' '0' + fi + json_add_array 'leds' + for i in /sys/class/leds/*; do json_add_string '' "$(basename "$i")"; done + json_close_array + json_close_object + json_dump + json_cleanup +} + +case "$1" in + list) + json_init + json_add_object "getFileUrlFilesizes" + json_add_string 'name' 'name' + json_close_object + json_add_object "getInitList" + json_add_string 'name' 'name' + json_close_object + json_add_object "getInitStatus" + json_add_string 'name' 'name' + json_close_object + json_add_object "getPlatformSupport" + json_add_string 'name' 'name' + json_close_object + json_add_object "setInitAction" + json_add_string 'name' 'name' + json_add_string 'action' 'action' + json_close_object + json_dump + json_cleanup + ;; + call) + case "$2" in + getFileUrlFilesizes) + read -r input + json_load "$input" + json_get_var name 'name' + json_cleanup + get_file_url_filesizes "$name" + ;; + getInitList) + read -r input + json_load "$input" + json_get_var name 'name' + json_cleanup + get_init_list "$name" + ;; + getInitStatus) + read -r input + json_load "$input" + json_get_var name 'name' + json_cleanup + get_init_status "$name" + ;; + getPlatformSupport) + read -r input + json_load "$input" + json_get_var name 'name' + json_cleanup + get_platform_support "$name" + ;; + setInitAction) + read -r input + json_load "$input" + json_get_var name 'name' + json_get_var action 'action' + json_cleanup + set_init_action "$name" "$action" + ;; + esac + ;; +esac diff --git a/applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json b/applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json new file mode 100644 index 0000000000..542a75988c --- /dev/null +++ b/applications/luci-app-adblock-fast/root/usr/share/luci/menu.d/luci-app-adblock-fast.json @@ -0,0 +1,17 @@ +{ + "admin/services/adblock-fast": { + "title": "AdBlock Fast", + "action": { + "type": "view", + "path": "adblock-fast/overview" + }, + "depends": { + "acl": [ + "luci-app-adblock-fast" + ], + "uci": { + "adblock-fast": true + } + } + } +} diff --git a/applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json b/applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json new file mode 100644 index 0000000000..df272abe1c --- /dev/null +++ b/applications/luci-app-adblock-fast/root/usr/share/rpcd/acl.d/luci-app-adblock-fast.json @@ -0,0 +1,35 @@ +{ + "luci-app-adblock-fast": { + "description": "Grant UCI and file access for luci-app-adblock-fast", + "read": { + "file": { + "/dev/shm/adblock-fast.config": [ "list", "read" ], + "/dev/shm/adblock-fast.error": [ "list", "read" ], + "/dev/shm/adblock-fast.status": [ "list", "read" ] + }, + "ubus": { + "luci.adblock-fast": [ + "getFileUrlFilesizes", + "getInitList", + "getInitStatus", + "getPlatformSupport" + ] + }, + "uci": [ + "adblock-fast", + "dhcp", + "smartdns" + ] + }, + "write": { + "uci": [ + "adblock-fast" + ], + "ubus": { + "luci.adblock-fast": [ + "setInitAction" + ] + } + } + } +} |