diff options
Diffstat (limited to 'applications')
88 files changed, 4991 insertions, 695 deletions
diff --git a/applications/luci-app-advanced-reboot/po/es/advanced-reboot.po b/applications/luci-app-advanced-reboot/po/es/advanced-reboot.po index bb669c88ce..4285262c54 100644 --- a/applications/luci-app-advanced-reboot/po/es/advanced-reboot.po +++ b/applications/luci-app-advanced-reboot/po/es/advanced-reboot.po @@ -183,7 +183,7 @@ msgstr "" "<br /><br /> También tenga en cuenta que un firmware de partición " "alternativo podría no proporcionar una manera fácil de cambiar la partición " "activa y volver a iniciar la partición activa.<br /><br /> Haga clic en " -"\"Continuar\" a continuación para reiniciar el dispositivo a una partición " +"\"Proceder\" a continuación para reiniciar el dispositivo a una partición " "alternativa." #: applications/luci-app-advanced-reboot/luasrc/view/advanced_reboot/power_off.htm:12 diff --git a/applications/luci-app-ahcp/po/es/ahcp.po b/applications/luci-app-ahcp/po/es/ahcp.po index 0fe23d84e4..c47e7d68ca 100644 --- a/applications/luci-app-ahcp/po/es/ahcp.po +++ b/applications/luci-app-ahcp/po/es/ahcp.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2019-02-25 21:58-0300\n" +"PO-Revision-Date: 2019-02-27 20:48-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language-Team: none\n" "Language: es\n" @@ -32,7 +32,7 @@ msgstr "" # "Lease" en el sentido usado en DHCP no tiene una traducción clara en español y se puede usar la misma palabra en que en inglés. #: applications/luci-app-ahcp/luasrc/view/ahcp_status.htm:34 msgid "Active AHCP Leases" -msgstr "Cesiones activas AHCP" +msgstr "Conexiones AHCP activas" #: applications/luci-app-ahcp/luasrc/view/ahcp_status.htm:38 msgid "Address" @@ -91,7 +91,7 @@ msgstr "Sólo IPv6" #: applications/luci-app-ahcp/luasrc/model/cbi/ahcp.lua:97 msgid "Lease directory" -msgstr "Directorio de cesiones" +msgstr "Directorio de direcciones" #: applications/luci-app-ahcp/luasrc/model/cbi/admin_network/proto_ahcp.lua:62 #: applications/luci-app-ahcp/luasrc/model/cbi/ahcp.lua:91 @@ -151,7 +151,7 @@ msgstr "El Servicio AHCP está funcionando con el ID %s." #: applications/luci-app-ahcp/luasrc/view/ahcp_status.htm:22 msgid "There are no active leases." -msgstr "No hay cesiones activas." +msgstr "No hay conexiones activas." #: applications/luci-app-ahcp/luasrc/model/cbi/ahcp.lua:101 msgid "Unique ID file" diff --git a/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js b/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js index e23414f705..2cf5cc6e1b 100644 --- a/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js +++ b/applications/luci-app-attendedsysupgrade/root/www/luci-static/resources/attendedsysupgrade.js @@ -1,382 +1,427 @@ -function $(s) { return document.getElementById(s.substring(1)); } +function $(s) { + return document.getElementById(s.substring(1)); +} -function show(s) { $(s).style.display = 'block'; } +function show(s) { + $(s).style.display = 'block'; +} -function hide(s) { $(s).style.display = 'none'; } +function hide(s) { + $(s).style.display = 'none'; +} function set_server() { - hide("#status_box"); - data.url = $("#server").value; - ubus_call("uci", "set", { "config": "attendedsysupgrade", "section": "server", values: { "url": data.url } }) - ubus_call("uci", "commit", { "config": "attendedsysupgrade" }) - var server_button = $("#server") - server_button.type = 'button'; - server_button.className = 'cbi-button cbi-button-edit'; - server_button.parentElement.removeChild($("#button_set")); - server_button.onclick = edit_server; + hide("#status_box"); + data.url = $("#server").value; + ubus_call("uci", "set", { + "config": "attendedsysupgrade", + "section": "server", + values: { + "url": data.url + } + }) + ubus_call("uci", "commit", { + "config": "attendedsysupgrade" + }) + var server_button = $("#server") + server_button.type = 'button'; + server_button.className = 'cbi-button cbi-button-edit'; + server_button.parentElement.removeChild($("#button_set")); + server_button.onclick = edit_server; } function edit_server() { - $("#server").type = 'text'; - $("#server").onkeydown = function(event) { - if(event.key === 'Enter') { - set_server(); - return false; - } - } - $("#server").className = ''; - $("#server").onclick = null; - - var button_set = document.createElement("input"); - button_set.type = "button"; - button_set.value = "Save"; - button_set.name = "button_set"; - button_set.id = "button_set"; - button_set.className = 'cbi-button cbi-button-save'; - button_set.onclick = set_server - $("#server").parentElement.appendChild(button_set); + $("#server").type = 'text'; + $("#server").onkeydown = function(event) { + if (event.key === 'Enter') { + set_server(); + return false; + } + } + $("#server").className = ''; + $("#server").onclick = null; + + var button_set = document.createElement("input"); + button_set.type = "button"; + button_set.value = "Save"; + button_set.name = "button_set"; + button_set.id = "button_set"; + button_set.className = 'cbi-button cbi-button-save'; + button_set.onclick = set_server + $("#server").parentElement.appendChild(button_set); } function edit_packages() { - data.edit_packages = true - hide("#edit_button"); - $("#edit_packages").value = data.packages.join("\n"); - show("#edit_packages"); + data.edit_packages = true + hide("#edit_button"); + $("#edit_packages").value = data.packages.join("\n"); + show("#edit_packages"); } // requests to the upgrade server -function server_request(request_dict, path, callback) { - request_dict.distro = data.release.distribution; - request_dict.target = data.release.target; - var request = new XMLHttpRequest(); - request.open("POST", data.url + "/" + path, true); - request.setRequestHeader("Content-type", "application/json"); - request.send(JSON.stringify(request_dict)); - request.onerror = function(e) { - set_status("danger", "upgrade server down") - show("#server_div"); - } - request.addEventListener('load', function(event) { - callback(request) - }); +function server_request(path, callback) { + var request = new XMLHttpRequest(); + request.open("POST", data.url + "/" + path, true); + request.setRequestHeader("Content-type", "application/json"); + request.send(JSON.stringify(request_dict)); + request.onerror = function(e) { + set_status("danger", "upgrade server down") + show("#server_div"); + } + request.addEventListener('load', function(event) { + callback(request) + }); } // initial setup, get system information function setup() { - ubus_call("rpc-sys", "packagelist", {}, "packages"); - ubus_call("system", "board", {}, "release"); - ubus_call("system", "board", {}, "board_name"); - ubus_call("system", "board", {}, "model"); - ubus_call("system", "info", {}, "memory"); - uci_get({ "config": "attendedsysupgrade", "section": "server", "option": "url" }) - uci_get({ "config": "attendedsysupgrade", "section": "client", "option": "upgrade_packages" }) - uci_get({ "config": "attendedsysupgrade", "section": "client", "option": "advanced_mode" }) - uci_get({ "config": "attendedsysupgrade", "section": "client", "option": "auto_search" }) - setup_ready(); + ubus_call("rpc-sys", "packagelist", {}, "packages"); + ubus_call("system", "board", {}, "release"); + ubus_call("system", "board", {}, "board_name"); + ubus_call("system", "board", {}, "model"); + ubus_call("system", "info", {}, "memory"); + uci_get({ + "config": "attendedsysupgrade", + "section": "server", + "option": "url" + }) + uci_get({ + "config": "attendedsysupgrade", + "section": "client", + "option": "upgrade_packages" + }) + uci_get({ + "config": "attendedsysupgrade", + "section": "client", + "option": "advanced_mode" + }) + uci_get({ + "config": "attendedsysupgrade", + "section": "client", + "option": "auto_search" + }) + setup_ready(); } function setup_ready() { - // checks if a async ubus calls have finished - if(ubus_counter != ubus_closed) { - setTimeout(setup_ready, 300) - } else { - if(data.auto_search == 1) { - upgrade_check(); - } else { - show("#upgrade_button"); - show("#server_div"); - $("#server").value = data.url; - } - } + // checks if a async ubus calls have finished + if (ubus_counter != ubus_closed) { + setTimeout(setup_ready, 300) + } else { + if (data.auto_search == 1) { + upgrade_check(); + } else { + show("#upgrade_button"); + show("#server_div"); + $("#server").value = data.url; + } + } } function uci_get(option) { - // simple wrapper to get a uci value store in data.<option> - ubus_call("uci", "get", option, option["option"]) + // simple wrapper to get a uci value store in data.<option> + ubus_call("uci", "get", option, option["option"]) } ubus_counter = 0; ubus_closed = 0; + function ubus_call(command, argument, params, variable) { - var request_data = {}; - request_data.jsonrpc = "2.0"; - request_data.id = ubus_counter; - request_data.method = "call"; - request_data.params = [ data.ubus_rpc_session, command, argument, params ] - var request_json = JSON.stringify(request_data) - ubus_counter++; - var request = new XMLHttpRequest(); - request.open("POST", ubus_url, true); - request.setRequestHeader("Content-type", "application/json"); - request.onload = function(event) { - if(request.status === 200) { - var response = JSON.parse(request.responseText) - if(!("error" in response) && "result" in response) { - if(response.result.length === 2) { - if(command === "uci") { - data[variable] = response.result[1].value - } else { - data[variable] = response.result[1][variable] - } - } - } else { - set_status("danger", "<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response)) - } - ubus_closed++; - } - } - request.send(request_json); + var request_data = {}; + request_data.jsonrpc = "2.0"; + request_data.id = ubus_counter; + request_data.method = "call"; + request_data.params = [data.ubus_rpc_session, command, argument, params] + var request_json = JSON.stringify(request_data) + ubus_counter++; + var request = new XMLHttpRequest(); + request.open("POST", ubus_url, true); + request.setRequestHeader("Content-type", "application/json"); + request.onload = function(event) { + if (request.status === 200) { + var response = JSON.parse(request.responseText) + if (!("error" in response) && "result" in response) { + if (response.result.length === 2) { + if (command === "uci") { + data[variable] = response.result[1].value + } else { + data[variable] = response.result[1][variable] + } + } + } else { + set_status("danger", "<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response)) + } + ubus_closed++; + } + } + request.send(request_json); } -function set_status(type, message, loading) { - $("#status_box").className = "alert-message " + type; - var loading_image = ''; - if(loading) { - loading_image = '<img src="/luci-static/resources/icons/loading.gif" alt="Loading" style="vertical-align:middle"> '; - } - $("#status_box").innerHTML = loading_image + message; - show("#status_box") +function set_status(type, message, loading, show_log) { + $("#status_box").className = "alert-message " + type; + var loading_image = ''; + if (loading) { + loading_image = '<img src="/luci-static/resources/icons/loading.gif" alt="Loading" style="vertical-align:middle"> '; + } + if (show_log && data.log) { + message += ' <p><a target="_blank" href="' + data.url + data.log + '">Build log</a></p>' + } + $("#status_box").innerHTML = loading_image + message; + show("#status_box") } function upgrade_check() { - // Asks server for new firmware - // If data.upgrade_packages is set to true search for new package versions as well - hide("#status_box"); - hide("#server_div"); - set_status("info", "Searching for upgrades", true); - var request_dict = {} - request_dict.version = data.release.version; - request_dict.revision = data.release.revision; - request_dict.installed = data.packages; - request_dict.upgrade_packages = data.upgrade_packages - server_request(request_dict, "api/upgrade-check", upgrade_check_callback) + // Asks server for new firmware + // If data.upgrade_packages is set to true search for new package versions as well + hide("#status_box"); + hide("#server_div"); + set_status("info", "Searching for upgrades", true); + request_dict.distro = data.release.distribution; + request_dict.version = data.release.version; + request_dict.target = data.release.target; + request_dict.revision = data.release.revision; + request_dict.installed = data.packages; + request_dict.upgrade_packages = data.upgrade_packages + server_request("api/upgrade-check", upgrade_check_callback) } function upgrade_check_callback(request_text) { - var request_json = JSON.parse(request_text) - - // create simple output to tell user what's going to be upgrade (release/packages) - var info_output = "" - if(request_json.version != undefined) { - info_output += "<h3>New firmware release available</h3>" - info_output += data.release.version + " to " + request_json.version - data.latest_version = request_json.version; - } - if(request_json.upgrades != undefined) { - info_output += "<h3>Package upgrades available</h3>" - for (var upgrade in request_json.upgrades) { - info_output += "<b>" + upgrade + "</b>: " + request_json.upgrades[upgrade][1] + " to " + request_json.upgrades[upgrade][0] + "<br />" - } - } - data.packages = request_json.packages - set_status("success", info_output) - - if(data.advanced_mode == 1) { - show("#edit_button"); - } - var upgrade_button = $("#upgrade_button") - upgrade_button.value = "Request firmware"; - upgrade_button.style.display = "block"; - upgrade_button.disabled = false; - upgrade_button.onclick = upgrade_request; - + var request_json = JSON.parse(request_text) + + // create simple output to tell user what's going to be upgrade (release/packages) + var info_output = "" + if (request_json.version) { + info_output += "<h3>New release <b>" + request_json.version + "</b> available</h3>" + info_output += "Installed version: " + data.release.version + request_dict.version = request_json.version; + } + if (request_json.upgrades) { + if (request_json.upgrades != {}) { + info_output += "<h3>Package upgrades available</h3>" + for (var upgrade in request_json.upgrades) { + info_output += "<b>" + upgrade + "</b>: " + request_json.upgrades[upgrade][1] + " to " + request_json.upgrades[upgrade][0] + "<br />" + } + } + } + data.packages = request_json.packages + set_status("success", info_output) + + if (data.advanced_mode == 1) { + show("#edit_button"); + } + var upgrade_button = $("#upgrade_button") + upgrade_button.value = "Request firmware"; + upgrade_button.style.display = "block"; + upgrade_button.disabled = false; + upgrade_button.onclick = upgrade_request; } function upgrade_request() { - // Request the image - // Needed values - // version/release - // board_name or model (server tries to find the correct profile) - // packages - // The rest is added by server_request() - $("#upgrade_button").disabled = true; - hide("#edit_packages"); - hide("#edit_button"); - hide("#keep_container"); - - var request_dict = {} - request_dict.version = data.latest_version; - request_dict.board = data.board_name - request_dict.model = data.model - - if(data.edit_packages == true) { - request_dict.packages = $("#edit_packages").value.split("\n") - } else { - request_dict.packages = data.packages; - } - - server_request(request_dict, "api/upgrade-request", upgrade_request_callback) + // Request firmware using the following parameters + // distro, version, target, board_name/model, packages + $("#upgrade_button").disabled = true; + hide("#edit_packages"); + hide("#edit_button"); + hide("#keep_container"); + + // remove "installed" entry as unused by build requests + delete request_dict.installed + // add board info to let server determine profile + request_dict.board_name = data.board_name + request_dict.board = data.board_name + request_dict.model = data.model + + if (data.edit_packages == true) { + request_dict.packages = $("#edit_packages").value.split("\n") + } else { + request_dict.packages = data.packages; + } + server_request("api/upgrade-request", upgrade_request_callback) } function upgrade_request_callback(request) { - // ready to download - var request_json = JSON.parse(request); - data.files = request_json.files; - data.sysupgrade = request_json.sysupgrade; - - var info_output = 'Firmware created: <a href="' + data.url + data.files + data.sysupgrade + '"><b>' + data.sysupgrade+ '</b></a>' - info_output += ' <a target="_blank" href="' + data.url + request_json.log + '">Build log</a>' - set_status("info", info_output); - - show("#keep_container"); - var upgrade_button = $("#upgrade_button") - upgrade_button.disabled = false; - upgrade_button.style.display = "block"; - upgrade_button.value = "Flash firmware"; - upgrade_button.onclick = download_image; + // ready to download + var request_json = JSON.parse(request) + data.files = request_json.files + data.sysupgrade = request_json.sysupgrade + data.log = request_json.log + + var info_output = '<h3>Firmware created</h3><p>Created file: <a href="' + data.url + data.files + data.sysupgrade + '">' + data.sysupgrade + '</p></a>' + set_status("success", info_output, false, true); + + show("#keep_container"); + var upgrade_button = $("#upgrade_button") + upgrade_button.disabled = false; + upgrade_button.style.display = "block"; + upgrade_button.value = "Flash firmware"; + upgrade_button.onclick = download_image; } function flash_image() { - // Flash image via rpc-sys upgrade_start - set_status("warning", "Flashing firmware. Don't unpower device", true) - ubus_call("rpc-sys", "upgrade_start", { "keep": $("#keep").checked }, 'message'); - ping_max = 3600; // in seconds - setTimeout(ping_ubus, 10000) + // Flash image via rpc-sys upgrade_start + set_status("warning", "Flashing firmware. Don't unpower device", true) + ubus_call("rpc-sys", "upgrade_start", { + "keep": $("#keep").checked + }, 'message'); + ping_max = 3600; // in seconds + setTimeout(ping_ubus, 10000) } function ping_ubus() { - // Tries to connect to ubus. If the connection fails the device is likely still rebooting. - // If more time than ping_max passes update may failed - if(ping_max > 0) { - ping_max--; - var request = new XMLHttpRequest(); - request.open("GET", ubus_url, true); - request.addEventListener('error', function(event) { - set_status("warning", "Rebooting device - please wait!", true); - setTimeout(ping_ubus, 5000) - }); - request.addEventListener('load', function(event) { - set_status("success", "Success! Please reload web interface"); - $("#upgrade_button").value = "Reload page"; - show("#upgrade_button"); - $("#upgrade_button").disabled = false; - $("#upgrade_button").onclick = function() { location.reload(); } - }); - request.send(); - } else { - set_status("danger", "Web interface could not reconnect to your device. Please reload web interface or check device manually") - } + // Tries to connect to ubus. If the connection fails the device is likely still rebooting. + // If more time than ping_max passes update may failed + if (ping_max > 0) { + ping_max--; + var request = new XMLHttpRequest(); + request.open("GET", ubus_url, true); + request.addEventListener('error', function(event) { + set_status("warning", "Rebooting device - please wait!", true); + setTimeout(ping_ubus, 5000) + }); + request.addEventListener('load', function(event) { + set_status("success", "Success! Please reload web interface"); + $("#upgrade_button").value = "Reload page"; + show("#upgrade_button"); + $("#upgrade_button").disabled = false; + $("#upgrade_button").onclick = function() { + location.reload(); + } + }); + request.send(); + } else { + set_status("danger", "Web interface could not reconnect to your device. Please reload web interface or check device manually") + } } function upload_image(blob) { - // Uploads received blob data to the server using cgi-io - set_status("info", "Uploading firmware to device", true); - var request = new XMLHttpRequest(); - var form_data = new FormData(); - - form_data.append("sessionid", data.ubus_rpc_session) - form_data.append("filename", "/tmp/firmware.bin") - form_data.append("filemode", 755) // insecure? - form_data.append("filedata", blob) - - request.addEventListener('load', function(event) { - request_json = JSON.parse(request.responseText) - flash_image(); - }); - - request.addEventListener('error', function(event) { - set_status("danger", "Upload of firmware failed, please retry by reloading web interface") - }); - - request.open('POST', origin + '/cgi-bin/cgi-upload'); - request.send(form_data); + // Uploads received blob data to the server using cgi-io + set_status("info", "Uploading firmware to device", true); + var request = new XMLHttpRequest(); + var form_data = new FormData(); + + form_data.append("sessionid", data.ubus_rpc_session) + form_data.append("filename", "/tmp/firmware.bin") + form_data.append("filemode", 755) // insecure? + form_data.append("filedata", blob) + + request.addEventListener('load', function(event) { + request_json = JSON.parse(request.responseText) + flash_image(); + }); + + request.addEventListener('error', function(event) { + set_status("danger", "Upload of firmware failed, please retry by reloading web interface") + }); + + request.open('POST', origin + '/cgi-bin/cgi-upload'); + request.send(form_data); } function download_image() { - // Download image from server once the url was received by upgrade_request - hide("#keep_container"); - hide("#upgrade_button"); - var download_request = new XMLHttpRequest(); - download_request.open("GET", data.url + data.files + data.sysupgrade); - download_request.responseType = "arraybuffer"; - - download_request.onload = function () { - if (this.status === 200) { - var blob = new Blob([download_request.response], {type: "application/octet-stream"}); - upload_image(blob) - } - }; - set_status("info", "Downloading firmware to web browser memory", true); - download_request.send(); + // Download image from server once the url was received by upgrade_request + hide("#keep_container"); + hide("#upgrade_button"); + var download_request = new XMLHttpRequest(); + download_request.open("GET", data.url + data.files + data.sysupgrade); + download_request.responseType = "arraybuffer"; + + download_request.onload = function() { + if (this.status === 200) { + var blob = new Blob([download_request.response], { + type: "application/octet-stream" + }); + upload_image(blob) + } + }; + set_status("info", "Downloading firmware to web browser memory", true); + download_request.send(); } -function server_request(request_dict, path, callback) { - var request_json; - request_dict.distro = data.release.distribution; - request_dict.target = data.release.target; - var request = new XMLHttpRequest(); - request.open("POST", data.url + "/" + path, true); - request.setRequestHeader("Content-type", "application/json"); - request.send(JSON.stringify(request_dict)); - request.onerror = function(e) { - set_status("danger", "Upgrade server down or could not connect") - show("#server_div"); - } - request.addEventListener('load', function(event) { - var request_text = request.responseText; - if (request.status === 200) { - callback(request_text) - - } else if (request.status === 202) { - var imagebuilder = request.getResponseHeader("X-Imagebuilder-Status"); - if(imagebuilder === "queue") { - // in queue - var queue = request.getResponseHeader("X-Build-Queue-Position"); - set_status("info", "In build queue position " + queue, true) - console.log("queued"); - } else if(imagebuilder === "initialize") { - set_status("info", "Setting up ImageBuilder", true) - console.log("Setting up imagebuilder"); - } else if(imagebuilder === "building") { - set_status("info", "Building image", true); - console.log("building"); - } else { - // fallback if for some reasons the headers are missing e.g. browser blocks access - set_status("info", "Processing request", true); - console.log(imagebuilder) - } - setTimeout(function() { server_request(request_dict, path, callback) }, 5000) - - } else if (request.status === 204) { - // no upgrades available - set_status("success", "No upgrades available") - - } else if (request.status === 400) { - // bad request - request_json = JSON.parse(request_text) - set_status("danger", request_json.error) - - } else if (request.status === 412) { - // this is a bit generic - set_status("danger", "Unsupported device, release, target, subtraget or board") - - } else if (request.status === 413) { - set_status("danger", "No firmware created due to image size. Try again with less packages selected.") - - } else if (request.status === 422) { - var package_missing = request.getResponseHeader("X-Unknown-Package"); - set_status("danger", "Unknown package in request: <b>" + package_missing + "</b>") - } else if (request.status === 500) { - request_json = JSON.parse(request_text) - - var error_box_content = "<b>Internal server error</b><br />" - error_box_content += request_json.error - if(request_json.log != undefined) { - data.log_url = request_json.log - } - set_status("danger", error_box_content) - - } else if (request.status === 501) { - set_status("danger", "No sysupgrade file produced, may not supported by model.") - } else if (request.status === 502) { - // python part offline - set_status("danger", "Server down for maintenance") - setTimeout(function() { server_request(request_dict, path, callback) }, 30000) - } else if (request.status === 503) { - set_status("danger", "Server overloaded") - setTimeout(function() { server_request(request_dict, path, callback) }, 30000) - } - }); +function server_request(path, callback) { + var request_json; + var request = new XMLHttpRequest(); + request.open("POST", data.url + "/" + path, true); + request.setRequestHeader("Content-type", "application/json"); + request.send(JSON.stringify(request_dict)); + request.onerror = function(e) { + set_status("danger", "Upgrade server down or could not connect") + show("#server_div"); + } + request.addEventListener('load', function(event) { + var request_text = request.responseText; + if (request.status === 200) { + callback(request_text) + + } else if (request.status === 202) { + var imagebuilder = request.getResponseHeader("X-Imagebuilder-Status"); + if (imagebuilder === "queue") { + // in queue + var queue = request.getResponseHeader("X-Build-Queue-Position"); + set_status("info", "In build queue position " + queue, true) + console.log("queued"); + } else if (imagebuilder === "building") { + set_status("info", "Building image", true); + console.log("building"); + } else { + // fallback if for some reasons the headers are missing e.g. browser blocks access + set_status("info", "Processing request", true); + console.log(imagebuilder) + } + setTimeout(function() { + server_request(path, callback) + }, 5000) + + } else if (request.status === 204) { + // no upgrades available + set_status("success", "No upgrades available") + + } else if (request.status === 400) { + // bad request + request_json = JSON.parse(request_text) + set_status("danger", request_json.error) + + } else if (request.status === 409) { + // bad request + request_json = JSON.parse(request_text) + data.log = request_json.log + set_status("danger", "Incompatible package selection. See build log for details", false, true) + + } else if (request.status === 412) { + // this is a bit generic + set_status("danger", "Unsupported device, release, target, subtraget or board") + + } else if (request.status === 413) { + set_status("danger", "No firmware created due to image size. Try again with less packages selected.") + + } else if (request.status === 422) { + var package_missing = request.getResponseHeader("X-Unknown-Package"); + set_status("danger", "Unknown package in request: <b>" + package_missing + "</b>") + } else if (request.status === 500) { + request_json = JSON.parse(request_text) + + var error_box_content = "<b>Internal server error</b><br />" + error_box_content += request_json.error + if (request_json.log != undefined) { + data.log = request_json.log + } + set_status("danger", error_box_content, false, true) + + } else if (request.status === 501) { + set_status("danger", "No sysupgrade file produced, may not supported by model.") + } else if (request.status === 502) { + // python part offline + set_status("danger", "Server down for maintenance") + setTimeout(function() { + server_request(path, callback) + }, 30000) + } else if (request.status === 503) { + set_status("danger", "Server overloaded") + setTimeout(function() { + server_request(path, callback) + }, 30000) + } + }); } +request_dict = {} document.onload = setup() diff --git a/applications/luci-app-dnscrypt-proxy/po/es/dnscrypt-proxy.po b/applications/luci-app-dnscrypt-proxy/po/es/dnscrypt-proxy.po new file mode 100644 index 0000000000..0864c2fb50 --- /dev/null +++ b/applications/luci-app-dnscrypt-proxy/po/es/dnscrypt-proxy.po @@ -0,0 +1,358 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:139 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:161 +msgid "-------" +msgstr "-------" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:17 +msgid "Advanced" +msgstr "Avanzado" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:215 +msgid "Alternate Resolver List" +msgstr "Lista alternativa de resolución" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:258 +msgid "" +"Apply DNSCrypt-Proxy specific settings to the Dnsmasq configuration.<br />" +msgstr "" +"Aplique la configuración específica de DNSCrypt-Proxy a la configuración de " +"Dnsmasq.<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:228 +msgid "Blacklist" +msgstr "Lista negra" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:233 +msgid "Block IPv6" +msgstr "Bloque IPv6" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:169 +msgid "" +"By default the DNSCrypt-Proxy startup will be triggered by ifup events of " +"'All' available network interfaces.<br />" +msgstr "" +"De forma predeterminada, el inicio de DNSCrypt-Proxy se activará mediante " +"eventos de actualización de 'Todas' las interfaces de red disponibles.<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:59 +msgid "Configuration of the DNSCrypt-Proxy package." +msgstr "Configuración del paquete DNSCrypt-Proxy." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:146 +msgid "" +"Create '/etc/resolv-crypt.conf' with 'options timeout:1' to reduce DNS " +"upstream timeouts with multiple DNSCrypt instances.<br />" +msgstr "" +"Cree '/etc/resolv-crypt.conf' con 'options timeout:1' para reducir los " +"tiempos de espera ascendentes de DNS con múltiples instancias de DNSCrypt." +"<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:150 +msgid "Create Config File" +msgstr "Crear archivo de configuración" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:145 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:158 +msgid "Create Custom Config File" +msgstr "Crear archivo de configuración personalizado" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:245 +msgid "DNS Query Logfile" +msgstr "Archivo de registro de consultas DNS" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:14 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:58 +msgid "DNSCrypt-Proxy" +msgstr "DNSCrypt-Proxy" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 +msgid "DNSCrypt-Proxy Logfile" +msgstr "Archivo de registro de DNSCrypt-Proxy" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:26 +msgid "DNSCrypt-Proxy Resolver List" +msgstr "Lista de resolución de DNSCrypt-Proxy " + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:102 +msgid "Default Resolver List" +msgstr "Lista de resolución predeterminada" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:234 +msgid "Disable IPv6 to speed up DNSCrypt-Proxy." +msgstr "Deshabilite IPv6 para acelerar DNSCrypt-Proxy." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:254 +msgid "Dnsmasq Options" +msgstr "Opciones de Dnsmasq" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:124 +msgid "" +"Download the current resolver list from 'github.com/dyne/dnscrypt-proxy'." +msgstr "" +"Descargue la lista de resolución actual de 'github.com/dyne/dnscrypt-proxy'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:18 +msgid "Edit DNSCrypt-Proxy Configuration" +msgstr "Editar configuración de DNSCrypt-Proxy" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:19 +msgid "Edit Dnsmasq Configuration" +msgstr "Editar configuración de Dnsmasq" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:20 +msgid "Edit Resolvcrypt Configuration" +msgstr "Editar configuración de Resolvcrypt" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:240 +msgid "Enable Caching to speed up DNSCcrypt-Proxy." +msgstr "Habilitar el almacenamiento en caché para acelerar DNSCrypt-Proxy." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:220 +msgid "Ephemeral Keys" +msgstr "Claves efímeras" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:114 +msgid "File Checksum" +msgstr "Archivo Checksum" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:106 +msgid "File Date" +msgstr "Fecha de archivo" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:60 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:147 +msgid "" +"For further information <a href=\"%s\" target=\"_blank\">see the wiki " +"online</a>" +msgstr "" +"Para obtener más información <a href=\"%s\" target=\"_blank\">vea la wiki en " +"línea</a>" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:97 +msgid "General Options" +msgstr "Opciones generales" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:189 +msgid "IP Address" +msgstr "Dirección IP" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:221 +msgid "Improve privacy by using an ephemeral public key for each query." +msgstr "" +"Mejore la privacidad mediante el uso de una clave pública efímera para cada " +"consulta." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_dnsmasq_tab.lua:9 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_resolvcrypt_tab.lua:9 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/configuration_tab.lua:9 +msgid "Input file not found, please check your configuration." +msgstr "Archivo de entrada no encontrado, por favor revise su configuración." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:185 +msgid "Instance Options" +msgstr "Opciones de instancia" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:239 +msgid "Local Cache" +msgstr "Caché local" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:229 +msgid "" +"Local blacklists allow you to block abuse sites by domains or ip addresses." +msgstr "" +"Las listas negras locales le permiten bloquear sitios de abuso por dominios " +"o direcciones IP." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:246 +msgid "" +"Log the received DNS queries to a file, so you can watch in real-time what " +"is happening on the network." +msgstr "" +"Registre las consultas de DNS recibidas en un archivo, para que pueda ver en " +"tiempo real lo que está sucediendo en la red." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:201 +msgid "" +"Name of the remote DNS service for resolving queries incl. Location, DNSSEC- " +"and NOLOG-Flag." +msgstr "" +"Nombre del servicio de DNS remoto para resolver consultas incl. Ubicación, " +"DNSSEC- y NOLOG-Flag." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:137 +msgid "No SSL support available.<br />" +msgstr "No hay soporte SSL disponible.<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:21 +msgid "No default resolver list and no SSL support available.<br />" +msgstr "" +"No hay una lista de resolución predeterminada y no hay soporte SSL " +"disponible.<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:15 +msgid "Overview" +msgstr "Vista general" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:160 +msgid "Please edit the file manually in the 'Advanced' section." +msgstr "Edite el archivo manualmente en la sección 'Avanzado'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:138 +msgid "" +"Please install a 'libustream-ssl' library to download the current resolver " +"list from 'github.com/dyne/dnscrypt-proxy'." +msgstr "" +"Instale una biblioteca 'libustream-ssl' para descargar la lista de " +"resolución actual desde 'github.com/dyne/dnscrypt-proxy'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:22 +msgid "" +"Please install a resolver list to '/usr/share/dnscrypt-proxy/dnscrypt-" +"resolvers.csv' to use this package." +msgstr "" +"Instale una lista de resolución en '/usr/share/dnscrypt-proxy/dnscrypt-" +"resolvers.csv' para usar este paquete." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:259 +msgid "" +"Please note: This may change the values for 'noresolv', 'resolvfile', " +"'allservers' and the list 'server' settings." +msgstr "" +"Tenga en cuenta: Esto puede cambiar los valores de 'noresolv', 'resolvfile', " +"'allservers' y la configuración de la lista 'servidor'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:194 +msgid "Port" +msgstr "Puerto" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:125 +msgid "Refresh List" +msgstr "Actualizar lista" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:123 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:136 +msgid "Refresh Resolver List" +msgstr "Actualizar lista de resolución" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:200 +msgid "Resolver (LOC/SEC/NOLOG)" +msgstr "Resolver (LOC/SEC/NOLOG)" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_dnsmasq_tab.lua:17 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_resolvcrypt_tab.lua:17 +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/configuration_tab.lua:17 +msgid "Save" +msgstr "Guardar" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:216 +msgid "Specify a non-default Resolver List." +msgstr "Especifique una lista de resolución no predeterminada." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:168 +msgid "Startup Trigger" +msgstr "Disparador de inicio" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:159 +msgid "The config file '/etc/resolv-crypt.conf' already exist.<br />" +msgstr "El archivo de configuración '/etc/resolv-crypt.conf' ya existe.<br />" + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:195 +msgid "The listening port for DNS queries." +msgstr "El puerto de escucha para consultas DNS." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:190 +msgid "" +"The local IPv4 or IPv6 address. The latter one should be specified within " +"brackets, e.g. '[::1]'." +msgstr "" +"La dirección IPv4 o IPv6 local. Este último debe especificarse entre " +"corchetes, por ejemplo. '[::1]'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:230 +msgid "" +"The value for this property is the blocklist type and path to the file, e." +"g.'domains:/path/to/dbl.txt' or 'ips:/path/to/ipbl.txt'." +msgstr "" +"El valor de esta propiedad es el tipo de lista de bloqueo y la ruta al " +"archivo, por ejemplo, 'domains:/path/to/dbl.txt' o 'ips: /path/to/ipbl.txt'." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/configuration_tab.lua:21 +msgid "" +"This form allows you to modify the content of the main DNSCrypt-Proxy " +"configuration file (/etc/config/dnscrypt-proxy)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración principal de DNSCrypt-Proxy (/etc/config/dnscrypt-proxy)." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_dnsmasq_tab.lua:21 +msgid "" +"This form allows you to modify the content of the main Dnsmasq configuration " +"file (/etc/config/dhcp)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración principal de Dnsmasq (/etc/config/dhcp)." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/cfg_resolvcrypt_tab.lua:21 +msgid "" +"This form allows you to modify the content of the resolv-crypt configuration " +"file (/etc/resolv-crypt.conf)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración de resolv-crypt (/etc/resolv-crypt.conf)." + +#: applications/luci-app-dnscrypt-proxy/luasrc/view/dnscrypt-proxy/view_reslist.htm:10 +msgid "This form shows the content of the current DNSCrypt Resolver List." +msgstr "" +"Este formulario muestra el contenido de la actual Lista de resolución de " +"DNSCrypt." + +#: applications/luci-app-dnscrypt-proxy/luasrc/view/dnscrypt-proxy/logread.htm:10 +msgid "" +"This form shows the syslog output, pre-filtered for DNSCrypt-Proxy related " +"messages only." +msgstr "" +"Esta forma muestra la salida de syslog, filtrada previamente solo para los " +"mensajes relacionados con DNSCrypt-Proxy." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:222 +msgid "" +"This option requires extra CPU cycles and is useless with most DNSCrypt " +"server." +msgstr "" +"Esta opción requiere ciclos de CPU adicionales y es inútil con la mayoría de " +"los servidores DNSCrypt." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:170 +msgid "" +"To restrict the trigger, select only the relevant network interface. Usually " +"the 'wan' interface should work for most users." +msgstr "" +"Para restringir el activador, seleccione solo la interfaz de red relevante. " +"Por lo general, la interfaz 'wan' debería funcionar para la mayoría de los " +"usuarios." + +#: applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua:257 +msgid "Transfer Options To Dnsmasq" +msgstr "Opciones de transferencia a Dnsmasq" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:16 +msgid "View Logfile" +msgstr "Ver archivo de registro" + +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:21 +msgid "View Resolver List" +msgstr "Ver lista de resolución" diff --git a/applications/luci-app-firewall/po/es/firewall.po b/applications/luci-app-firewall/po/es/firewall.po index 4041af9cde..67d93ac408 100644 --- a/applications/luci-app-firewall/po/es/firewall.po +++ b/applications/luci-app-firewall/po/es/firewall.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-30 17:00+0200\n" -"PO-Revision-Date: 2019-02-21 01:09-0300\n" +"PO-Revision-Date: 2019-03-27 14:22-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -48,7 +48,7 @@ msgstr "" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:180 msgid "<var>%s</var> and limit to %s" -msgstr "<var>%s</var> y límite a %s" +msgstr "<var>%s</var> y limitar a %s" #: applications/luci-app-firewall/luasrc/tools/firewall.lua:214 msgid "Accept forward" @@ -103,7 +103,7 @@ msgstr "Redes cubiertas" #: applications/luci-app-firewall/luasrc/controller/firewall.lua:22 msgid "Custom Rules" -msgstr "Reglas propias" +msgstr "Reglas personalizadas" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:8 msgid "" @@ -111,10 +111,10 @@ msgid "" "otherwise covered by the firewall framework. The commands are executed after " "each firewall restart, right after the default ruleset has been loaded." msgstr "" -"Las reglas propias le permiten ejecutar comandos de iptables que no están " -"disponibles en el marco del cortafuegos. Los comandos se ejecutarán tras " -"cualquier reinicio del cortafuegos, justo tras haber cargado el conjunto de " -"reglas por defecto." +"Las reglas personalizadas le permiten ejecutar comandos de iptables que no " +"están disponibles en el marco del firewall. Los comandos se ejecutarán tras " +"cualquier reinicio del FIrewall, justo tras haber cargado el conjunto de " +"reglas predeterminadas." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:108 msgid "Destination IP address" @@ -219,30 +219,30 @@ msgstr "Parámetros extra" #: applications/luci-app-firewall/luasrc/controller/firewall.lua:6 msgid "Firewall" -msgstr "Cortafuegos" +msgstr "Firewall" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:7 msgid "Firewall - Custom Rules" -msgstr "Cortafuegos - Reglas propias" +msgstr "Firewall - Reglas personalizadas" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:13 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:28 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:8 msgid "Firewall - Port Forwards" -msgstr "Cortafuegos - traspasos de puerto" +msgstr "Firewall - Reenvíos de puertos" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:12 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:42 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:172 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:9 msgid "Firewall - Traffic Rules" -msgstr "Cortafuegos - Reglas de tráfico" +msgstr "Firewall - Reglas de tráfico" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:15 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:28 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:11 msgid "Firewall - Zone Settings" -msgstr "Cortafuegos - Configuración de la zona" +msgstr "Firewall - Configuración de la zona" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:141 msgid "Force connection tracking" @@ -279,15 +279,15 @@ msgstr "Desde %s en %s con origen %s y %s" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:117 msgid "From %s on <var>this device</var>" -msgstr "Desde %s en <var> este dispositivo</var>" +msgstr "Desde %s en <var>este dispositivo</var>" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:115 msgid "From %s on <var>this device</var> with source %s" -msgstr "Desde %s en <var> este dispositivo </var> con la fuente %s" +msgstr "Desde %s en <var>este dispositivo</var> con la fuente %s" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:113 msgid "From %s on <var>this device</var> with source %s and %s" -msgstr "De %s en <var> este dispositivo </var> con la fuente %s y %s" +msgstr "De %s en <var>este dispositivo</var> con la fuente %s y %s" #: applications/luci-app-firewall/luasrc/controller/firewall.lua:10 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:56 @@ -297,7 +297,7 @@ msgstr "Configuración general" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:51 msgid "Hardware flow offloading" -msgstr "Descarga de flujo por hardware" +msgstr "Flow Offloading por hardware" #: applications/luci-app-firewall/luasrc/tools/firewall.lua:75 msgid "IP" @@ -333,7 +333,7 @@ msgstr "IPv6" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:187 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:120 msgid "IPv6 only" -msgstr "Sñolo IPv6" +msgstr "Sólo IPv6" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:74 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:25 @@ -402,15 +402,15 @@ msgid "" "on this host" msgstr "" "Coincidir con tráfico de entrada dirigido al puerto o rango de puertos " -"destino en esta máquina" +"destino en este host" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:91 msgid "" "Match incoming traffic originating from the given source port or port range " "on the client host." msgstr "" -"Coincidir con tráfico de entrada originado desde el puerto o rango de " -"puertos origen en la máquina cliente." +"Haga coincidir el tráfico entrante que se origina en el puerto de origen o " +"el rango de puertos en el host del cliente." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:339 msgid "Monday" @@ -418,7 +418,7 @@ msgstr "Lunes" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:346 msgid "Month Days" -msgstr "Meses Días" +msgstr "Días del mes" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:36 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:50 @@ -438,7 +438,7 @@ msgstr "Nueva regla SNAT" #: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:37 #: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:47 msgid "New forward rule" -msgstr "Nueva regla de traspaso" +msgstr "Nueva regla de reenvío" #: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:17 msgid "New input rule" @@ -470,8 +470,8 @@ msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" -"Coincidir sólo con tráfico de entrada originado desde el puerto o rango de " -"puertos origen en la máquina cliente" +"Solo coincida con el tráfico entrante que se origina desde el puerto de " +"origen o el rango de puertos en el host del cliente" #: applications/luci-app-firewall/luasrc/view/firewall/cbi_addrule.htm:7 msgid "Open ports on router" @@ -496,12 +496,12 @@ msgstr "Zona de salida" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:160 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:332 msgid "Passes additional arguments to iptables. Use with care!" -msgstr "Pasa más parámetros a IPTables. ¡Usar con cuidado!" +msgstr "Agrega más parámetros a iptables. ¡Utilice con cuidado!" #: applications/luci-app-firewall/luasrc/controller/firewall.lua:14 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:17 msgid "Port Forwards" -msgstr "Traspasos de puerto" +msgstr "Reenvíos de puertos" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:9 msgid "" @@ -523,11 +523,13 @@ msgstr "Protocolo" msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -"Redirigir el tráfico de entrada que coincida al puerto en la máquina interna" +"Redirigir el tráfico de entrada que coincida al puerto dado en el host " +"interno" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:128 msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "Redirigir el tráfico de entrada que coincida a la máquina interna" +msgstr "" +"Redirigir el tráfico de entrada que coincida al host interno especificado" #: applications/luci-app-firewall/luasrc/tools/firewall.lua:216 msgid "Refuse forward" @@ -548,7 +550,7 @@ msgstr "" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/custom.lua:29 msgid "Restart Firewall" -msgstr "Reiniciar Cortafuegos" +msgstr "Reiniciar Firewall" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:132 msgid "Restrict Masquerading to given destination subnets" @@ -585,7 +587,7 @@ msgstr "Reescribir a origen %s, %s" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:42 msgid "Routing/NAT Offloading" -msgstr "Enrutamiento/Descarga NAT" +msgstr "Enrutamiento/NAT Offloading" #: applications/luci-app-firewall/luasrc/tools/firewall.lua:245 msgid "Rule is disabled" @@ -609,11 +611,11 @@ msgstr "Sábado" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:47 msgid "Software based offloading for routing/NAT" -msgstr "Descarga basada en software para enrutamiento/NAT" +msgstr "Offloading basado en software para enrutamiento/NAT" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:46 msgid "Software flow offloading" -msgstr "Descarga de flujo por software" +msgstr "Flow Offloading por software" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:74 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:79 @@ -627,7 +629,7 @@ msgstr "Dirección MAC origen" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:194 msgid "Source NAT" -msgstr "NAT origen" +msgstr "Origen NAT" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:195 msgid "" @@ -635,7 +637,7 @@ msgid "" "control over the source IP used for outgoing traffic, for example to map " "multiple WAN addresses to internal subnets." msgstr "" -"NAT origen es una forma específica de enmascaramiento que permite el control " +"Origen NAT es una forma específica de enmascaramiento que permite el control " "fino del origen IP que se usa en el tráfico de salida por ejemplo para " "dirigir múltiples direcciones WAN a las subredes internas." @@ -671,7 +673,7 @@ msgstr "Fecha de finalización (aaaa-mm-dd)" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:355 msgid "Stop Time (hh:mm:ss)" -msgstr "Tiempo de parada (hh:mm:ss)" +msgstr "Hora de finalización (hh:mm:ss)" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:338 msgid "Sunday" @@ -682,8 +684,8 @@ msgid "" "The firewall creates zones over your network interfaces to control network " "traffic flow." msgstr "" -"El cortafuegos crea zonas sobre sus interfaces de red para controlar el " -"flujo del tráfico." +"El Firewall crea zonas sobre sus interfaces de red para controlar el flujo " +"del tráfico." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:158 msgid "" @@ -714,8 +716,8 @@ msgid "" "This page allows you to change advanced properties of the traffic rule " "entry, such as matched source and destination hosts." msgstr "" -"Propiedades avanzadas de la entrada \"reglas de tráfico\", como " -"coincidencias en puertos de origen y destino." +"Esta página le permite cambiar las propiedades avanzadas de la entrada de la " +"regla de tráfico, como los hosts de origen y destino coincidentes." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:36 msgid "" @@ -777,9 +779,9 @@ msgid "" "for example to reject traffic between certain hosts or to open WAN ports on " "the router." msgstr "" -"Las reglas de tráfico definen políticas para tramas que se mueven entre " -"zonas diferentes, por ejemplo para rechazar tráfico entre ciertas máquinas o " -"puertos WAN abiertos en el router." +"Las reglas de tráfico definen políticas para los paquetes que viajan entre " +"diferentes zonas, por ejemplo, para rechazar el tráfico entre ciertos hosts " +"o para abrir puertos WAN en el enrutador." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:340 msgid "Tuesday" @@ -818,7 +820,7 @@ msgid "" "You may specify multiple by selecting \"-- custom --\" and then entering " "protocols separated by space." msgstr "" -"Puede poner varios seleccionando \"-- perzonalizado --\" e introduciendo los " +"Puede poner varios seleccionando \"-- personalizado --\" e introduciendo los " "protocolos separados por espacio." #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:29 @@ -839,7 +841,7 @@ msgstr "Zonas" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:33 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:98 msgid "accept" -msgstr "aceptar" +msgstr "Aceptar" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:66 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forward-details.lua:78 @@ -863,7 +865,7 @@ msgstr "cualquiera" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:128 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:150 msgid "any host" -msgstr "cualquier máquina" +msgstr "cualquier host" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/forwards.lua:95 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rules.lua:111 @@ -884,7 +886,7 @@ msgstr "día" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:327 msgid "don't track" -msgstr "no seguir" +msgstr "No seguir" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/rule-details.lua:324 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zone-details.lua:81 @@ -919,7 +921,7 @@ msgstr "puertos" #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:31 #: applications/luci-app-firewall/luasrc/model/cbi/firewall/zones.lua:96 msgid "reject" -msgstr "rechazar" +msgstr "Rechazar" #: applications/luci-app-firewall/luasrc/tools/firewall.lua:183 msgid "second" diff --git a/applications/luci-app-hd-idle/po/es/hd_idle.po b/applications/luci-app-hd-idle/po/es/hd_idle.po index f741997f3d..7b076c53e2 100644 --- a/applications/luci-app-hd-idle/po/es/hd_idle.po +++ b/applications/luci-app-hd-idle/po/es/hd_idle.po @@ -1,17 +1,17 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-14 10:33+0200\n" -"PO-Revision-Date: 2012-08-22 17:44+0200\n" +"PO-Revision-Date: 2019-02-27 14:41-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-hd-idle/luasrc/model/cbi/hd_idle.lua:15 msgid "Disk" @@ -19,7 +19,7 @@ msgstr "Disco" #: applications/luci-app-hd-idle/luasrc/model/cbi/hd_idle.lua:13 msgid "Enable" -msgstr "Activar" +msgstr "Habilitar" #: applications/luci-app-hd-idle/luasrc/controller/hd_idle.lua:13 #: applications/luci-app-hd-idle/luasrc/model/cbi/hd_idle.lua:6 diff --git a/applications/luci-app-minidlna/po/es/minidlna.po b/applications/luci-app-minidlna/po/es/minidlna.po index ee3d46c42a..5777e7a644 100644 --- a/applications/luci-app-minidlna/po/es/minidlna.po +++ b/applications/luci-app-minidlna/po/es/minidlna.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2019-02-25 19:20-0300\n" +"PO-Revision-Date: 2019-02-27 21:04-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language-Team: none\n" "Language: es\n" @@ -18,7 +18,7 @@ msgstr "Configuración avanzada" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:136 msgid "Album art names" -msgstr "Imágenes de álbumes" +msgstr "Carátulas de álbumes" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:94 msgid "Allow wide links" @@ -34,7 +34,7 @@ msgstr "Número de serie declarado" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:126 msgid "Browse directory" -msgstr "Buscar directorio" +msgstr "Buscar carpeta" #: applications/luci-app-minidlna/luasrc/view/minidlna_status.htm:27 msgid "Collecting data..." @@ -42,7 +42,7 @@ msgstr "Recolectando información..." #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:77 msgid "Database directory" -msgstr "Directorio de la base de datos" +msgstr "Carpeta de la base de datos" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:18 msgid "Enable" @@ -54,7 +54,7 @@ msgstr "Habilitar TIVO" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:87 msgid "Enable inotify" -msgstr "Habilitar inotify" +msgstr "Habilitar Inotify" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:72 msgid "Friendly name" @@ -70,11 +70,11 @@ msgstr "Interfaces" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:82 msgid "Log directory" -msgstr "Directorio de registro" +msgstr "Carpeta de registro" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:132 msgid "Media directories" -msgstr "Directorios de medios" +msgstr "Carpetas de medios" #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:7 msgid "" @@ -146,14 +146,14 @@ msgid "" "Set this if you would like to specify the directory where you want MiniDLNA " "to store its database and album art cache." msgstr "" -"Indicar el directorio en el que MiniDLNA guardará su base de datos y la " -"caché de álbumes." +"Indique la carpeta en la que MiniDLNA guardará su base de datos y la caché " +"de álbumes." #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:83 msgid "" "Set this if you would like to specify the directory where you want MiniDLNA " "to store its log file." -msgstr "Indicar el directorio donde MiniDLNA guardará su archivo de registro." +msgstr "Indique la carpeta en donde MiniDLNA guardará su archivo de registro." #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:95 msgid "" @@ -190,14 +190,14 @@ msgid "" "audio, 'V' for video, 'P' for images), followed by a comma, to the directory " "(eg. A,/mnt/media/Music). Multiple directories can be specified." msgstr "" -"Directorio a explorar. Si quiere restringir el directorio a un contenido " +"Carpeta a explorar. Si quiere restringir el directorio a un contenido " "específico puede añadir el tipo ('A' par audio, 'V' para vídeo o 'P' para " "imágenes), seguido por una coma al nombre del directorio (ej. A,/mnt/media/" "Music). Se puede establecer varios directorios." #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:120 msgid "Specify the path to the MiniSSDPd socket." -msgstr "Camino al socket de MiniSSDPd." +msgstr "Especifique la ruta al socket de MiniSSDPd." #: applications/luci-app-minidlna/luasrc/model/cbi/minidlna.lua:125 msgid "Standard container" diff --git a/applications/luci-app-mwan3/po/es/mwan3.po b/applications/luci-app-mwan3/po/es/mwan3.po new file mode 100644 index 0000000000..eae5ebc964 --- /dev/null +++ b/applications/luci-app-mwan3/po/es/mwan3.po @@ -0,0 +1,881 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:187 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:207 +msgid "%d hour" +msgstr "%d hora" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:182 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:202 +msgid "%d minute" +msgstr "%d minuto" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:167 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:168 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:185 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:186 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:203 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:204 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +msgid "%d minutes" +msgstr "%d minutos" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:48 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:196 +msgid "%d second" +msgstr "%d segundo" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:49 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:51 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:52 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:149 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:151 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:152 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:154 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:161 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:162 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:163 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:165 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:177 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:179 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:180 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:197 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:198 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:199 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:200 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:201 +msgid "%d seconds" +msgstr "%d segundos" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "-- Por favor elija --" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:59 +msgid "" +"Acceptable values: 1-100. This many Tracking IP addresses must respond for " +"the link to be deemed up" +msgstr "" +"Valores aceptables: 1-100. Esta cantidad de direcciones IP de seguimiento " +"debe responder para que el enlace se considere activo." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 +msgid "Acceptable values: 1-1000. Defaults to 1 if not set" +msgstr "" +"Valores aceptables: 1-1000. El valor predeterminado es 1 si no se establece" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 +msgid "Acceptable values: 1-256. Defaults to 1 if not set" +msgstr "" +"Valores aceptables: 1-256. El valor predeterminado es 1 si no se establece" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "Alerta" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 +msgid "All required IP rules for interface %s found" +msgstr "Se encontraron todas las reglas de IP requeridas para la interfaz %s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 +msgid "Also scan this Routing table for connected networks" +msgstr "También escanee esta tabla de enrutamiento para redes conectadas" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:73 +msgid "Check IP rules" +msgstr "Comprobar reglas de IP" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 +msgid "Check link quality" +msgstr "Comprobar calidad del enlace" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:74 +msgid "Check routing table" +msgstr "Ver tabla de enrutamiento" + +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:97 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:34 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:34 +msgid "Collecting data..." +msgstr "Recolectando datos..." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "Crítico" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "Depurar" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +msgid "Destination address" +msgstr "Dirección de destino" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +msgid "Destination port" +msgstr "Puerto de destino" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:11 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:11 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_interface.htm:11 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:11 +msgid "Detail" +msgstr "Detalles" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:12 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:12 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_interface.htm:12 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:12 +msgid "Diagnostics" +msgstr "Diagnósticos" + +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 +msgid "Disabled" +msgstr "Deshabilitado" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:224 +msgid "" +"Downed interface will be deemed up after this many successful ping tests" +msgstr "" +"La interfaz inactiva se considerará activa después de tantas pruebas de ping " +"exitosas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "Emergencia" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +msgid "Enabled" +msgstr "Habilitado" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" +"Habilita el registro de reglas de firewall (el registro global de mwan3 " +"también debe estar habilitado)" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "Habilita el registro de firewall global" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 +msgid "Enter value in hex, starting with <code>0x</code>" +msgstr "Ingrese el valor en hexadecimal, comenzando con <code>0x</code>" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "Error" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 +msgid "Execute" +msgstr "Ejecutar" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 +msgid "Expect interface state on up event" +msgstr "Esperar el estado de la interfaz en el evento" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 +msgid "Failure interval" +msgstr "Intervalo de fracaso" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "Nivel de firewall" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 +msgid "Firewall mask" +msgstr "Mascara de Firewall" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 +msgid "Flush conntrack table" +msgstr "Purgar mesa de conexión" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 +msgid "Flush global firewall conntrack table on interface events" +msgstr "" +"Vaciar la tabla de conexiones de firewall global en los eventos de la " +"interfaz" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:45 +msgid "Globals" +msgstr "Globales" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:76 +msgid "Hotplug ifdown" +msgstr "Hotplug ifdown" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:75 +msgid "Hotplug ifup" +msgstr "Hotplug ifup" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 +msgid "How often should rtmon update the interface routing table" +msgstr "" +"¿Con qué frecuencia debe rtmon actualizar la tabla de enrutamiento de la " +"interfaz?" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:29 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:56 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:29 +msgid "INFO: MWAN not running" +msgstr "INFO: MWAN no se está ejecutando" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:56 +msgid "IPset" +msgstr "IPset" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:33 +msgid "IPv4" +msgstr "IPv4" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +msgid "IPv6" +msgstr "IPv6" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "Info" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +msgid "Initial state" +msgstr "Estado inicial" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_interface.htm:10 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:10 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +msgid "Interface down" +msgstr "Bajar interfaz" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +msgid "Interface up" +msgstr "Levantar interfaz" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 +msgid "Interface will be deemed down after this many failed ping tests" +msgstr "" +"La interfaz se considerará inactiva después de tantas pruebas de ping " +"fallidas" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:48 +msgid "Interfaces" +msgstr "Interfaces" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +msgid "Internet Protocol" +msgstr "Protocolo de Internet" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +msgid "Keep failure interval" +msgstr "Mantener el intervalo de falla" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 +msgid "Keep ping failure interval during failure state" +msgstr "Mantener el intervalo de falla de ping durante el estado de falla" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +msgid "Last resort" +msgstr "Último recurso" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:19 +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:41 +msgid "Load Balancing" +msgstr "Balanceo de carga" + +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:96 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:33 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:36 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:33 +msgid "Loading" +msgstr "Cargando" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "Logging" +msgstr "Iniciar sesión" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "Nivel de registro" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 +msgid "MWAN - Globals" +msgstr "MWAN - Globales" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 +msgid "MWAN - Interfaces" +msgstr "MWAN - Interfaces" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 +msgid "MWAN - Members" +msgstr "MWAN - Miembros" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 +msgid "MWAN - Notification" +msgstr "MWAN - Notificación" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 +msgid "MWAN - Policies" +msgstr "MWAN - Políticas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 +msgid "MWAN - Rules" +msgstr "MWAN - Reglas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 +msgid "MWAN Interface Configuration - %s" +msgstr "Configuración de la interfaz MWAN -%s" + +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 +msgid "MWAN Interfaces" +msgstr "Interfaces MWAN" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 +msgid "MWAN Member Configuration - %s" +msgstr "Configuración de miembros de MWAN -%s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 +msgid "MWAN Policy Configuration - %s" +msgstr "Configuración de la política MWAN -%s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 +msgid "MWAN Rule Configuration - %s" +msgstr "Configuración de la regla MWAN -%s" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:27 +msgid "MWAN Status - Detail" +msgstr "Estado de MWAN - Detalle" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:54 +msgid "MWAN Status - Diagnostics" +msgstr "Estado de MWAN - Diagnóstico" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:27 +msgid "MWAN Status - Troubleshooting" +msgstr "Estado de MWAN - Resolución de problemas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:143 +msgid "" +"MWAN supports up to 252 physical and/or logical interfaces<br />MWAN " +"requires that all interfaces have a unique metric configured in /etc/config/" +"network<br />Names must match the interface name found in /etc/config/" +"network<br />Names may contain characters A-Z, a-z, 0-9, _ and no spaces<br /" +">Interfaces may not share the same name as configured members, policies or " +"rules" +msgstr "" +"MWAN admite hasta 252 interfaces físicas y/o lógicas<br />MWAN requiere que " +"todas las interfaces tengan una métrica única configurada en /etc/config/" +"network<br />Los nombres deben coincidir con el nombre de la interfaz que se " +"encuentra en / etc / config / network <br /> Los nombres pueden contener " +"caracteres AZ, az, 0-9, _ y sin espacios<br />Las interfaces no pueden " +"compartir el mismo nombre que los miembros configurados, políticas o reglas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 +msgid "Max TTL" +msgstr "Máx TTL" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 +msgid "Max packet latency [ms]" +msgstr "Latencia máxima de paquetes [ms]" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 +msgid "Max packet loss [%]" +msgstr "Pérdida máxima de paquetes [%]" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:34 +msgid "" +"May be entered as a single or multiple port(s) (eg \"22\" or \"80,443\") or " +"as a portrange (eg \"1024:2048\") without quotes" +msgstr "" +"Puede ingresarse como uno o varios puertos (por ejemplo, \"22\" o " +"\"80,443\") o como un puerto (por ejemplo, \"1024:2048\") sin comillas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 +msgid "Member" +msgstr "Miembro" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 +msgid "Member used" +msgstr "Miembro utilizado" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:51 +msgid "Members" +msgstr "Miembros" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:12 +msgid "" +"Members are profiles attaching a metric and weight to an MWAN interface<br /" +">Names may contain characters A-Z, a-z, 0-9, _ and no spaces<br />Members " +"may not share the same name as configured interfaces, policies or rules" +msgstr "" +"Los miembros son perfiles que adjuntan una métrica y peso a una interfaz " +"MWAN<br />Los nombres pueden contener los caracteres A-Z, a-z, 0-9, _ y sin " +"espacios<br />Los miembros no pueden compartir el mismo nombre que las " +"interfaces, políticas o reglas configuradas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 +msgid "Members assigned" +msgstr "Miembros asignados" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +msgid "Metric" +msgstr "Métrica" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 +msgid "Min packet latency [ms]" +msgstr "Latencia mínima de paquetes [ms]" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 +msgid "Min packet loss [%]" +msgstr "Pérdida mínima de paquetes [%]" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:190 +msgid "Missing both IP rules for interface %s" +msgstr "Faltan ambas reglas de IP para la interfaz %s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:57 +msgid "" +"Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" +"youtube.com/youtube\")" +msgstr "" +"Nombre de la regla IPset. Requiere la regla de IPset en /etc/dnsmasq.conf " +"(por ejemplo, \"ipset=/youtube.com/youtube\")" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:166 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +msgid "No" +msgstr "No" + +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 +msgid "No MWAN interfaces found" +msgstr "No se encontraron interfaces MWAN" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:159 +msgid "No gateway for interface %s found." +msgstr "No se ha encontrado ninguna puerta de enlace para la interfaz %s." + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:168 +msgid "No tracking Hosts for interface %s defined." +msgstr "No se han definido Hosts de seguimiento para la interfaz %s." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "Nota" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 +msgid "Notification" +msgstr "Notificación" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:42 +msgid "Offline" +msgstr "Fuera de línea" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:34 +msgid "Online" +msgstr "En línea" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:182 +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:186 +msgid "Only one IP rules for interface %s found" +msgstr "Solo se encontró una regla de IP para la interfaz %s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 +msgid "Ping count" +msgstr "Recuento de ping" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:71 +msgid "Ping default gateway" +msgstr "Ping a puerta de enlace predeterminada" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +msgid "Ping interval" +msgstr "Intervalo de ping" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 +msgid "Ping interval during failure detection" +msgstr "Intervalo de ping durante la detección de fallos" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 +msgid "Ping interval during failure recovering" +msgstr "Intervalo de ping durante la recuperación de fallos" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 +msgid "Ping size" +msgstr "Tamaño de ping" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 +msgid "Ping timeout" +msgstr "Tiempo de espera de ping" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:72 +msgid "Ping tracking IP" +msgstr "Ping de seguimiento de IP" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:54 +msgid "Policies" +msgstr "Políticas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:42 +msgid "" +"Policies are profiles grouping one or more members controlling how MWAN " +"distributes traffic<br />Member interfaces with lower metrics are used " +"first<br />Member interfaces with the same metric will be load-balanced<br /" +">Load-balanced member interfaces distribute more traffic out those with " +"higher weights<br />Names may contain characters A-Z, a-z, 0-9, _ and no " +"spaces<br />Names must be 15 characters or less<br />Policies may not share " +"the same name as configured interfaces, members or rules" +msgstr "" +"Las políticas son perfiles que agrupan a uno o más miembros que controlan la " +"forma en que MWAN distribuye el tráfico<br />Las interfaces de los miembros " +"con métricas más bajas se utilizan primero<br />Las interfaces de los " +"miembros con la misma métrica tendrán carga equilibrada. más tráfico para " +"aquellos con mayor peso<br />Los nombres pueden contener caracteres AZ, az, " +"0-9, _ y sin espacios<br />Los nombres deben tener 15 caracteres o menos<br /" +">Las políticas no pueden compartir el mismo nombre que interfaces " +"configuradas, miembros o reglas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 +msgid "Policy" +msgstr "Política" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 +msgid "Policy assigned" +msgstr "Política asignada" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +msgid "Protocol" +msgstr "Protocolo" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 +msgid "Recovery interval" +msgstr "Intervalo de recuperación" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:61 +msgid "Routing table %d" +msgstr "Tabla de enrutamiento %d" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:196 +msgid "Routing table %s for interface %s found" +msgstr "Tabla de enrutamiento %s para la interfaz %s encontrada" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:200 +msgid "Routing table %s for interface %s not found" +msgstr "No se encontró la tabla de enrutamiento %s para la interfaz %s" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 +msgid "Routing table lookup" +msgstr "Tabla de enrutamiento de búsqueda" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 +msgid "Rule" +msgstr "Regla" + +#: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:57 +msgid "Rules" +msgstr "Reglas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:47 +msgid "" +"Rules specify which traffic will use a particular MWAN policy<br />Rules are " +"based on IP address, port or protocol<br />Rules are matched from top to " +"bottom<br />Rules below a matching rule are ignored<br />Traffic not " +"matching any rule is routed using the main routing table<br />Traffic " +"destined for known (other than default) networks is handled by the main " +"routing table<br />Traffic matching a rule, but all WAN interfaces for that " +"policy are down will be blackholed<br />Names may contain characters A-Z, a-" +"z, 0-9, _ and no spaces<br />Rules may not share the same name as configured " +"interfaces, members or policies" +msgstr "" +"Las reglas especifican qué tráfico utilizará una política MWAN " +"particular<br />Las reglas se basan en la dirección IP, el puerto o el " +"protocolo<br />Las reglas coinciden de arriba a abajo<br />Las reglas que " +"están debajo de una regla coincidente se ignoran<br />El tráfico que no " +"coincide con ninguna regla se enruta mediante la tabla de enrutamiento " +"principal<br />El tráfico destinado a redes conocidas (distintas de las " +"predeterminadas) se maneja mediante la tabla de enrutamiento principal<br /" +">El tráfico coincide con una regla, pero todas las interfaces WAN para esa " +"política son down se quedará en negrita<br />Los nombres pueden contener " +"caracteres AZ, az, 0-9, _ y sin espacios<br />Las reglas no pueden compartir " +"el mismo nombre que las interfaces, miembros o políticas configuradas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" +msgstr "" +"Segundos. Valores aceptables: 1-1000000. El valor predeterminado es 600 si " +"no se establece" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +msgid "Source address" +msgstr "Dirección de origen" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +msgid "Source port" +msgstr "Puerto de origen" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +msgid "Sticky" +msgstr "Pegajoso" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 +msgid "Sticky timeout" +msgstr "Tiempo de espera pegajoso" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +msgid "Supports CIDR notation (eg \"192.168.100.0/24\") without quotes" +msgstr "" +"Admite la notación CIDR (por ejemplo, \"192.168.100.0/24\") sin comillas" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:69 +msgid "Task" +msgstr "Tarea" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 +msgid "There are currently %d of %d supported interfaces configured" +msgstr "Actualmente hay %d de %d interfaces compatibles configuradas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:246 +msgid "" +"This displays the metric assigned to this interface in /etc/config/network" +msgstr "" +"Esto muestra la métrica asignada a esta interfaz en /etc/config/network" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:37 +msgid "" +"This hostname or IP address will be pinged to determine if the link is up or " +"down. Leave blank to assume interface is always online" +msgstr "" +"Se hará un ping a este nombre de host o dirección IP para determinar si el " +"enlace está activo o inactivo. Deje en blanco para asumir que la interfaz " +"está siempre en línea" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:14 +msgid "" +"This section allows you to modify the content of \"/etc/mwan3.user\".<br /" +">The file is also preserved during sysupgrade.<br /><br />Notes:<br />This " +"file is interpreted as a shell script.<br />The first line of the script " +"must be "#!/bin/sh" without quotes.<br />Lines beginning with # are " +"comments and are not executed.<br />Put your custom mwan3 action here, they " +"will<br />be executed with each netifd hotplug interface event<br />on " +"interfaces for which mwan3 is enabled.<br /><br />There are three main " +"environment variables that are passed to this script.<br /><br />$ACTION " +"<br />* \"ifup\" Is called by netifd and mwan3track <br />* \"ifdown\" Is " +"called by netifd and mwan3track <br />* \"connected\" Is only called by " +"mwan3track if tracking was successful <br />* \"disconnected\" Is only " +"called by mwan3track if tracking has failed <br />$INTERFACE Name of the " +"interface which went up or down (e.g. \"wan\" or \"wwan\")<br />$DEVICE " +"Physical device name which interface went up or down (e.g. \"eth0\" or " +"\"wwan0\")<br /><br />" +msgstr "" +"Esta sección le permite modificar el contenido de \"/etc/mwan3.user\".<br /" +">El archivo también se conserva durante sysupgrade.<br /><br />Notas:<br /" +">Este archivo se interpreta como un shell script.<br />La primera línea del " +"script debe ser "#!/bin/sh" sin comillas.<br />Las líneas que " +"comienzan con # son comentarios y no se ejecutan.<br />Ponga su acción mwan3 " +"personalizada aquí, se ejecutarán<br />con cada evento de la interfaz " +"hotplug de Netifd<br />en las interfaces para las que mwan3 está habilitado." +"<br /><br />Hay tres variables de entorno principales que se pasan a este " +"script.<br /><br />$ACTION <br />* \"ifup\" es llamado por netifd y " +"mwan3track <br />* \"ifdown\" es llamado por netifd y mwan3track <br />* " +"\"conectado\" Sólo es llamado por mwan3track si el seguimiento fue exitoso " +"<br />* \"desconectado\" Sólo es llamado por mwan3track si el seguimiento ha " +"fallado <br />$INTERFAZ Nombre de la interfaz que subió o bajó (por ejemplo, " +"\"wan\" o \"wwan\")<br />$DISPOSITIVO Nombre del dispositivo físico cuya " +"interfaz subió o bajó (por ejemplo, \"eth0\" o \"w wan0 \")<br /><br />" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 +msgid "Tracking hostname or IP address" +msgstr "Seguimiento de nombre de host o dirección IP" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +msgid "Tracking method" +msgstr "Método de seguimiento" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +msgid "Tracking reliability" +msgstr "Fiabilidad de seguimiento" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +msgid "" +"Traffic from the same source IP address that previously matched this rule " +"within the sticky timeout period will use the same WAN interface" +msgstr "" +"El tráfico de la misma dirección IP de origen que coincidía anteriormente " +"con esta regla dentro del período de tiempo de espera fijo utilizará la " +"misma interfaz WAN" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:13 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:13 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_interface.htm:13 +#: applications/luci-app-mwan3/luasrc/view/mwan/status_troubleshooting.htm:13 +msgid "Troubleshooting" +msgstr "Solución de problemas" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 +msgid "Update interval" +msgstr "Intervalo de actualización" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 +msgid "View the content of /etc/protocols for protocol description" +msgstr "Ver el contenido de /etc/protocol para la descripción del protocolo." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 +msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" +msgstr "" +"ADVERTENCIA: %d interfaces están configuradas excediendo el máximo de %d!" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 +msgid "WARNING: Interface %s are not found in /etc/config/network" +msgstr "ADVERTENCIA: La interfaz %s no se encuentra en /etc/config/network" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 +msgid "WARNING: Interface %s has a duplicate metric %s configured" +msgstr "ADVERTENCIA: La interfaz %s tiene una métrica duplicada %s configurada" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:38 +msgid "" +"WARNING: Interface %s has a higher reliability requirement than tracking " +"hosts (%d)" +msgstr "" +"ADVERTENCIA: La interfaz %s tiene un requisito de confiabilidad más alto que " +"los hosts de seguimiento (%d)" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:32 +msgid "WARNING: Interface %s has no default route in the main routing table" +msgstr "" +"ADVERTENCIA: La interfaz %s no tiene una ruta predeterminada en la tabla de " +"enrutamiento principal" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 +msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" +msgstr "" +"ADVERTENCIA: La política %s excede el número máximo de 15 caracteres en el " +"nombre" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:34 +msgid "" +"WARNING: Rule %s have a port configured with no or improper protocol " +"specified!" +msgstr "" +"ADVERTENCIA: ¡La regla %s tiene un puerto configurado sin protocolo o con " +"protocolo incorrecto especificado!" + +#: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:37 +msgid "Waiting for command to complete..." +msgstr "Esperando que el comando se complete..." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "Advertencia" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +msgid "Weight" +msgstr "Peso" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 +msgid "" +"When all policy members are offline use this behavior for matched traffic" +msgstr "" +"Cuando todos los miembros de la política están fuera de línea, utilice este " +"comportamiento para el tráfico coincidente" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:49 +msgid "Yes" +msgstr "Si" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 +msgid "always" +msgstr "siempre" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 +msgid "blackhole (drop)" +msgstr "agujero negro (caída)" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 +msgid "default (use main routing table)" +msgstr "predeterminado (usar tabla de enrutamiento principal)" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:241 +msgid "ifdown" +msgstr "ifdown" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:240 +msgid "ifup" +msgstr "ifup" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 +msgid "never" +msgstr "nunca" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 +msgid "unreachable (reject)" +msgstr "inalcanzable (rechazar)" diff --git a/applications/luci-app-nft-qos/po/es/nft-qos.po b/applications/luci-app-nft-qos/po/es/nft-qos.po new file mode 100644 index 0000000000..2d729e001e --- /dev/null +++ b/applications/luci-app-nft-qos/po/es/nft-qos.po @@ -0,0 +1,241 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:136 +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:155 +msgid "Bytes Total" +msgstr "Total de bytes" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:141 +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:160 +msgid "Collecting data..." +msgstr "Recolectando datos..." + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +msgid "Comment" +msgstr "Comentario" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +msgid "Default Download Rate" +msgstr "Velocidad de descarga predeterminada" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +msgid "Default Download Unit" +msgstr "Unidad de descarga predeterminada" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +msgid "Default Network Interface" +msgstr "Interfaz de red predeterminada" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +msgid "Default Upload Rate" +msgstr "Velocidad de carga predeterminada" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +msgid "Default Upload Unit" +msgstr "Unidad de carga predeterminada" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +msgid "Default unit for download rate" +msgstr "Unidad predeterminada para la velocidad de descarga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +msgid "Default unit for upload rate" +msgstr "Unidad predeterminada para la velocidad de carga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +msgid "Default value for download bandwidth" +msgstr "Valor predeterminado para el ancho de banda de descarga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +msgid "Default value for download rate" +msgstr "Valor predeterminado para la velocidad de descarga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +msgid "Default value for upload bandwidth" +msgstr "Valor predeterminado para el ancho de banda de carga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +msgid "Default value for upload rate" +msgstr "Valor predeterminado para la velocidad de carga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +msgid "Download Bandwidth (Mbps)" +msgstr "Ancho de banda de descarga (Mbps)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 +msgid "Download Rate" +msgstr "Velocidad de descarga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +msgid "Enable Limit Rate Feature" +msgstr "Habilitar función de límite de velocidad" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +msgid "Enable Traffic Priority" +msgstr "Habilitar prioridad de tráfico" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +msgid "Enable this feature" +msgstr "Habilitar esta característica" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:121 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:158 +msgid "Hostname" +msgstr "Nombre de host" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:134 +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:153 +msgid "IP Address" +msgstr "Dirección IP" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:126 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:163 +msgid "IP Address(V4 / V6)" +msgstr "Dirección IP (v4/v6)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:128 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:165 +msgid "IP Address(V4 Only)" +msgstr "Dirección IP (sólo v4)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +msgid "Limit Enable" +msgstr "Habilitar límite" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +msgid "Limit Type" +msgstr "Tipo de límite" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:135 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:172 +msgid "MAC (optional)" +msgstr "MAC (opcional)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 +msgid "MB" +msgstr "MB" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:28 +msgid "NFT-QoS Settings" +msgstr "Configuración de NFT-QoS" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +msgid "Network Interface for Traffic Shaping, e.g. br-lan, eth0.1, eth0, etc" +msgstr "Interfaz de red para configuración de tráfico, por ejemplo, br-lan, eth0.1, eth0, etc." + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +msgid "Network to be apply, e.g. 192.168.1.0/24, 10.2.0.0/16, etc" +msgstr "Red a aplicar, por ejemplo. 192.168.1.0/24, 10.2.0.0/16, etc." + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +msgid "Network to be apply, e.g. AAAA::BBBB/64, CCCC::1/128, etc" +msgstr "Red a aplicar, por ejemplo. AAAA::BBBB/64, CCCC::1/128, etc." + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 +msgid "No information available" +msgstr "No hay información disponible" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:137 +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:156 +msgid "Packets Total" +msgstr "Paquetes totales" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +msgid "Priority" +msgstr "Prioridad" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +msgid "Protocol" +msgstr "Protocolo" + +#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:16 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:23 +msgid "Qos over Nftables" +msgstr "Qos sobre Nftables" + +#: applications/luci-app-nft-qos/luasrc/controller/nft-qos.lua:12 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:139 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:176 +msgid "Rate" +msgstr "Velocidad" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 +msgid "Realtime Download Rate" +msgstr "Velocidad de descarga en tiempo real" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 +msgid "Realtime Rate" +msgstr "Velocidad en tiempo real" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 +msgid "Realtime Upload Rate" +msgstr "Velocidad de carga en tiempo real" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +msgid "Service" +msgstr "Servicio" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +msgid "Static QoS-Download Rate" +msgstr "Velocidad de descarga de QoS estática" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +msgid "Static QoS-Upload Rate" +msgstr "Velocidad de carga de QoS estática" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +msgid "Target Network (IPv4/MASK)" +msgstr "Red de destino (IPv4 / MASK)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +msgid "Target Network6 (IPv6/MASK)" +msgstr "Red de destino 6 (IPv6/MÁSCARA)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 +msgid "This page gives an overview over currently download/upload rate." +msgstr "Esta página ofrece una vista general sobre la velocidad de descarga/carga actual." + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +msgid "Traffic Priority Settings" +msgstr "Ajustes de prioridad de tráfico" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +msgid "Type of Limit Rate" +msgstr "Tipo de límite de velocidad" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:144 +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:181 +msgid "Unit" +msgstr "Unidad" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +msgid "Upload Bandwidth (Mbps)" +msgstr "Ancho de banda de carga (Mbps)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 +msgid "Upload Rate" +msgstr "Velocidad de carga" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +msgid "White List for Limit Rate" +msgstr "Lista blanca para el límite de velocidad" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +msgid "e.g. https, 23, (separator is comma)" +msgstr "p.ej. https, 23, (el separador es una coma)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 +msgid "kB" +msgstr "kB" diff --git a/applications/luci-app-noddos/po/es/noddos.po b/applications/luci-app-noddos/po/es/noddos.po new file mode 100644 index 0000000000..8349548335 --- /dev/null +++ b/applications/luci-app-noddos/po/es/noddos.po @@ -0,0 +1,143 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:48 +msgid "Class" +msgstr "Clase" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:5 +msgid "Client Firewall" +msgstr "Firewall del cliente" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:35 +msgid "Clients" +msgstr "Clientes" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:83 +msgid "DhcpHostname" +msgstr "Nombre de host de Dhcp" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:82 +msgid "DhcpVendor" +msgstr "Proveedor de Dhcp" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:25 +msgid "Don't monitor these IPv4 addresses" +msgstr "No monitoree estas direcciones IPv4" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:33 +msgid "Don't monitor these IPv6 addresses" +msgstr "No monitoree estas direcciones IPv6" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:40 +msgid "Don't monitor these MAC addresses" +msgstr "No monitoree estas direcciones MAC" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:24 +msgid "Excluded IPv4 addresses" +msgstr "Direcciones IPv4 excluidas" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:32 +msgid "Excluded IPv6 addresses" +msgstr "Direcciones IPv6 excluidas" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:39 +msgid "Excluded MAC addresses" +msgstr "Direcciones MAC excluidas" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:43 +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:77 +msgid "Hostname" +msgstr "Nombre de host" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:44 +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:78 +msgid "IPv4" +msgstr "IPv4" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:45 +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:79 +msgid "MAC" +msgstr "MAC" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:46 +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:80 +msgid "Manufacturer" +msgstr "Fabricante" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:47 +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:81 +msgid "Model" +msgstr "Modelo" + +#: applications/luci-app-noddos/luasrc/controller/noddos.lua:8 +msgid "Noddos Client Tracking" +msgstr "Seguimiento de clientes Noddos" + +#: applications/luci-app-noddos/luasrc/controller/noddos.lua:7 +msgid "Noddos Clients" +msgstr "Clientes Noddos" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:6 +msgid "" +"Noddos controls traffic from the clients on your network to the Internet. " +"This helps protect your network, the bandwidth on your Internet connection " +"and the Internet" +msgstr "" +"Noddos controla el tráfico de los clientes en su red a Internet. Esto ayuda " +"a proteger su red, el ancho de banda en su conexión a Internet e Internet." + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:15 +msgid "Private networks" +msgstr "Redes privadas" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:39 +msgid "Recognized Clients" +msgstr "Clientes reconocidos" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:16 +msgid "" +"Report traffic to private networks (10/8, 172.16/12, 192.168/16, " +"fd75:6b5d:352c:ed05::/64)" +msgstr "" +"Informe de tráfico a redes privadas (10/8, 172.16/12, 192.168/16, " +"fd75:6b5d:352c:ed05::/64)" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:10 +msgid "Server Settings" +msgstr "Configuración del servidor" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:36 +msgid "" +"The following clients have been discovered on the network. The last " +"discovery was completed at" +msgstr "" +"Los siguientes clientes han sido descubiertos en la red. El último " +"descubrimiento se completó en" + +#: applications/luci-app-noddos/luasrc/view/noddos/clients.htm:73 +msgid "Unrecognized Clients" +msgstr "Clientes no reconocidos" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:19 +msgid "Upload anonimized traffic stats" +msgstr "Subir estadísticas de tráfico anonimizadas" + +#: applications/luci-app-noddos/luasrc/model/cbi/noddos.lua:20 +msgid "" +"Uploading your statistics helps improving device recognition and discovering " +"hacked devices & botnets" +msgstr "" +"Cargar sus estadísticas ayuda a mejorar el reconocimiento de dispositivos y " +"descubrir dispositivos botnets pirateados" diff --git a/applications/luci-app-olsr/po/es/olsr.po b/applications/luci-app-olsr/po/es/olsr.po index 5251e9dba2..15b335e732 100644 --- a/applications/luci-app-olsr/po/es/olsr.po +++ b/applications/luci-app-olsr/po/es/olsr.po @@ -1,17 +1,17 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2014-06-15 13:17+0200\n" +"PO-Revision-Date: 2019-02-28 14:16-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-olsr/luasrc/view/status-olsr/mid.htm:13 msgid "Active MID announcements" @@ -23,7 +23,7 @@ msgstr "Nodos OLSR activos" #: applications/luci-app-olsr/luasrc/view/status-olsr/hna.htm:82 msgid "Active host net announcements" -msgstr "Declaraciones activas de máquinas en la red" +msgstr "Declaraciones activas de dispositivos en la red" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 @@ -33,7 +33,7 @@ msgstr "Configuración avanzada" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 msgid "Allow gateways with NAT" -msgstr "Permitir pasarelas con NAT" +msgstr "Permitir puertas de enlace con NAT" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 @@ -75,9 +75,8 @@ msgstr "Sólo puede ser una dirección IPv4 o IPv6 válidas o \"por defecto\"" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:259 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:90 -#, fuzzy msgid "Can only be a valid IPv6 address or 'default'" -msgstr "Sólo puede ser una dirección IPv4 o IPv6 válidas o \"por defecto\"" +msgstr "Solo puede ser una dirección IPv6 válida o 'predeterminada'" #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:198 msgid "Configuration" @@ -123,7 +122,7 @@ msgstr "ETX" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 msgid "Enable" -msgstr "Activar" +msgstr "Habilitar" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 @@ -131,18 +130,18 @@ msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -"Activar SmartGateway. Si se desactiva el resto de parámetros de SmartGateway " -"se ignoran. \"No\" por defecto." +"Habilitar SmartGateway. Si se deshabilita el resto de parámetros de " +"SmartGateway se ignoran. \"No\" por defecto." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 msgid "Enable this interface." -msgstr "Activar esta interfaz." +msgstr "Habilitar esta interfaz." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 msgid "Enabled" -msgstr "Activado" +msgstr "Habilitado" #: applications/luci-app-olsr/luasrc/view/status-olsr/legend.htm:5 msgid "Expected retransmission count" @@ -233,9 +232,8 @@ msgid "HNA validity time" msgstr "Tiempo de validez de HNA" #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:24 -#, fuzzy msgid "HNA6 Announcements" -msgstr "Declaraciones HNA" +msgstr "Anuncios HNA6" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 @@ -294,13 +292,12 @@ msgstr "" "usando mensajes HNA." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:7 -#, fuzzy msgid "" "Hosts in a OLSR routed network can announce connecitivity to external " "networks using HNA6 messages." msgstr "" -"Las máquinas de una red OLSR pueden declarar conectividad con redes externas " -"usando mensajes HNA." +"Los hosts en una red enrutada OLSR pueden anunciar la conectividad a redes " +"externas utilizando mensajes HNA6." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 @@ -694,17 +691,16 @@ msgstr "" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:71 -#, fuzzy msgid "" "Multiply routes with the factor given here. Allowed values are between 0.01 " "and 1.0. It is only used when LQ-Level is greater than 0. Examples:<br /" ">reduce LQ to fd91:662e:3c58::1 by half: fd91:662e:3c58::1 0.5<br />reduce " "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -"Multiplicar las rutas con el factor dado aquí. Los valores permitidos está " -"entre 0,01 y 1,0. Se usa sólo cuando el nivel LQ es mayor que 0. Ejemplos:" -"<br />reducir LQ a 192.168.0.1 por la mitad: 192.168.0.1 0,5<br />reducir LQ " -"a todos los nodos de esta interfaz el 20%: default 0,8" +"Multiplica las rutas con el factor dado aquí. Los valores permitidos están " +"entre 0.01 y 1.0. Solo se usa cuando LQ-Level es mayor que 0. Ejemplos:<br /" +">reduce LQ a fd91:662e:3c58::1 a la mitad: fd91:662e:3c58::1 0.5<br />reduce " +"LQ a todos los nodos en esta interfaz en un 20%: por defecto 0,8" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 @@ -769,9 +765,8 @@ msgid "OLSR - HNA-Announcements" msgstr "OLSR - Declaraciones HNA" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:7 -#, fuzzy msgid "OLSR - HNA6-Announcements" -msgstr "OLSR - Declaraciones HNA" +msgstr "OLSR - Anuncios HNA" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 @@ -893,9 +888,9 @@ msgid "" "if you use public IPs and have unstable DNS-Setup then those pages will load " "really slow. In this case disable it here." msgstr "" -"Calcula los nombres de máquina en las páginas de estado. Suele ser seguro, " -"pero las páginas se cargarán lentamente si usa IPs públicas y tiene una " -"configuración inestable de DNS." +"Calcula los nombres de dispositivos en las páginas de estado. Suele ser " +"seguro, pero las páginas se cargarán lentamente si usa IPs públicas y tiene " +"una configuración inestable de DNS. En este caso deshabilítelo aquí." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:43 msgid "Routes" @@ -908,7 +903,7 @@ msgstr "Interfaces OLSR secundarias" #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:56 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:108 msgid "Selected" -msgstr "" +msgstr "Seleccionado" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:133 msgid "" @@ -921,15 +916,14 @@ msgstr "" "el uso de la IP del primer interfaz." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:127 -#, fuzzy msgid "" "Sets the main IP (originator ip) of the router. This IP will NEVER change " "during the uptime of olsrd. Default is ::, which triggers usage of the IP of " "the first interface." msgstr "" -"Configura la dirección IP principal (IP originadora) del router. NUNCA debe " -"cambiar mientras OLSRd esté activa. Por defecto es \"0.0.0.0\" que provoca " -"el uso de la IP del primer interfaz." +"Establece la IP principal (originator ip) del enrutador. Esta IP NUNCA " +"cambiará durante el tiempo de actividad de olsrd. El valor predeterminado " +"es ::, que activa el uso de la IP de la primera interfaz." #: applications/luci-app-olsr/luasrc/view/status-olsr/common_js.htm:20 msgid "Show IPv4" @@ -1178,15 +1172,14 @@ msgstr "" "\"both\"." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 -#, fuzzy msgid "" "Which kind of uplink is exported to the other mesh nodes. An uplink is " "detected by looking for a local HNA6 ::ffff:0:0/96 or 2000::/3. Default " "setting is \"both\"." msgstr "" -"Tipo de enlace exportado a otros nodos del mesh. Un enlace se detecta " -"buscando una HNA local de 0.0.0.0/0, ::ffff:0:0/96 o 2000::/3. Por defecto " -"\"both\"." +"Qué tipo de enlace se exporta a los otros nodos de malla. Se detecta un " +"enlace ascendente buscando un HNA6 ::ffff:0:0/96 o 2000::/3 local. La " +"configuración predeterminada es \"ambos\"." #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 @@ -1200,12 +1193,12 @@ msgstr "Amarillo" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:38 msgid "down" -msgstr "" +msgstr "abajo" #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:30 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:134 msgid "infinate" -msgstr "" +msgstr "infinito" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:40 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:29 @@ -1219,7 +1212,7 @@ msgstr "no" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:38 msgid "up" -msgstr "" +msgstr "arriba" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:40 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:29 diff --git a/applications/luci-app-openvpn/po/es/openvpn.po b/applications/luci-app-openvpn/po/es/openvpn.po index decb4e6e43..477de3619d 100644 --- a/applications/luci-app-openvpn/po/es/openvpn.po +++ b/applications/luci-app-openvpn/po/es/openvpn.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2019-02-21 11:54-0300\n" +"PO-Revision-Date: 2019-03-02 14:45-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -85,7 +85,7 @@ msgstr "Redirigir automáticamente la ruta por defecto" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:11 msgid "Below is a list of configured OpenVPN instances and their current state" -msgstr "Instancias OpenVPN configuradas y estado actual" +msgstr "Conexiones OpenVPN configuradas y estado actual" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:119 msgid "Call down cmd/script before TUN/TAP close" @@ -171,11 +171,11 @@ msgstr "Directorio de configuraciones personalizadas" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:23 msgid "Disable Paging" -msgstr "Desactivar paginación" +msgstr "Deshabilitar paginación" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:27 msgid "Disable options consistency check" -msgstr "Desactivar comprobación de consistencia de opciones" +msgstr "Deshabilitar comprobación de consistencia de opciones" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:196 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:41 @@ -213,7 +213,7 @@ msgstr "No tirar de las rutas automáticamente" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:331 msgid "Don't re-read key on restart" -msgstr "No releer la clave al rearrancar" +msgstr "No releer la clave al reiniciar" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:260 msgid "Don't use adaptive lzo compression" @@ -233,25 +233,25 @@ msgstr "Medir MTU empíricamente" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:632 msgid "Enable OpenSSL hardware crypto engines" -msgstr "Motor criptográfico por hardware OpenSSL" +msgstr "Habilitar los motores criptográficos de hardware OpenSSL." #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:248 msgid "Enable Path MTU discovery" -msgstr "Detección de MTU" +msgstr "Habilitar el descubrimiento de MTU de ruta" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:568 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:69 msgid "Enable Static Key encryption mode (non-TLS)" -msgstr "Modo de encriptado de clave estática (no-TLS)" +msgstr "Habilitar el modo de cifrado de clave estática (no TLS)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:653 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:678 msgid "Enable TLS and assume client role" -msgstr "Activar TLS y asumir el papel de cliente" +msgstr "Habilitar TLS y asumir el rol de cliente" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:648 msgid "Enable TLS and assume server role" -msgstr "Activar TLS y asumir el papel de servidor" +msgstr "Habilitar TLS y asumir el rol del servidor" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:164 msgid "Enable a compression algorithm" @@ -259,15 +259,15 @@ msgstr "Habilitar un algoritmo de compresión." #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:277 msgid "Enable internal datagram fragmentation" -msgstr "Fragmentación de datagramas interna" +msgstr "Habilitar la fragmentación interna del datagrama." #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:344 msgid "Enable management interface on <em>IP</em> <em>port</em>" -msgstr "Interfaz de gestión en <em>IP</em> <em>puerto</em>" +msgstr "Habilitar la interfaz de administración en <em>IP</em> <em>puerto</em>" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:104 msgid "Enabled" -msgstr "Activado" +msgstr "habilitado" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:722 msgid "Encrypt and authenticate all control channel packets with the key" @@ -333,24 +333,24 @@ msgstr "Reintentar si falla la resolución de nombre de máquina" #: applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm:12 msgid "Instance \"%s\"" -msgstr "Instancia \"%s\"" +msgstr "Conexión \"%s\"" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:18 #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:46 msgid "Instance with that name already exists!" -msgstr "¡Ya existe una instancia con ese nombre!" +msgstr "¡Ya existe una conexión con ese nombre!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:335 msgid "Keep local IP address on restart" -msgstr "Mantener la dirección IP local al rearrancar" +msgstr "Mantener la dirección IP local al reiniciar" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:339 msgid "Keep remote IP address on restart" -msgstr "Mantener la dirección IP remota al rearrancar" +msgstr "Mantener la dirección IP remota al reiniciar" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:327 msgid "Keep tun/tap device open on restart" -msgstr "Mantener el dispositivo TUN/TAP abierto al rearrancar" +msgstr "Mantener el dispositivo TUN/TAP abierto al reiniciar" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:706 msgid "Key transition window" @@ -409,7 +409,7 @@ msgstr "OpenVPN" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:11 msgid "OpenVPN instances" -msgstr "Instancias OpenVPN" +msgstr "Conexiones OpenVPN" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:83 msgid "Optimize TUN/TAP/UDP writes" @@ -569,7 +569,7 @@ msgstr "Script a ejecutar tras una desconexión de cliente" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:123 msgid "Run up/down scripts for all restarts" -msgstr "Ejecutar scripts de activación/desactivación en todos los rearranques" +msgstr "Ejecutar scripts de activación/desactivación en todos los reinicios" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:37 msgid "Save" @@ -678,7 +678,7 @@ msgstr "Tamaño de la clave de cifrado" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:228 msgid "Specify a default gateway for routes" -msgstr "Gateway por defecto" +msgstr "Especifique una puerta de enlace predeterminada para las rutas" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:561 msgid "Specify whether the client is required to supply a valid certificate" @@ -698,7 +698,7 @@ msgstr "Iniciado" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:99 msgid "Status file format version" -msgstr "Versión del formato del fichero de estado" +msgstr "Versión del formato del archivo de estado" #: applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm:15 msgid "Switch to advanced configuration" @@ -723,7 +723,7 @@ msgstr "Número de puerto TCP/UDP para remoto (default=1194)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:682 msgid "TLS cipher" -msgstr "Cifra TLS" +msgstr "Cifrado TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:55 msgid "TOS passthrough (applies to IPv4 only)" @@ -736,7 +736,7 @@ msgstr "Configuración basada en plantillas" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:436 msgid "Temporary directory for client-connect return file" msgstr "" -"Directorio temporal para el fichero de retorno de la conexión del cliente" +"Directorio temporal para el archivo de retorno de la conexión del cliente" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:12 #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:40 @@ -813,15 +813,15 @@ msgstr "Nombre de usuario como nombre común" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:63 msgid "Write log to file" -msgstr "Escribir registro a fichero" +msgstr "Escribir registro al archivo" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:75 msgid "Write process ID to file" -msgstr "Escribir ID del proceso a fichero" +msgstr "Escribir ID del proceso al archivo" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:95 msgid "Write status to file every n seconds" -msgstr "Segundos tras los que escribir el fichero de estado" +msgstr "Segundos tras los que escribir el archivo de estado" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:112 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:114 diff --git a/applications/luci-app-p910nd/po/es/p910nd.po b/applications/luci-app-p910nd/po/es/p910nd.po index 6b3518f9e8..d53a91a3b9 100644 --- a/applications/luci-app-p910nd/po/es/p910nd.po +++ b/applications/luci-app-p910nd/po/es/p910nd.po @@ -1,17 +1,17 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2014-06-15 09:10+0200\n" +"PO-Revision-Date: 2019-04-02 00:05-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:47 msgid "Bidirectional mode" @@ -43,7 +43,7 @@ msgstr "Configuración" #: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:22 msgid "Specifies the interface to listen on." -msgstr "Especifica el interfaz en el que se escucha." +msgstr "Especifica la interfaz en la que se escucha." #: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:41 msgid "TCP listener port." @@ -51,7 +51,7 @@ msgstr "Puerto de escucha TCP." #: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:18 msgid "enable" -msgstr "activar" +msgstr "habilitar" #: applications/luci-app-p910nd/luasrc/controller/p910nd.lua:13 #: applications/luci-app-p910nd/luasrc/model/cbi/p910nd.lua:9 diff --git a/applications/luci-app-pagekitec/po/es/pagekitec.po b/applications/luci-app-pagekitec/po/es/pagekitec.po new file mode 100644 index 0000000000..862ab5eda6 --- /dev/null +++ b/applications/luci-app-pagekitec/po/es/pagekitec.po @@ -0,0 +1,73 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:2 +msgid "" +"<p/>Note: you need a working PageKite account, or at least, your own running " +"front end for this form to work. Visit <a href=\"https://pagekite.net/home/" +"\">your account</a> to set up a name for your router and get a secret key " +"for the connection. <p/><em>Note: this web configurator only supports some " +"very very basic uses of pagekite.</em>" +msgstr "" +"<p />Nota: necesita una cuenta de PageKite que funcione, o al menos, su " +"propio front end para que este formulario funcione. Visite <a href=\"https://" +"pagekite.net/home/\">su cuenta</a> para configurar un nombre para su " +"enrutador y obtener una clave secreta para la conexión. <p/> <em> Nota: este " +"configurador web solo admite algunos usos muy básicos de pagekite.</em>" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:20 +msgid "Basic HTTP" +msgstr "HTTP básico" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:23 +msgid "Basic SSH" +msgstr "SSH básico" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:21 +msgid "" +"Enable a tunnel to the local HTTP server (in most cases, this admin site)" +msgstr "" +"Habilitar un túnel al servidor HTTP local (en la mayoría de los casos, este " +"sitio de administración)" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:24 +msgid "Enable a tunnel to the local SSH server" +msgstr "Habilitar un túnel al servidor SSH local" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:13 +msgid "Kite Name" +msgstr "Nombre de Kite" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:14 +msgid "Kite Secret" +msgstr "Kite secreto" + +#: applications/luci-app-pagekitec/luasrc/controller/pagekitec.lua:7 +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:1 +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:10 +msgid "PageKite" +msgstr "PageKite" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:16 +msgid "Static Setup" +msgstr "Configuración estática" + +#: applications/luci-app-pagekitec/luasrc/model/cbi/pagekitec.lua:17 +msgid "" +"Static setup, disable FE failover and DDNS updates, set this if you are " +"running your own frontend without a pagekite.me account" +msgstr "" +"Configuración estática, deshabilitar la conmutación por error FE y " +"actualizaciones de DDNS, configúralo si estás ejecutando tu propia interfaz " +"sin una cuenta de pagekite.me" diff --git a/applications/luci-app-qos/po/es/qos.po b/applications/luci-app-qos/po/es/qos.po index a405d31621..2f54f6d67c 100644 --- a/applications/luci-app-qos/po/es/qos.po +++ b/applications/luci-app-qos/po/es/qos.po @@ -1,17 +1,17 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-03-25 22:10+0100\n" -"PO-Revision-Date: 2014-06-15 09:13+0200\n" +"PO-Revision-Date: 2019-02-27 15:11-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:23 msgid "Calculate overhead" @@ -31,7 +31,7 @@ msgstr "Comentario" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:61 msgid "Destination host" -msgstr "Máquina de destino" +msgstr "Host de destino" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:27 msgid "Download speed (kbit/s)" @@ -39,7 +39,7 @@ msgstr "Velocidad de descarga (Kbit/s)" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:16 msgid "Enable" -msgstr "Activar" +msgstr "Habilitar" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:25 msgid "Half-duplex" @@ -71,7 +71,7 @@ msgstr "Calidad de Servicio" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:56 msgid "Source host" -msgstr "Máquina origen" +msgstr "Host de origen" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:39 msgid "Target" @@ -86,8 +86,8 @@ msgid "" "With <abbr title=\"Quality of Service\">QoS</abbr> you can prioritize " "network traffic selected by addresses, ports or services." msgstr "" -"Con QoS puede priorizar el tráfico de la red seleccionando por direcciones, " -"puertos o servicios." +"Con <abbr title=\"Quality of Service\">QoS</abbr> puede priorizar el " +"tráfico de red seleccionado por direcciones, puertos o servicios." #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:58 #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:63 @@ -98,7 +98,7 @@ msgstr "todos" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:20 msgid "default" -msgstr "por defecto" +msgstr "predeterminado" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:41 msgid "express" @@ -114,7 +114,7 @@ msgstr "normal" #: applications/luci-app-qos/luasrc/model/cbi/qos/qos.lua:40 msgid "priority" -msgstr "prioritario" +msgstr "prioridad" #~ msgid "Service" #~ msgstr "Servicio" diff --git a/applications/luci-app-rosy-file-server/Makefile b/applications/luci-app-rosy-file-server/Makefile new file mode 100644 index 0000000000..93d9a3a669 --- /dev/null +++ b/applications/luci-app-rosy-file-server/Makefile @@ -0,0 +1,15 @@ +# +# Copyright (C) 2008-2014 The LuCI Team <luci@lists.subsignal.org> +# Copyright (C) 2018 Rosy Song <rosysong@rosinson.com> +# +# This is free software, licensed under the Apache License, Version 2.0 . +# + +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=LuCI Support for Rosy File Server +LUCI_DEPENDS:=+luci-base +rosy-file-server + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-rosy-file-server/luasrc/controller/rosy-file-server/rosy-file-server.lua b/applications/luci-app-rosy-file-server/luasrc/controller/rosy-file-server/rosy-file-server.lua new file mode 100644 index 0000000000..6c7c492089 --- /dev/null +++ b/applications/luci-app-rosy-file-server/luasrc/controller/rosy-file-server/rosy-file-server.lua @@ -0,0 +1,52 @@ +-- Copyright 2018 Rosy Song <rosysong@rosinson.com> +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.rosy-file-server.rosy-file-server", package.seeall) + +function index() + if not nixio.fs.access("/etc/config/rosyfs") then + return + end + + local root = node() + if not root.target then + root.target = alias("httpfs") + root.index = true + end + + page = node() + page.lock = true + page.target = alias("httpfs") + page.subindex = true + page.index = false + + page = node("httpfs") + page.title = _("File-server") + page.target = alias("httpfs", "rosy-file-server") + page.order = 5 + page.setuser = "root" + page.setgroup = "root" + page.index = true + + entry({"httpfs", "rosy-file-server"}, + form("rosy-file-server/rosy-file-server"), _("Rosy File Server"), 10) + entry({"httpfs", "file-server-download"}, + post("action_download"), nil) + + entry({"admin", "services", "rosyfs"}, + cbi("rosy-file-server/rosyfs"), _("Rosy File Server"), 61) +end + +function action_download() + local p = luci.http.formvalue("path") or "" + local n = luci.http.formvalue("name") or "" + + if not p or not n then + luci.http.status(400, "Bad Request") + return + end + + luci.http.header('Content-Disposition', 'attachment; filename="%s"' % n) + luci.http.prepare_content("application/octet-stream") + luci.sys.process.exec({ "/bin/dd", "if=%s%s" % { p, n }, "conv=fsync,notrunc" }, luci.http.write) +end diff --git a/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosy-file-server.lua b/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosy-file-server.lua new file mode 100644 index 0000000000..703b4defc0 --- /dev/null +++ b/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosy-file-server.lua @@ -0,0 +1,72 @@ +-- Copyright 2018 Rosy Song <rosysong@rosinson.com> +-- Licensed to the public under the Apache License 2.0. + +local uci = require "luci.model.uci".cursor() +local dis = uci:get("rosyfs", "default", "disabled") + +local targets = {} +local server_root = luci.http.formvalue("server_root") or "/www/rosyfs-share/" +local buffer = io.popen("/bin/busybox ls -ahLlp %s" % server_root) +if dis ~= '1' and buffer then + for l in buffer:lines() do + local _p, i, u, g, sz, mm, dd, tt, nm = l:match( + "^([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+([^%s]+)%s+(.+)" + ) + local p = _p and string.sub(_p, 1, 1) or nil + if p and (p == '-' or p == 'd') and nm and (nm ~= "./") and + not (server_root == "/www/rosyfs-share/" and nm == "../") and + not (server_root == "/www/rosyfs-share/" and nm == "rosyfs-share/") then + targets[nm] = { + ['type'] = p, + ['size'] = sz, + ['last'] = "%s %s %s" % { mm, dd, tt }, + ['name'] = nm + } + end + end +end + +local title = uci:get("rosyfs", "default", "title") or nil + +m = SimpleForm("rosyfs", title or translate("Rosy File Server"), translate("This is rosy file server for luci.<br /><strong>Note: targets will be mapped at /www/rosyfs-share !</strong>")) +m.reset = false +m.submit = false + + +s = m:section(Table, targets) + +t = s:option(DummyValue, "type", translate("Type")) + +n = s:option(DummyValue, "name", translate("Name")) +n.rawhtml = true + +function n.cfgvalue(self, section) + local v = DummyValue.cfgvalue(self, section) + local hv = (v == "../") and "Parent Directory" or v + local t = targets[v]['type'] + + if t and t ~='d' then + -- File + return translatef("<a href='%s%s'>%s</a>", + string.sub(server_root, 5, #server_root), hv, hv); + elseif t then + -- Directory + if v == "../" then + local dir = luci.util.trim(luci.util.exec("dirname " .. server_root)) + + if dir ~= "/" then dir = dir .. "/" end + + return translatef("<a href='%s?server_root=%s'>%s</a>", + luci.dispatcher.build_url("httpfs/rosy-file-server"), dir, hv) + else + return translatef("<a href='%s?server_root=%s%s'>%s</a>", + luci.dispatcher.build_url("httpfs/rosy-file-server"), + server_root, hv, hv) + end + end +end + +l = s:option(DummyValue, "last", translate("Last Modified")) +sz = s:option(DummyValue, "size", translate("Size")) + +return m diff --git a/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua b/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua new file mode 100644 index 0000000000..51efa9e814 --- /dev/null +++ b/applications/luci-app-rosy-file-server/luasrc/model/cbi/rosy-file-server/rosyfs.lua @@ -0,0 +1,26 @@ +-- Copyright 2019 Rosy Song <rosysong@rosinson.com> +-- Licensed to the public under the Apache License 2.0. + +local uci = require("luci.model.uci").cursor() +local dis = uci:get("rosyfs", "default", "disabled") +local tgt = uci:get("rosyfs", "default", "target") +local tlt = uci:get("rosyfs", "default", "title") + +m = Map("rosyfs", translate("Rosy File Server Settings")) + +s = m:section(TypedSection, "rosyfs", nil) +s.addremove = false +s.anonymous = true + +e = s:option(Flag, "disabled", translate("Disable"), translate("Disable Rosy File Server")) +e.default = dis or e.disabled +e.rmempty = false + +a = s:option(Value, "target", translate("Target"), translate("Specify path to be mapped")) +a.default = tgt or "/www" +a.datatype = "directory" + +t = s:option(Value, "title", translate("Title"), translate("Title to be shown")) +t.default = tlt or "Rosy File Server" + +return m diff --git a/applications/luci-app-samba/po/es/samba.po b/applications/luci-app-samba/po/es/samba.po index 3d3f8194ee..c88b9b7344 100644 --- a/applications/luci-app-samba/po/es/samba.po +++ b/applications/luci-app-samba/po/es/samba.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2019-02-25 19:26-0300\n" +"PO-Revision-Date: 2019-03-05 20:45-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -19,9 +19,7 @@ msgstr "Permitir invitados" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:17 msgid "Allow system users to reach their home directories via network shares" -msgstr "" -"Permitir a los usuarios acceder a sus directorios de inicio vía " -"comparticiones de red" +msgstr "Permitir a los usuarios acceder a sus carpetas de inicio vía Samba" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:51 msgid "Allowed users" @@ -41,7 +39,7 @@ msgstr "Descripción" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:74 msgid "Directory mask" -msgstr "Máscara de directorio" +msgstr "Máscara de carpeta" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:11 msgid "Edit Template" @@ -57,11 +55,11 @@ msgstr "Configuración general" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:13 msgid "Hostname" -msgstr "Nombre de máquina" +msgstr "Nombre de host" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:75 msgid "Mask for new directories" -msgstr "Máscara para directorios nuevos" +msgstr "Máscara para carpetas nuevas" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:70 msgid "Mask for new files" @@ -74,7 +72,7 @@ msgstr "Nombre" #: applications/luci-app-samba/luasrc/controller/samba.lua:14 #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:5 msgid "Network Shares" -msgstr "Comparticiones de red" +msgstr "Samba" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:46 msgid "Path" @@ -94,11 +92,11 @@ msgstr "Solo lectura" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:16 msgid "Share home-directories" -msgstr "Compartir directorios personales" +msgstr "Compartir carpetas personales" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:39 msgid "Shared Directories" -msgstr "Directorios compartidos" +msgstr "Carpetas compartidas" #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:23 msgid "" @@ -107,9 +105,9 @@ msgid "" "('|') should not be changed. They get their values from the 'General " "Settings' tab." msgstr "" -"Contenido del fichero '/etc/samba/smb.conf.template' desde el que se " +"Contenido del archivo '/etc/samba/smb.conf.template' desde el que se " "generará la configuración de samba. Los valores entre tuberías ('|') no " -"deben cambiarse. Su valor se toma desde la pestaña 'Configuración General'." +"deben cambiarse. Su valor se toma desde la pestaña 'Configuración general'." #: applications/luci-app-samba/luasrc/model/cbi/samba.lua:15 msgid "Workgroup" diff --git a/applications/luci-app-samba4/po/es/samba4.po b/applications/luci-app-samba4/po/es/samba4.po index 3001eddb57..0786d7a2fc 100644 --- a/applications/luci-app-samba4/po/es/samba4.po +++ b/applications/luci-app-samba4/po/es/samba4.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2019-02-25 20:56-0300\n" +"PO-Revision-Date: 2019-03-01 18:06-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -20,8 +20,8 @@ msgstr "Permitir invitados" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:15 msgid "Allow system users to reach their home directories via network shares" msgstr "" -"Permitir que los usuarios del sistema lleguen a sus directorios personales a " -"través de redes compartidas" +"Permitir que los usuarios del sistema lleguen a sus carpetas personales a " +"través de Samba" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:75 msgid "Allowed users" @@ -29,7 +29,7 @@ msgstr "Usuarios permitidos" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:106 msgid "Apple Time-machine share" -msgstr "Compartir Apple Time-machine" +msgstr "Compartir como Apple Time-Machine" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:63 msgid "Browse-able" @@ -45,11 +45,11 @@ msgstr "Descripción" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:98 msgid "Directory mask" -msgstr "Máscara de directorio" +msgstr "Máscara de carpeta" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:27 msgid "Disable Active Directory Domain Controller" -msgstr "Deshabilitar el controlador de dominio de directorio activo" +msgstr "Deshabilitar el controlador de dominio de carpeta activa" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:24 msgid "Disable Netbios" @@ -69,7 +69,7 @@ msgstr "Editar la plantilla usada para generar la configuración de samba." #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:19 msgid "Enable macOS compatible shares" -msgstr "Habilitar recursos compartidos compatibles con macOS" +msgstr "Habilitar compatibilidad de Samba con macOS" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:20 msgid "" @@ -89,11 +89,11 @@ msgstr "Ajustes generales" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:83 msgid "Guests only" -msgstr "Solo invitados" +msgstr "Sólo invitados" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:11 msgid "Hostname" -msgstr "Nombre de máquina" +msgstr "Nombre del dispositivo" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:88 msgid "Inherit owner" @@ -106,7 +106,7 @@ msgstr "Nombre" #: applications/luci-app-samba4/luasrc/controller/samba4.lua:12 #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:3 msgid "Network Shares" -msgstr "Comparticiones de red" +msgstr "Samba" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:58 msgid "Path" @@ -117,20 +117,20 @@ msgid "" "Please add directories to share. Each directory refers to a folder on a " "mounted device." msgstr "" -"Por favor agregue directorios para compartir. Cada directorio se refiere a " -"una carpeta en un dispositivo montado." +"Por favor agregue carpetas para compartir. Cada carpeta se refiere a una " +"carpeta en un dispositivo montado." #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:68 msgid "Read-only" -msgstr "Solo lectura" +msgstr "Sólo lectura" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:14 msgid "Share home-directories" -msgstr "Compartir directorios personales" +msgstr "Compartir carpetas personales" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:51 msgid "Shared Directories" -msgstr "Directorios compartidos" +msgstr "Carpetas compartidos" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:35 msgid "" @@ -145,7 +145,7 @@ msgstr "" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:108 msgid "Time-machine size in GB" -msgstr "Tamaño del Time-machine en GB" +msgstr "Tamaño del Time-Machine en GB" #: applications/luci-app-samba4/luasrc/model/cbi/samba4.lua:103 msgid "Vfs objects" diff --git a/applications/luci-app-simple-adblock/po/ja/simple-adblock.po b/applications/luci-app-simple-adblock/po/ja/simple-adblock.po index e5eea47615..5b46eb9332 100644 --- a/applications/luci-app-simple-adblock/po/ja/simple-adblock.po +++ b/applications/luci-app-simple-adblock/po/ja/simple-adblock.po @@ -7,18 +7,18 @@ msgstr "" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.12\n" +"X-Generator: Poedit 2.2.1\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: ja\n" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:100 msgid "Advanced Configuration" -msgstr "" +msgstr "詳細設定" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:69 msgid "Basic Configuration" -msgstr "" +msgstr "基本設定" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:134 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:60 @@ -37,7 +37,7 @@ msgstr "hosts ブラックリストのURL" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:67 msgid "Configuration" -msgstr "" +msgstr "設定" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:71 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:14 @@ -46,28 +46,28 @@ msgstr "システム ログとコンソール出力の冗長性を設定しま #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:102 msgid "Delay (in seconds) for on-boot start" -msgstr "" +msgstr "ブート時遅延実行(秒)" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:111 msgid "Disable Debugging" -msgstr "" +msgstr "デバッグ無効" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:106 msgid "Download time-out (in seconds)" -msgstr "" +msgstr "ダウンロード タイムアウト(秒)" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:110 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:112 msgid "Enable Debugging" -msgstr "" +msgstr "デバッグ有効" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:26 msgid "Enable/Start" -msgstr "" +msgstr "有効化/開始" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:110 msgid "Enables debug output to /tmp/simple-adblock.log" -msgstr "" +msgstr "/tmp/simple-adblock.log へのデバッグ出力を有効にします。" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:78 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:21 @@ -83,8 +83,8 @@ msgstr "全ローカル デバイスにルーター DNSサーバーの使用を #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:21 msgid "Forces Router DNS use on local devices, also known as DNS Hijacking" msgstr "" -"ローカル デバイスに対し、ルーター上のDNSサーバーの使用を強制します。これは、" -"DNS ハイジャックとしても知られています。" +"ローカル デバイスに対し、ルーター上のDNSサーバーの使用を強制します。これ" +"は、DNS ハイジャックとしても知られています。" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:124 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:50 @@ -118,30 +118,30 @@ msgstr "右の設定で既に使用されていないLEDを選択します" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:43 msgid "Reload" -msgstr "" +msgstr "リロード" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:102 msgid "Run service after set delay on boot" -msgstr "" +msgstr "システムのブート時に、設定された遅延でサービスを開始します。" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:6 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:19 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:29 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:37 msgid "Service Status" -msgstr "" +msgstr "サービス ステータス" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:25 msgid "Service is disabled/stopped" -msgstr "" +msgstr "サービスは無効/停止中" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:34 msgid "Service is enabled/started" -msgstr "" +msgstr "サービスは有効/実行中" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:42 msgid "Service started with error" -msgstr "" +msgstr "サービス開始時にエラーが発生" #: applications/luci-app-simple-adblock/luasrc/controller/simple-adblock.lua:6 msgid "Simple AdBlock" @@ -159,15 +159,16 @@ msgstr "軽量出力" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:5 msgid "Start Simple Adblock service" -msgstr "" +msgstr "Simple Adblock サービスを開始" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:106 msgid "Stop the download if it is stalled for set number of seconds" msgstr "" +"問題等が発生して指定された秒数を超過した場合、ダウンロードを停止します。" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:35 msgid "Stop/Disable" -msgstr "" +msgstr "停止/無効化" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:72 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:15 @@ -192,7 +193,8 @@ msgstr "ホワイトリストに登録するドメインのリストのURLです #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:139 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:65 msgid "URLs to lists of hosts to be blacklisted" -msgstr "ブラックリストに登録するドメインが列挙された、hostsファイルのURLです。" +msgstr "" +"ブラックリストに登録するドメインが列挙された、hostsファイルのURLです。" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:74 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:17 @@ -201,7 +203,7 @@ msgstr "詳細出力" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:117 msgid "Whitelist and Blocklist Management" -msgstr "" +msgstr "ホワイトリストとブラックリストの管理" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simple-adblock.lua:129 #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:55 @@ -217,6 +219,3 @@ msgstr "ホワイトリスト ドメイン" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:37 msgid "none" msgstr "なし" - -#~ msgid "Enable/start service" -#~ msgstr "サービスの有効化/開始" diff --git a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua index a89f9f4f87..eb7769b85f 100644 --- a/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua +++ b/applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua @@ -115,11 +115,15 @@ function index() -- get plugin instances local instances = tree:plugin_instances( plugin ) - -- plugin menu entry - entry( - { "admin", "statistics", "graph", plugin }, - call("statistics_render"), labels[plugin], idx - ).query = { timespan = span , host = host } + -- load plugin menu entry from the description + local plugin_name = "luci.statistics.rrdtool.definitions." .. plugin + local stat, def = pcall( require, plugin_name ) + if stat and def and type(def.item) == "function" then + entry( + { "admin", "statistics", "graph", plugin }, + call("statistics_render"), def.item(), idx + ).query = { timespan = span , host = host } + end -- if more then one instance is found then generate submenu if #instances > 1 then diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua index b9f48a45bd..f827e92309 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua @@ -26,6 +26,7 @@ function Graph.__init__( self, timespan, opts ) opts.rramax = opts.rramax or ( sections.collectd_rrdtool.RRAMax == "1" ) opts.host = opts.host or sections.collectd.Hostname or sys.hostname() opts.width = opts.width or sections.rrdtool.image_width or 400 + opts.height = opts.height or sections.rrdtool.image_height or 100 opts.rrdpath = opts.rrdpath or sections.collectd_rrdtool.DataDir or "/tmp/rrd" opts.imgpath = opts.imgpath or sections.rrdtool.image_path or "/tmp/rrdimg" opts.rrdpath = opts.rrdpath:gsub("/$","") @@ -40,7 +41,8 @@ function Graph.__init__( self, timespan, opts ) self.args = { "-a", "PNG", "-s", "NOW-" .. opts.timespan, - "-w", opts.width + "-w", opts.width, + "-h", opts.height } -- store options diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua index 37055f5861..637b5f9592 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.apcups",package.seeall) +function item() + return luci.i18n.translate("APC UPS") +end + function rrdargs( graph, plugin, plugin_instance ) local lu = require("luci.util") diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua index 5212b736e2..d99dab0f01 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.conntrack",package.seeall) +function item() + return luci.i18n.translate("Conntrack") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua index 6826e12adb..f9473e4406 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.contextswitch",package.seeall) +function item() + return luci.i18n.translate("Context Switches") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua index ae0c0ce778..226c84ee96 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.cpu",package.seeall) +function item() + return luci.i18n.translate("Processor") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua index 25a72d2285..08aab04b85 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.cpufreq",package.seeall) +function item() + return luci.i18n.translate("CPU Frequency") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua index 2bbdfb08fb..4fde243ca9 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.curl", package.seeall) +function item() + return luci.i18n.translate("cUrl") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua index b5633c15ff..fb732991ba 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua @@ -3,9 +3,13 @@ module("luci.statistics.rrdtool.definitions.df", package.seeall) +function item() + return luci.i18n.translate("Disk Space Usage") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) - return { + local df_complex = { title = "%H: Disk space usage on %pi", vlabel = "Bytes", number_format = "%5.1lf%sB", @@ -36,4 +40,51 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } + + local percent_bytes = { + title = "%H: Disk space usage on %pi", + vlabel = "Percent", + number_format = "%5.2lf %%", + + data = { + instances = { + percent_bytes = { "free", "used", "reserved" } + }, + + options = { + percent_bytes_free = { + color = "00ff00", + overlay = false, + title = "free" + }, + + percent_bytes_used = { + color = "ff0000", + overlay = false, + title = "used" + }, + + percent_bytes_reserved = { + color = "0000ff", + overlay = false, + title = "reserved" + } + } + } + } + + local types = graph.tree:data_types( plugin, plugin_instance ) + + local p = {} + for _, t in ipairs(types) do + if t == "percent_bytes" then + p[#p+1] = percent_bytes + end + + if t == "df_complex" then + p[#p+1] = df_complex + end + end + + return p end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua index b6f7d6d5f8..29597ff989 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.disk", package.seeall) +function item() + return luci.i18n.translate("Disk Usage") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua index cf96d8fbe1..0ff4c76858 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.dns", package.seeall) +function item() + return luci.i18n.translate("DNS") +end + function rrdargs( graph, plugin, plugin_instance ) local traffic = { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua index 3d30a70afb..01eb33f9b4 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.entropy", package.seeall) +function item() + return luci.i18n.translate("Entropy") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua index 6ca65e539f..a4d4eefd53 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.interface", package.seeall) +function item() + return luci.i18n.translate("Interfaces") +end + function rrdargs( graph, plugin, plugin_instance ) -- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua index 9790e0e3d2..7218bfd441 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.iptables", package.seeall) +function item() + return luci.i18n.translate("Firewall") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua index f61d0da646..56b4547b94 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.irq", package.seeall) +function item() + return luci.i18n.translate("Interrupts") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua index 194afd6fc0..53f4c7a40c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.iwinfo", package.seeall) +function item() + return luci.i18n.translate("Wireless") +end + function rrdargs( graph, plugin, plugin_instance ) -- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua index ce762dab46..b06c8c4148 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.load", package.seeall) +function item() + return luci.i18n.translate("System Load") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua index 53d559c599..b05d31dc02 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua @@ -11,6 +11,10 @@ You may obtain a copy of the License at module("luci.statistics.rrdtool.definitions.memory",package.seeall) +function item() + return luci.i18n.translate("Memory") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua index f485048538..bdd3f2eb44 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.netlink", package.seeall) +function item() + return luci.i18n.translate("Netlink") +end + function rrdargs( graph, plugin, plugin_instance ) -- diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua index dd93196902..84ca4951f9 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.nut",package.seeall) +function item() + return luci.i18n.translate("UPS") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) local voltages = { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua index 481557bb7f..52bfbdf4f7 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.olsrd", package.seeall) +function item() + return luci.i18n.translate("OLSRd") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) local g = { } diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua index 876e871d1d..d16dbac908 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.openvpn", package.seeall) +function item() + return luci.i18n.translate("OpenVPN") +end + function rrdargs( graph, plugin, plugin_instance ) local inst = plugin_instance:gsub("^openvpn%.(.+)%.status$", "%1") diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua index 5b575bfff2..c3645e408c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.ping", package.seeall) +function item() + return luci.i18n.translate("Ping") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua index 010ac1cd2e..4303824f34 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.processes", package.seeall) +function item() + return luci.i18n.translate("Processes") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) if plugin_instance == "" then diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua index b3119234a4..6e09a7b9f0 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.sensors", package.seeall) +function item() + return luci.i18n.translate("Sensors") +end + function rrdargs( graph, plugin, plugin_instance ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua index 1a192ae6a6..5af998cfb5 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.splash_leases", package.seeall) +function item() + return luci.i18n.translate("Splash Leases") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua index 7e7ed238f4..2d762f7a4c 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua @@ -3,6 +3,10 @@ module("luci.statistics.rrdtool.definitions.tcpconns", package.seeall) +function item() + return luci.i18n.translate("TCP Connections") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua index 532246465e..4a555a6054 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua @@ -2,6 +2,10 @@ module("luci.statistics.rrdtool.definitions.thermal",package.seeall) +function item() + return luci.i18n.translate("Thermal") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua index a50e78491f..8d7d42bc6b 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua @@ -11,6 +11,10 @@ You may obtain a copy of the License at module("luci.statistics.rrdtool.definitions.uptime", package.seeall) +function item() + return luci.i18n.translate("Uptime") +end + function rrdargs( graph, plugin, plugin_instance, dtype ) return { diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index 4765dd4821..de10eb60dd 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -16,6 +16,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -61,6 +62,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -119,6 +121,7 @@ msgstr "" "dimoni Collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -127,6 +130,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Configuració del connector Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "Configuració del connector DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuració del connector de disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Ús d'espai en disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Ús de disc" @@ -201,8 +208,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ msgid "Enable this plugin" msgstr "Activa aquest connector" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "Monitoreig de classe filter" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Tallafocs" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuració de connector d'interfície" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfícies" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupcions" @@ -392,6 +403,7 @@ msgid "Maximum allowed connections" msgstr "Connexions màximes permeses" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memòria" @@ -477,6 +489,7 @@ msgid "Name of the rule" msgstr "Nom de la regla" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Enllaç de xarxa" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Número de fils de recol·lecció de dades" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -523,6 +537,7 @@ msgid "Only create average RRAs" msgstr "Crea només RRAs mitjans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Connectors de sortida" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -626,6 +644,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -682,6 +701,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Especifica què informació es recull sobre la topologia global." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "Marques de temps emmagatzemades" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Càrrega de sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Connexions TCP" @@ -962,6 +984,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -998,6 +1021,7 @@ msgstr "Intenta resoldre el nom de màquina (fqdn)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1022,6 +1046,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuració de connector Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1047,6 +1072,7 @@ msgid "Verbose monitoring" msgstr "Monitoreig detallat" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1060,6 +1086,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index 6e35a1bfb4..d7fc23b1b6 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -12,6 +12,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -57,6 +58,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -115,6 +117,7 @@ msgstr "" "collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -123,6 +126,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Nastavení pluginu Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "Nastavení pluginu DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "Nastavení Disk pluginu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Využití místa na disku" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Využití disku" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ msgid "Enable this plugin" msgstr "Povolit tento plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -340,10 +349,12 @@ msgid "Interface Plugin Configuration" msgstr "Nastavení Interface pluginu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Rozhraní" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Přerušení" @@ -387,6 +398,7 @@ msgid "Maximum allowed connections" msgstr "Maximální množství povolených spojení" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Paměť" @@ -472,6 +484,7 @@ msgid "Name of the rule" msgstr "Název pravidla" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -506,6 +519,7 @@ msgid "Number of threads for data collection" msgstr "Počet vláken pro sběr dat" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -518,6 +532,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -542,6 +557,7 @@ msgid "Output plugins" msgstr "Výstupní pluginy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -558,6 +574,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesy" @@ -570,6 +587,7 @@ msgid "Processes to monitor separated by space" msgstr "Sledované procesy (oddělte mezerou)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -622,6 +640,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -678,6 +697,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Určuje, jaké informace sbírat o globální topologii" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -708,10 +728,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Zatížení systému" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP spojení" @@ -948,6 +970,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -982,6 +1005,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1006,6 +1030,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfigurace pluginu Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1031,6 +1056,7 @@ msgid "Verbose monitoring" msgstr "Podrobný monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1044,6 +1070,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index d483136034..8ed2bc7ea3 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -117,6 +119,7 @@ msgstr "" "generelle Einstellungen für den Collectd-Daemon vorgenommen werden." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Conntrack Plugin Einstellungen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "DF Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Plattenspeicher" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Plattenauslastung" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Plugin aktivieren" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Filterklassen überwachen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Schnittstellen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupts" @@ -394,6 +405,7 @@ msgid "Maximum allowed connections" msgstr "Maximale Anzahl erlaubter Verbindungen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memory" @@ -479,6 +491,7 @@ msgid "Name of the rule" msgstr "Name der Regel" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -513,6 +526,7 @@ msgid "Number of threads for data collection" msgstr "Anzahl paralleler Sammelprozesse" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -525,6 +539,7 @@ msgid "Only create average RRAs" msgstr "Nur 'average' RRAs erzeugen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -549,6 +564,7 @@ msgid "Output plugins" msgstr "Ausgabeplugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -565,6 +581,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Prozesse" @@ -577,6 +594,7 @@ msgid "Processes to monitor separated by space" msgstr "Zu überwachende Prozesse (getrennt durch Leerzeichen)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Prozessor" @@ -628,6 +646,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -684,6 +703,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Bestimmt die zu sammelnden Informationen der globalen Topologie." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "gespeicherte Zeitspannen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Systemlast" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP-Verbindungen" @@ -967,6 +989,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -1003,6 +1026,7 @@ msgstr "automatisch vollen Hostnamen herausfinden" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "USV" @@ -1027,6 +1051,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Konfiguration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1052,6 +1077,7 @@ msgid "Verbose monitoring" msgstr "Schnittstellen detailliert überwachen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Drahtlos" @@ -1065,6 +1091,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 7a5e3228fe..4de9c38e00 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -118,6 +120,7 @@ msgstr "" "γενικές ρυθμίσεις του δαίμονα collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -126,6 +129,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Χρήση Χώρου στον δίσκο" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Χρήση Δίσκου" @@ -201,8 +208,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Τείχος προστασίας" @@ -339,10 +348,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Διεπαφές" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Διακοπές" @@ -385,6 +396,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Μνήμη" @@ -470,6 +482,7 @@ msgid "Name of the rule" msgstr "Όνομα κανόνα" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -504,6 +517,7 @@ msgid "Number of threads for data collection" msgstr "Αριθμός νημάτων για τη συλλογή δεδομένων" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -516,6 +530,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -540,6 +555,7 @@ msgid "Output plugins" msgstr "Πρόσθετα εξόδου" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -556,6 +572,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Διεργασίες" @@ -568,6 +585,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Επεξεργαστής" @@ -619,6 +637,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -675,6 +694,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -705,10 +725,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Φόρτος Συστήματος" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Συνδέσεις TCP" @@ -908,6 +930,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -940,6 +963,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -964,6 +988,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -989,6 +1014,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Ασύρματο" @@ -1002,6 +1028,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 4be5d1a9fe..d998f04fcd 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Translate Toolkit 1.1.1\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -117,6 +119,7 @@ msgstr "" "collectd daemon." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "DF Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Disk Space Usage" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Usage" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Enable this plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Filter class monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupts" @@ -390,6 +401,7 @@ msgid "Maximum allowed connections" msgstr "Maximum allowed connections" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -475,6 +487,7 @@ msgid "Name of the rule" msgstr "Name of the rule" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -509,6 +522,7 @@ msgid "Number of threads for data collection" msgstr "Number of threads for data collection" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -521,6 +535,7 @@ msgid "Only create average RRAs" msgstr "Only create average RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -545,6 +560,7 @@ msgid "Output plugins" msgstr "Output plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -561,6 +577,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processes" @@ -573,6 +590,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processor" @@ -624,6 +642,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -680,6 +699,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -710,10 +730,12 @@ msgid "Stored timespans" msgstr "Stored timespans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Load" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP Connections" @@ -950,6 +972,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -985,6 +1008,7 @@ msgstr "Try to lookup fully qualified hostname" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1009,6 +1033,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock Plugin Configuration" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1034,6 +1059,7 @@ msgid "Verbose monitoring" msgstr "Verbose monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1047,6 +1073,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index a0cc465786..14ff41067b 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -1,25 +1,26 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2012-12-12 20:19+0200\n" +"PO-Revision-Date: 2019-03-02 12:57-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" -msgstr "" +msgstr "APC UPS" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:5 msgid "APCUPS Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento APCUPS" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" @@ -31,12 +32,12 @@ msgstr "Añadir comando para leer valores" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" -msgstr "Añadir regla" +msgstr "Añadir regla de coincidencia" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 msgid "Add multiple hosts separated by space." -msgstr "Añadir múltiples máquinas separadas por espacio." +msgstr "Añadir múltiples hosts separados por espacio." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:50 msgid "Add notification command" @@ -44,7 +45,7 @@ msgstr "Añadir comando de notificación" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" -msgstr "" +msgstr "Agregar número de usuarios conectados" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:24 msgid "Base Directory" @@ -56,15 +57,16 @@ msgstr "Monitorización básica" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 msgid "CPU Context Switches Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de conmutadores de contexto de CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" -msgstr "" +msgstr "Frecuencia de CPU" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:4 msgid "CPU Frequency Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de frecuencia de la CPU" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:5 msgid "CPU Plugin Configuration" @@ -100,7 +102,7 @@ msgstr "Rutas" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:38 msgid "CollectTopology" -msgstr "Topología" +msgstr "CollectTopology" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:8 msgid "Collectd Settings" @@ -112,11 +114,12 @@ msgid "" "different plugins. On this page you can change general settings for the " "collectd daemon." msgstr "" -"Collectd is un demonio para la recolección de datos desde varias fuentes a " +"Collectd es un demonio para la recolección de datos desde varias fuentes a " "través de la utilización de diferentes plugins. Aquí puede cambiar la " "configuración general del demonio que maneja collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Seguimiento" @@ -125,14 +128,16 @@ msgid "Conntrack Plugin Configuration" msgstr "Configuración del seguimiento" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" -msgstr "" +msgstr "Conmutadores de contexto" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:5 msgid "DF Plugin Configuration" msgstr "Configuración del plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,16 +170,18 @@ msgid "Disk Plugin Configuration" msgstr "Configuración del plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Espacio en disco ocupado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disco ocupado" #: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:17 msgid "Display Host »" -msgstr "Mostrar máquina »" +msgstr "Mostrar Host »" #: applications/luci-app-statistics/luasrc/view/public_statistics/graph.htm:23 msgid "Display timespan »" @@ -190,17 +197,17 @@ msgstr "Correo electrónico" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:19 msgid "Empty value = monitor all" -msgstr "" +msgstr "Valor vacío = monitorear todo" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "Habilitar" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -230,15 +237,16 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" -msgstr "Activar este plugin" +msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" -msgstr "" +msgstr "Entropy" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 msgid "Entropy Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento de Entropy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38 msgid "Exec" @@ -253,8 +261,9 @@ msgid "Filter class monitoring" msgstr "Monitorización del filtro de clases" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" -msgstr "Cortafuegos" +msgstr "Firewall" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 msgid "Flush cache after" @@ -262,19 +271,19 @@ msgstr "Vaciar caché tras" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 msgid "Forwarding between listen and server addresses" -msgstr "Retransmitir entre las direcciones de escucha y servidor" +msgstr "Reenviar entre las direcciones de escucha y servidor" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" -msgstr "" +msgstr "Recopilar estadísticas de compresión" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:23 msgid "General plugins" -msgstr "" +msgstr "Complementos generales" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" -msgstr "" +msgstr "Genera un gráfico separado para cada usuario registrado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101 msgid "Graphs" @@ -316,7 +325,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:13 msgid "Host" -msgstr "Máquina" +msgstr "Host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:19 msgid "Hostname" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuración del interfaz de plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupciones" @@ -383,12 +394,15 @@ msgid "" "Max values for a period can be used instead of averages when not using 'only " "average RRAs'" msgstr "" +"Los valores máximos para un período se pueden usar en lugar de los promedios " +"cuando no se usa 'only average RRAs'" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:41 msgid "Maximum allowed connections" msgstr "Máximo número de conexiones" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memoria" @@ -413,11 +427,11 @@ msgstr "Monitorizar todos los puertos de escucha locales" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" -msgstr "" +msgstr "Monitorear todos los sensores" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:18 msgid "Monitor device(s) / thermal zone(s)" -msgstr "" +msgstr "Dispositivo(s) de monitoreo / zona(s) térmica(es)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:19 msgid "Monitor devices" @@ -433,7 +447,7 @@ msgstr "Monitorizar tipos de sistema de archivos" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:18 msgid "Monitor host" -msgstr "" +msgstr "Monitor de host" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:19 msgid "Monitor hosts" @@ -467,13 +481,14 @@ msgstr "Monitorizar puertos remotos" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "Nombre" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nombre de la regla" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Enlace de red" @@ -502,12 +517,16 @@ msgid "" "Note: as pages are rendered by user 'nobody', the *.rrd files, the storage " "directory and all its parent directories need to be world readable." msgstr "" +"Nota: como las páginas son representadas por el usuario 'nobody', los " +"archivos *.rrd, el directorio de almacenamiento y todos sus directorios " +"principales deben ser legibles en todo el mundo." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:49 msgid "Number of threads for data collection" msgstr "Número de hilos para recolección de datos" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -520,16 +539,17 @@ msgid "Only create average RRAs" msgstr "Crear sólo RRAs medias" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" -msgstr "" +msgstr "OpenVPN" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento \"OpenVPN\"" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" -msgstr "" +msgstr "Archivos de estado de OpenVPN" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" @@ -544,6 +564,7 @@ msgid "Output plugins" msgstr "Plugins de salida" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -557,9 +578,10 @@ msgstr "Puerto" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:23 msgid "Port for apcupsd communication" -msgstr "" +msgstr "Puerto para comunicación apcupsd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesos" @@ -572,6 +594,7 @@ msgid "Processes to monitor separated by space" msgstr "Procesos a monitorizar (separados por espacios)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesador" @@ -606,7 +629,7 @@ msgstr "Filas por RRA" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:32 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:61 msgid "Script" -msgstr "Guión" +msgstr "Script" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua:44 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:78 @@ -620,19 +643,20 @@ msgstr "Segundos" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" -msgstr "" +msgstr "Lista de sensores" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" -msgstr "" +msgstr "Sensors" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" -msgstr "" +msgstr "Configuración del plugin \"Sensors\"" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 msgid "Server host" -msgstr "Máquina servidor" +msgstr "Host servidor" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:58 msgid "Server port" @@ -640,7 +664,7 @@ msgstr "Puerto servidor" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:76 msgid "Setup" -msgstr "" +msgstr "Configuración" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:57 msgid "Shaping class monitoring" @@ -648,7 +672,7 @@ msgstr "Monitorización de la clase shaping" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:59 msgid "Show max values instead of averages" -msgstr "" +msgstr "Mostrar valores máximos en lugar de promedios" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/email.lua:22 msgid "Socket file" @@ -679,12 +703,13 @@ msgid "Specifies what information to collect about the global topology." msgstr "Especifica qué información recolectar sobre la topología global." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" -msgstr "" +msgstr "Splash Leases" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:5 msgid "Splash Leases Plugin Configuration" -msgstr "" +msgstr "Configuración del complemento \"Splash Leases\"" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:73 #: applications/luci-app-statistics/luasrc/view/admin_statistics/index.htm:9 @@ -709,10 +734,12 @@ msgid "Stored timespans" msgstr "Intervalos almacenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga del sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexiones TCP" @@ -818,6 +845,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 msgid "The entropy plugin collects statistics about the available entropy." msgstr "" +"El plugin \"Entropy\" recopila estadísticas sobre la entropía disponible." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6 msgid "" @@ -839,7 +867,7 @@ msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." msgstr "" -"El plugin \"Iptables\" monitoriza las reglas seleccionadas del cortafuegos y " +"El plugin \"iptables\" monitoriza las reglas seleccionadas del Firewall y " "recoge información de bytes y paquetes procesados por cada regla." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:6 @@ -847,8 +875,8 @@ msgid "" "The irq plugin will monitor the rate of issues per second for each selected " "interrupt. If no interrupt is selected then all interrupts are monitored." msgstr "" -"El plugin IRQ monitorizará las activaciones por segundo de cada interrupción " -"elegida. Si no se selecciona ninguna se monitorizarán todas." +"El plugin \"IRQ\" monitorizará las activaciones por segundo de cada " +"interrupción elegida. Si no se selecciona ninguna se monitorizarán todas." #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:8 msgid "" @@ -963,12 +991,13 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" -msgstr "" +msgstr "Thermal" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:4 msgid "Thermal Plugin Configuration" -msgstr "" +msgstr "Configuración del plugin Thermal" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:5 msgid "This plugin collects statistics about the processor context switches." @@ -999,6 +1028,7 @@ msgstr "Intenta resolver el nombre de máquina cualificado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "SAI" @@ -1012,7 +1042,7 @@ msgstr "Nombre del SAI en el formato de NUT sai@máquina" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:22 msgid "URL" -msgstr "" +msgstr "URL" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:57 msgid "UnixSock" @@ -1023,8 +1053,9 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuración del plugin \"UnixSock\"" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" -msgstr "" +msgstr "Tiempo activo" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" @@ -1048,8 +1079,9 @@ msgid "Verbose monitoring" msgstr "Monitorización detallada" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" -msgstr "Red inalámbrica" +msgstr "WiFi" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:7 msgid "Wireless iwinfo Plugin Configuration" @@ -1061,8 +1093,9 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 msgid "cUrl Plugin Configuration" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index bd2011bb19..5e457bcdce 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -117,6 +119,7 @@ msgstr "" "paramètres généraux de ce démon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuration du greffon DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuration du greffon Disque" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilisation de l'espace-disque" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Espace-disque" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Activer ce greffon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Surveillance des filtres" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Pare-feu" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuration du greffon des Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interruptions" @@ -391,6 +402,7 @@ msgid "Maximum allowed connections" msgstr "Nb de Connexions autorisées au maximum" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -476,6 +488,7 @@ msgid "Name of the rule" msgstr "Nom de la règle" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "Nombre de fils pour la récupération des données" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -522,6 +536,7 @@ msgid "Only create average RRAs" msgstr "Créer seulement des RRAs moyens" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Greffons liés aux résultats" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processus" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processeur" @@ -625,6 +643,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "Durée de la période enregistrée" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Charge-système" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Connexions TCP" @@ -956,6 +978,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Tente de récupérer des noms d'hôtes complètement qualifiés" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1016,6 +1040,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuration du greffon de socket Unix" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Surveillance verbeuse" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Sans-fil" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index 848b89b7be..2c818902c0 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -114,6 +116,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -122,6 +125,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -130,6 +134,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -162,10 +167,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -196,8 +203,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -230,6 +237,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -250,6 +258,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -334,10 +343,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -380,6 +391,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -465,6 +477,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -499,6 +512,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -511,6 +525,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -535,6 +550,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -551,6 +567,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -563,6 +580,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -614,6 +632,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -670,6 +689,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -700,10 +720,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -903,6 +925,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -935,6 +958,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -959,6 +983,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -984,6 +1009,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -997,6 +1023,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 7a0ee1e037..030658f65d 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -12,6 +12,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -57,6 +58,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -115,6 +117,7 @@ msgstr "" "collectd démon általános beállításait." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -123,6 +126,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Conntrack bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "DF bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "Lemez bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Felhasznált lemezterület" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Lemezhasználat" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ msgid "Enable this plugin" msgstr "Bővítmény engedélyezése" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "Szűrő osztály figyelése" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Tűzfal" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Interfész bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfészek" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Megszakítások" @@ -392,6 +403,7 @@ msgid "Maximum allowed connections" msgstr "Megengedett kapcsolatok maximális száma" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" @@ -477,6 +489,7 @@ msgid "Name of the rule" msgstr "A szabály neve" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Az adatgyűjtő szálak száma" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -523,6 +537,7 @@ msgid "Only create average RRAs" msgstr "Csak átlag RRA-k létrehozása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Kimeneti bővítmények" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Folyamatok" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "Figyelendő folyamatok szóközzel elválasztva" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processzor" @@ -626,6 +644,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -686,6 +705,7 @@ msgstr "" "gyűjteni." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -716,10 +736,12 @@ msgid "Stored timespans" msgstr "Tárolt időszakok" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Rendszerterhelés" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP kapcsolatok" @@ -950,6 +972,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -984,6 +1007,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1008,6 +1032,7 @@ msgid "Unixsock Plugin Configuration" msgstr "UnixSock bővítmény beállítása" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1033,6 +1058,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Vezeték nélküli" @@ -1046,6 +1072,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 3388e0d7ff..6bda3b9b39 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -117,6 +119,7 @@ msgstr "" "del demone collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Abilita questo plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -342,10 +351,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfacce" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -390,6 +401,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -475,6 +487,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -509,6 +522,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -521,6 +535,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -545,6 +560,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -561,6 +577,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -573,6 +590,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -624,6 +642,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -680,6 +699,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -710,10 +730,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -913,6 +935,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -945,6 +968,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -969,6 +993,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -994,6 +1019,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -1007,6 +1033,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index 9c63e559d3..e68426eea5 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -14,6 +14,7 @@ msgstr "" "Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 周波数" @@ -116,6 +118,7 @@ msgstr "" "モンです。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -124,6 +127,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Conntrack プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -132,6 +136,7 @@ msgid "DF Plugin Configuration" msgstr "DF プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -164,10 +169,12 @@ msgid "Disk Plugin Configuration" msgstr "ディスクプラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "ディスクスペース使用量" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "ディスクの使用" @@ -198,8 +205,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -232,6 +239,7 @@ msgid "Enable this plugin" msgstr "プラグイン設定を有効にする" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "エントロピー" @@ -252,6 +260,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "ファイアウォール" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "インターフェース プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "インターフェース" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "割込み" @@ -392,6 +403,7 @@ msgid "Maximum allowed connections" msgstr "許可された最大接続数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "メモリー" @@ -477,6 +489,7 @@ msgid "Name of the rule" msgstr "ルール名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -514,6 +527,7 @@ msgid "Number of threads for data collection" msgstr "データ収集用スレッド数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -526,6 +540,7 @@ msgid "Only create average RRAs" msgstr "平均値のRRAsのみ作成する" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -550,6 +565,7 @@ msgid "Output plugins" msgstr "出力プラグイン" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -566,6 +582,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "プロセス" @@ -578,6 +595,7 @@ msgid "Processes to monitor separated by space" msgstr "スペースで区切られた、モニターするプロセスです。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "プロセッサー" @@ -629,6 +647,7 @@ msgid "Sensor list" msgstr "センサー一覧" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "センサー" @@ -685,6 +704,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -715,10 +735,12 @@ msgid "Stored timespans" msgstr "保存する期間の範囲" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "システム負荷" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 接続" @@ -965,6 +987,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "サーマル" @@ -1002,6 +1025,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1026,6 +1050,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock プラグイン設定" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "稼働時間" @@ -1051,6 +1076,7 @@ msgid "Verbose monitoring" msgstr "詳細モニタリング" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "無線" @@ -1066,6 +1092,7 @@ msgstr "" "効にできます。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 6914ab1e9f..d3dff62029 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -11,6 +11,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -56,6 +57,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -111,6 +113,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -119,6 +122,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -127,6 +131,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -159,10 +164,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -193,8 +200,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -227,6 +234,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -247,6 +255,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -331,10 +340,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -377,6 +388,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -462,6 +474,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -496,6 +509,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -508,6 +522,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -532,6 +547,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -548,6 +564,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -560,6 +577,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -611,6 +629,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -667,6 +686,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -697,10 +717,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -900,6 +922,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -932,6 +955,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -956,6 +980,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -981,6 +1006,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -994,6 +1020,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/no/statistics.po b/applications/luci-app-statistics/po/no/statistics.po index b99ae17fca..525a7307f2 100644 --- a/applications/luci-app-statistics/po/no/statistics.po +++ b/applications/luci-app-statistics/po/no/statistics.po @@ -5,6 +5,7 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -50,6 +51,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -108,6 +110,7 @@ msgstr "" "collectd daemon." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -116,6 +119,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -124,6 +128,7 @@ msgid "DF Plugin Configuration" msgstr "DF plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -156,10 +161,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Disk Forbruk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Anvendelse" @@ -190,8 +197,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -224,6 +231,7 @@ msgid "Enable this plugin" msgstr "Aktiver denne plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -244,6 +252,7 @@ msgid "Filter class monitoring" msgstr "Filter class overvåking" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Brannmur" @@ -333,10 +342,12 @@ msgid "Interface Plugin Configuration" msgstr "Grensesnitt plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Grensesnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Avbrudd" @@ -379,6 +390,7 @@ msgid "Maximum allowed connections" msgstr "Maksimum tillatte tilkoblinger" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -464,6 +476,7 @@ msgid "Name of the rule" msgstr "Navnet på regelen" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Nettlink" @@ -498,6 +511,7 @@ msgid "Number of threads for data collection" msgstr "Antall tråder for datainnsamling" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -510,6 +524,7 @@ msgid "Only create average RRAs" msgstr "Lag kun gjennomsnittlige RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -534,6 +549,7 @@ msgid "Output plugins" msgstr "Utdata Plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -550,6 +566,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Prosesser" @@ -562,6 +579,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Prosessor" @@ -613,6 +631,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -669,6 +688,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -699,10 +719,12 @@ msgid "Stored timespans" msgstr "Lagrede tidsperioder" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Belastning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP Forbindelser" @@ -938,6 +960,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -974,6 +997,7 @@ msgstr "Prøv å søk etter fullstendig vertsnavn" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -998,6 +1022,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock plugin konfigurasjon" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1023,6 +1048,7 @@ msgid "Verbose monitoring" msgstr "Detaljert overvåking" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Trådløs" @@ -1036,6 +1062,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 2ae1879dfb..06ad09c99a 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -118,6 +120,7 @@ msgstr "" "collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -126,6 +129,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Konfiguracja wtyczki Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Konfiguracja wtyczki DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Konfiguracja wtyczki dysk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Zużycie przestrzeni dyskowej" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Użycie dysku" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ msgid "Enable this plugin" msgstr "Włącz tę wtyczkę" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Monitorowanie filtra klas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Konfiguracja wtyczki Interfejs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfejsy" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Przerwania" @@ -393,6 +404,7 @@ msgid "Maximum allowed connections" msgstr "Maksymalna ilość połączeń" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Pamięć" @@ -478,6 +490,7 @@ msgid "Name of the rule" msgstr "Nazwa tej reguły" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -512,6 +525,7 @@ msgid "Number of threads for data collection" msgstr "Liczba wątków do zbierania danych" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -524,6 +538,7 @@ msgid "Only create average RRAs" msgstr "Twórz tylko średnie archiwa RRA" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -548,6 +563,7 @@ msgid "Output plugins" msgstr "Pluginy wyjścia" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -564,6 +580,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procesy" @@ -576,6 +593,7 @@ msgid "Processes to monitor separated by space" msgstr "Monitorowane procesy oddzielone spacją" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -627,6 +645,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -683,6 +702,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Określa jakie informacje zbierać o globalnej topologii." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -714,10 +734,12 @@ msgid "Stored timespans" msgstr "Przechowywane okresy czasu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Obciążenie systemu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Połączenia TCP" @@ -958,6 +980,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Spróbuj znaleźć pełną nazwę hosta" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -1016,6 +1040,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfiguracja wtyczki UnixSock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Pełny monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "WiFi" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/pt-br/statistics.po b/applications/luci-app-statistics/po/pt-br/statistics.po index 491caaa722..0ab5351ad7 100644 --- a/applications/luci-app-statistics/po/pt-br/statistics.po +++ b/applications/luci-app-statistics/po/pt-br/statistics.po @@ -14,6 +14,7 @@ msgstr "" "Language-Team: \n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "Nobreak APC" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "Configuração do Módulo de Troca de Contexto da CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "Frequência da CPU" @@ -117,6 +119,7 @@ msgstr "" "do daemon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Configuração do Plugin do Conntrack" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "Trocas de Contexto" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilização do Disco" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Entropia" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -346,10 +355,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupções" @@ -396,6 +407,7 @@ msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" @@ -481,6 +493,7 @@ msgid "Name of the rule" msgstr "Nome da regra" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -518,6 +531,7 @@ msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -530,6 +544,7 @@ msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -554,6 +569,7 @@ msgid "Output plugins" msgstr "Plugins de saída" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -570,6 +586,7 @@ msgid "Port for apcupsd communication" msgstr "Porta para comunicação do apcupsd" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -582,6 +599,7 @@ msgid "Processes to monitor separated by space" msgstr "Processos para monitorar, separado por espaços" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -633,6 +651,7 @@ msgid "Sensor list" msgstr "Lista de sensores" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Sensores" @@ -689,6 +708,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Especifica quais informações serão coletadas sobre a topologia global." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Concessões do Splash" @@ -719,10 +739,12 @@ msgid "Stored timespans" msgstr "Intervalos armazenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga do Sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexões TCP" @@ -982,6 +1004,7 @@ msgstr "" "atividade do sistema." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "Térmico" @@ -1021,6 +1044,7 @@ msgstr "Tentar encontrar o nome completo do equipamento (FQDN)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS (no-breaks)" @@ -1045,6 +1069,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Tempo de atividade" @@ -1070,6 +1095,7 @@ msgid "Verbose monitoring" msgstr "Monitoramento no modo detalhado" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Rede Sem Fio (Wireless)" @@ -1085,6 +1111,7 @@ msgstr "" "estatísticas." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index 660f1a3867..928aba7a90 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -14,6 +14,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -59,6 +60,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -117,6 +119,7 @@ msgstr "" "do daemon collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -125,6 +128,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -133,6 +137,7 @@ msgid "DF Plugin Configuration" msgstr "Configuração do plugin DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -165,10 +170,12 @@ msgid "Disk Plugin Configuration" msgstr "Configuração do plugin Disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilização de espaço em disco" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilização do Disco" @@ -199,8 +206,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -233,6 +240,7 @@ msgid "Enable this plugin" msgstr "Habilitar este plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -253,6 +261,7 @@ msgid "Filter class monitoring" msgstr "Monitoramento das Classes de Filtros" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -344,10 +353,12 @@ msgid "Interface Plugin Configuration" msgstr "Configuração do plugin Interface" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Interrupções" @@ -392,6 +403,7 @@ msgid "Maximum allowed connections" msgstr "Máximo de conexões permitidas" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Memória" @@ -477,6 +489,7 @@ msgid "Name of the rule" msgstr "Nome da regra" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -511,6 +524,7 @@ msgid "Number of threads for data collection" msgstr "Número de threads para o coletor de dados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -523,6 +537,7 @@ msgid "Only create average RRAs" msgstr "Somente criar RRAs de média" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -547,6 +562,7 @@ msgid "Output plugins" msgstr "Plugins de saída" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -563,6 +579,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processos" @@ -575,6 +592,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processador" @@ -626,6 +644,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -682,6 +701,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -712,10 +732,12 @@ msgid "Stored timespans" msgstr "Intervalos armazenados" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Carga do Sistema" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexões TCP" @@ -956,6 +978,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -992,6 +1015,7 @@ msgstr "Tentar encontrar o nome do host completo (FQDN)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1016,6 +1040,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Configuração do plugin Unixsock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1041,6 +1066,7 @@ msgid "Verbose monitoring" msgstr "Monitoramento no modo verbose" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1054,6 +1080,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 0802685811..486e155f3b 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.4\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -118,6 +120,7 @@ msgstr "" "Collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -126,6 +129,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Utilizarea spatiului pe disc" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Utilizarea discului" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -338,10 +347,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfete" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Intreruperi" @@ -384,6 +395,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -469,6 +481,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Legatura de retea" @@ -503,6 +516,7 @@ msgid "Number of threads for data collection" msgstr "Numarul de threaduri pentru colectarea datelor" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -515,6 +529,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -539,6 +554,7 @@ msgid "Output plugins" msgstr "Pluginuri de iesire" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -555,6 +571,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Procese" @@ -567,6 +584,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Procesor" @@ -618,6 +636,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -674,6 +693,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -704,10 +724,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Incarcarea de sistem" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Conexiuni TCP" @@ -909,6 +931,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -941,6 +964,7 @@ msgstr "Incearca sa rezolvi numele de domeniu complet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -965,6 +989,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -990,6 +1015,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wireless" @@ -1003,6 +1029,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 434b7ab756..83395573f2 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -16,6 +16,7 @@ msgstr "" "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC ИБП" @@ -61,6 +62,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "Настройка плагина переключений контекста CPU" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "Частота CPU" @@ -118,6 +120,7 @@ msgstr "" "плагинов. На этой странице вы можете изменить настройки collectd." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Отслеживание подключений (Conntrack)" @@ -126,6 +129,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Настройка плагина «Conntrack»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "Переключения контекста" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Настройка плагина «DF»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Настройка плагина «Disk»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Использовано места на диске" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Использование диска" @@ -200,8 +207,8 @@ msgstr "Включить" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ msgid "Enable this plugin" msgstr "Включить этот плагин" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Энтропия" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Мониторинг класса фильтров" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Межсетевой экран" @@ -347,10 +356,12 @@ msgid "Interface Plugin Configuration" msgstr "Настройка плагина «Интерфейсы»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Интерфейсы" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Прерывания" @@ -397,6 +408,7 @@ msgid "Maximum allowed connections" msgstr "Максимум разрешенных соединений" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Оперативная память (RAM)" @@ -482,6 +494,7 @@ msgid "Name of the rule" msgstr "Имя правила" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -518,6 +531,7 @@ msgid "Number of threads for data collection" msgstr "Количество потоков сбора данных" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -530,6 +544,7 @@ msgid "Only create average RRAs" msgstr "Создавать только средние RRA" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -554,6 +569,7 @@ msgid "Output plugins" msgstr "Плагины вывода" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Пинг-запрос" @@ -570,6 +586,7 @@ msgid "Port for apcupsd communication" msgstr "Порт для связи со службой apcupsd" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Процессы" @@ -582,6 +599,7 @@ msgid "Processes to monitor separated by space" msgstr "Процессы для мониторинга (разделённые пробелом)" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "CPU" @@ -636,6 +654,7 @@ msgid "Sensor list" msgstr "Список сенсоров" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Сенсоры" @@ -692,6 +711,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Указывает, какую информацию собирать о глобальной топологии." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -722,10 +742,12 @@ msgid "Stored timespans" msgstr "Сохраняемые промежутки времени" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Загрузка системы" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCPConns" @@ -975,6 +997,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Плагин «Uptime» собирает статистику о времени работы системы." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "Thermal" @@ -1010,6 +1033,7 @@ msgstr "Пытаться определять полное имя хоста" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "ИБП" @@ -1034,6 +1058,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Настройка плагина «UnixSock»" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Время работы" @@ -1059,6 +1084,7 @@ msgid "Verbose monitoring" msgstr "Расширенная статистика" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Wi-Fi" @@ -1074,6 +1100,7 @@ msgstr "" "статистики." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 3f4afe8a36..5bbc165276 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -9,6 +9,7 @@ msgstr "" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -54,6 +55,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -109,6 +111,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -117,6 +120,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -125,6 +129,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -157,10 +162,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -191,8 +198,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -225,6 +232,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -245,6 +253,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -329,10 +338,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -375,6 +386,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -460,6 +472,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -494,6 +507,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -506,6 +520,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -530,6 +545,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -546,6 +562,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -558,6 +575,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -609,6 +627,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -665,6 +684,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -695,10 +715,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -898,6 +920,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -930,6 +953,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -954,6 +978,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -979,6 +1004,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -992,6 +1018,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index fdf9eb2f4b..6bdede9cb4 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -10,6 +10,7 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -55,6 +56,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -113,6 +115,7 @@ msgstr "" "collectd-demonen." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -121,6 +124,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -129,6 +133,7 @@ msgid "DF Plugin Configuration" msgstr "Konfiguration av insticksprogrammet DF" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -161,10 +166,12 @@ msgid "Disk Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Disk" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Användning av diskutrymme" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Användning av disk" @@ -195,8 +202,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -229,6 +236,7 @@ msgid "Enable this plugin" msgstr "Aktivera det här insticksprogrammet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "Entropi" @@ -249,6 +257,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Brandvägg" @@ -334,10 +343,12 @@ msgid "Interface Plugin Configuration" msgstr "Konfiguration av insticksprogrammets gränssnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Gränssnitt" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Avbrott" @@ -380,6 +391,7 @@ msgid "Maximum allowed connections" msgstr "Maximalt tillåtna anslutningar" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "Minne" @@ -465,6 +477,7 @@ msgid "Name of the rule" msgstr "Regelns namn" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Nätlänk" @@ -499,6 +512,7 @@ msgid "Number of threads for data collection" msgstr "Antalet trådar för insamling av data" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -511,6 +525,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -535,6 +550,7 @@ msgid "Output plugins" msgstr "Insticksprogram för utmatning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Pinga" @@ -551,6 +567,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Processer" @@ -563,6 +580,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Processor" @@ -614,6 +632,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "Sensorer" @@ -670,6 +689,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "Anger vilken information som ska samlas in om den globala topologin." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -700,10 +720,12 @@ msgid "Stored timespans" msgstr "Lagrade tidsspann" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "Belastning av systemet" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP-anslutningar" @@ -903,6 +925,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -935,6 +958,7 @@ msgstr "Försök att kolla upp fullständigt kvalificerade värdnamn" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -959,6 +983,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Konfiguration av insticksprogrammet UnixSock" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "Upptid" @@ -984,6 +1009,7 @@ msgid "Verbose monitoring" msgstr "Detaljerad övervakning" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Trådlöst" @@ -999,6 +1025,7 @@ msgstr "" "mer statistik." #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index eebbb0577c..c95e0e8726 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -2,6 +2,7 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -47,6 +48,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -102,6 +104,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -110,6 +113,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -118,6 +122,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -150,10 +155,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -184,8 +191,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -218,6 +225,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -238,6 +246,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -322,10 +331,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -368,6 +379,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -453,6 +465,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -487,6 +500,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -499,6 +513,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -523,6 +538,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -539,6 +555,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -551,6 +568,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -602,6 +620,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -658,6 +677,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -688,10 +708,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -891,6 +913,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -923,6 +946,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -947,6 +971,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -972,6 +997,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -985,6 +1011,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 20443b9a6f..cffaee79e8 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -10,6 +10,7 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -55,6 +56,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -110,6 +112,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -118,6 +121,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -126,6 +130,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "" @@ -158,10 +163,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -192,8 +199,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -226,6 +233,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -246,6 +254,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -330,10 +339,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -376,6 +387,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -461,6 +473,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -495,6 +508,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -507,6 +521,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -531,6 +546,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -547,6 +563,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -559,6 +576,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -610,6 +628,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -666,6 +685,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -696,10 +716,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -899,6 +921,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -931,6 +954,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -955,6 +979,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -980,6 +1005,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -993,6 +1019,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index bdd9dfc942..ff31fe5f51 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 2.0.6\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -115,6 +117,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -123,6 +126,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -131,6 +135,7 @@ msgid "DF Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -163,10 +168,12 @@ msgid "Disk Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "" @@ -197,8 +204,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -231,6 +238,7 @@ msgid "Enable this plugin" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -251,6 +259,7 @@ msgid "Filter class monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "" @@ -335,10 +344,12 @@ msgid "Interface Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Інтерфейси" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "" @@ -381,6 +392,7 @@ msgid "Maximum allowed connections" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -466,6 +478,7 @@ msgid "Name of the rule" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "" @@ -500,6 +513,7 @@ msgid "Number of threads for data collection" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -512,6 +526,7 @@ msgid "Only create average RRAs" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -536,6 +551,7 @@ msgid "Output plugins" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "" @@ -552,6 +568,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "" @@ -564,6 +581,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "" @@ -615,6 +633,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -671,6 +690,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -701,10 +721,12 @@ msgid "Stored timespans" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "" @@ -904,6 +926,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -936,6 +959,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -960,6 +984,7 @@ msgid "Unixsock Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -985,6 +1010,7 @@ msgid "Verbose monitoring" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "" @@ -998,6 +1024,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index 7b22ae052f..2b752abef7 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -15,6 +15,7 @@ msgstr "" "X-Generator: Pootle 1.1.0\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "" @@ -60,6 +61,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "" @@ -118,6 +120,7 @@ msgstr "" "cai collectd daemon. " #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "" @@ -126,6 +129,7 @@ msgid "Conntrack Plugin Configuration" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "" @@ -134,6 +138,7 @@ msgid "DF Plugin Configuration" msgstr "Cấu hình DF plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -166,10 +171,12 @@ msgid "Disk Plugin Configuration" msgstr "Cấu hình disk plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "Khoảng trống trên đĩa" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "Disk Usage" @@ -200,8 +207,8 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -234,6 +241,7 @@ msgid "Enable this plugin" msgstr "Kích hoạt plugin này" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "" @@ -254,6 +262,7 @@ msgid "Filter class monitoring" msgstr "Filter class monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "Firewall" @@ -345,10 +354,12 @@ msgid "Interface Plugin Configuration" msgstr "Cấu hình giao diện plugin" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Giao diện" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "Cắt ngang" @@ -391,6 +402,7 @@ msgid "Maximum allowed connections" msgstr "Tối đã kết nối cho phép" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "" @@ -476,6 +488,7 @@ msgid "Name of the rule" msgstr "Tên của rule" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "Số lượng các chủ đề để thu thập dữ liệu" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "" @@ -522,6 +536,7 @@ msgid "Only create average RRAs" msgstr "Chỉ tạo trung bình RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output plugins" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "Quá trình xử lý" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "Bộ xử lý" @@ -625,6 +643,7 @@ msgid "Sensor list" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "Lưu timspans" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "System Load" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "Kết nối TCP" @@ -956,6 +978,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "" @@ -989,6 +1012,7 @@ msgstr "Thử tra cứu những tên host đủ điều kiện" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "" @@ -1013,6 +1037,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Cấu hình Unixsock Plugin " #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "" @@ -1038,6 +1063,7 @@ msgid "Verbose monitoring" msgstr "Verbose monitoring" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "Mạng không dây" @@ -1051,6 +1077,7 @@ msgid "" msgstr "" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "" diff --git a/applications/luci-app-statistics/po/zh-cn/statistics.po b/applications/luci-app-statistics/po/zh-cn/statistics.po index 3ead4901ba..33fee69b07 100644 --- a/applications/luci-app-statistics/po/zh-cn/statistics.po +++ b/applications/luci-app-statistics/po/zh-cn/statistics.po @@ -17,6 +17,7 @@ msgstr "" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC UPS" @@ -62,6 +63,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "CPU 上下文切换插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 频率" @@ -119,6 +121,7 @@ msgstr "" "以更改 Collectd 守护进程常规设置。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -127,6 +130,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Conntrack 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "上下文切换" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "DF 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "磁盘插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "磁盘空间使用情况" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "磁盘使用情况" @@ -201,8 +208,8 @@ msgstr "启用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ msgid "Enable this plugin" msgstr "启用该插件" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "熵" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "Filter 类监测" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "防火墙" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "接口插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "接口" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "中断" @@ -389,6 +400,7 @@ msgid "Maximum allowed connections" msgstr "最大允许连接数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "内存" @@ -474,6 +486,7 @@ msgid "Name of the rule" msgstr "规则名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "收集程序使用线程数" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -522,6 +536,7 @@ msgid "Only create average RRAs" msgstr "仅创建平均 RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output 插件" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "apcupsd 通信端口" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "进程" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "监控的进程,用空格隔开" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "处理器" @@ -625,6 +643,7 @@ msgid "Sensor list" msgstr "传感器列表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "传感器" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓扑相关信息。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "存储时间跨度" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "系统负载" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 连接数" @@ -931,6 +953,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "运行时间插件收集系统启动时间的统计信息。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "温感" @@ -963,6 +986,7 @@ msgstr "尝试解析主机全域名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -987,6 +1011,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock 插件配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "运行时间" @@ -1012,6 +1037,7 @@ msgid "Verbose monitoring" msgstr "详细监测" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "无线" @@ -1025,6 +1051,7 @@ msgid "" msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计数据。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "cUrl" diff --git a/applications/luci-app-statistics/po/zh-tw/statistics.po b/applications/luci-app-statistics/po/zh-tw/statistics.po index abaef793b3..ac029ca35d 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -17,6 +17,7 @@ msgstr "" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua:7 msgid "APC UPS" msgstr "APC UPS" @@ -62,6 +63,7 @@ msgid "CPU Context Switches Plugin Configuration" msgstr "CPU Context Switches 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpufreq.lua:6 msgid "CPU Frequency" msgstr "CPU 頻率" @@ -119,6 +121,7 @@ msgstr "" "以更改 Collectd 守護程序常規設定。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:27 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua:7 msgid "Conntrack" msgstr "Conntrack" @@ -127,6 +130,7 @@ msgid "Conntrack Plugin Configuration" msgstr "Conntrack 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:28 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/contextswitch.lua:6 msgid "Context Switches" msgstr "上下文切換" @@ -135,6 +139,7 @@ msgid "DF Plugin Configuration" msgstr "DF 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:35 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/dns.lua:7 msgid "DNS" msgstr "DNS" @@ -167,10 +172,12 @@ msgid "Disk Plugin Configuration" msgstr "Disk 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/df.lua:7 msgid "Disk Space Usage" msgstr "磁碟空間使用情況" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:34 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua:7 msgid "Disk Usage" msgstr "磁碟使用情況" @@ -201,8 +208,8 @@ msgstr "啟用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:11 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpufreq.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/cpu.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/csv.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:8 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:15 @@ -235,6 +242,7 @@ msgid "Enable this plugin" msgstr "啟用該外掛" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:37 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/entropy.lua:7 msgid "Entropy" msgstr "熵" @@ -255,6 +263,7 @@ msgid "Filter class monitoring" msgstr "Filter 類監測" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:40 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iptables.lua:7 msgid "Firewall" msgstr "防火牆" @@ -343,10 +352,12 @@ msgid "Interface Plugin Configuration" msgstr "Interface 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/interface.lua:7 msgid "Interfaces" msgstr "Interfaces" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/irq.lua:7 msgid "Interrupts" msgstr "中斷" @@ -389,6 +400,7 @@ msgid "Maximum allowed connections" msgstr "最大允許連線數" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:44 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/memory.lua:15 msgid "Memory" msgstr "記憶體" @@ -474,6 +486,7 @@ msgid "Name of the rule" msgstr "規則名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:45 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua:7 msgid "Netlink" msgstr "Netlink" @@ -510,6 +523,7 @@ msgid "Number of threads for data collection" msgstr "收集程式使用執行緒數" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:48 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua:7 msgid "OLSRd" msgstr "OLSRd" @@ -522,6 +536,7 @@ msgid "Only create average RRAs" msgstr "僅建立平均 RRAs" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:49 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/openvpn.lua:7 msgid "OpenVPN" msgstr "OpenVPN" @@ -546,6 +561,7 @@ msgid "Output plugins" msgstr "Output 外掛" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:50 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua:7 msgid "Ping" msgstr "Ping" @@ -562,6 +578,7 @@ msgid "Port for apcupsd communication" msgstr "apcupsd 通訊埠" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:51 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua:7 msgid "Processes" msgstr "程序" @@ -574,6 +591,7 @@ msgid "Processes to monitor separated by space" msgstr "過程監控,用空格隔開" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/cpu.lua:7 msgid "Processor" msgstr "處理器" @@ -625,6 +643,7 @@ msgid "Sensor list" msgstr "感測器列表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:53 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua:7 msgid "Sensors" msgstr "感測器" @@ -681,6 +700,7 @@ msgid "Specifies what information to collect about the global topology." msgstr "收集指定拓撲相關資訊。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:54 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/splash_leases.lua:7 msgid "Splash Leases" msgstr "Splash Leases" @@ -711,10 +731,12 @@ msgid "Stored timespans" msgstr "儲存時間跨度" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/load.lua:7 msgid "System Load" msgstr "系統載入" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua:7 msgid "TCP Connections" msgstr "TCP 連線數" @@ -931,6 +953,7 @@ msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "uptime 外掛收集系統啟動時間的統計資訊。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/thermal.lua:6 msgid "Thermal" msgstr "溫感" @@ -963,6 +986,7 @@ msgstr "嘗試解析主機全域名" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:47 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:12 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/nut.lua:6 msgid "UPS" msgstr "UPS" @@ -987,6 +1011,7 @@ msgid "Unixsock Plugin Configuration" msgstr "Unixsock 外掛配置" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:58 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua:15 msgid "Uptime" msgstr "執行時間" @@ -1012,6 +1037,7 @@ msgid "Verbose monitoring" msgstr "詳細監測" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:42 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/iwinfo.lua:7 msgid "Wireless" msgstr "無線" @@ -1025,6 +1051,7 @@ msgid "" msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計資料。" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 +#: applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua:7 msgid "cUrl" msgstr "cUrl" diff --git a/applications/luci-app-transmission/po/es/transmission.po b/applications/luci-app-transmission/po/es/transmission.po index b45e032521..28b0940b34 100644 --- a/applications/luci-app-transmission/po/es/transmission.po +++ b/applications/luci-app-transmission/po/es/transmission.po @@ -1,17 +1,17 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" +"Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-08-21 22:06+0200\n" -"PO-Revision-Date: 2012-08-26 10:47+0200\n" +"PO-Revision-Date: 2019-03-02 12:35-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" -"Language-Team: LANGUAGE <LL@li.org>\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: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"Language-Team: \n" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:39 msgid "Alternative download speed" @@ -19,7 +19,7 @@ msgstr "Velocidad de descarga alternativa" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:36 msgid "Alternative speed enabled" -msgstr "Velocidad alternativa activada" +msgstr "Velocidad alternativa habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:190 msgid "Alternative speed time begin" @@ -35,7 +35,7 @@ msgstr "Hora de fin de la velocidad alternativa" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:183 msgid "Alternative speed timing enabled" -msgstr "Temporización alternativa de la velocidad activada" +msgstr "Temporización alternativa de la velocidad habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:41 msgid "Alternative upload speed" @@ -43,7 +43,7 @@ msgstr "Velocidad de subida alternativa" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:79 msgid "Automatically start added torrents" -msgstr "Arrancar automáticamente los torrents al añadirlos" +msgstr "Iniciar automáticamente los torrents al añadirlos" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:34 msgid "Bandwidth settings" @@ -59,7 +59,7 @@ msgstr "Dirección IPv6 a asociar" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:57 msgid "Block list enabled" -msgstr "Lista de bloques activada" +msgstr "Lista de bloques habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:60 msgid "Blocklist URL" @@ -75,15 +75,15 @@ msgstr "Tamaño de la caché en MB" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:25 msgid "Config file directory" -msgstr "Directorio del fichero de configuración" +msgstr "Carpeta del archivo de configuración" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:32 msgid "Custom WEB UI directory" -msgstr "" +msgstr "Directorio personalizado de WEB UI" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:94 msgid "DHT enabled" -msgstr "DHT activado" +msgstr "DHT habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:111 msgid "Debug" @@ -91,11 +91,11 @@ msgstr "Depurar" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:65 msgid "Download directory" -msgstr "Directorio de descargas" +msgstr "Carpeta de descargas" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:202 msgid "Download queue enabled" -msgstr "Cola de descargas activada" +msgstr "Cola de descargas habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:205 msgid "Download queue size" @@ -103,15 +103,15 @@ msgstr "Tamaño de la cola de descargas" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:86 msgid "Enable watch directory" -msgstr "Activar directorio a observar" +msgstr "Habilitar carpeta a observar" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:23 msgid "Enabled" -msgstr "Activado" +msgstr "Habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:97 msgid "Encryption" -msgstr "Encriptado" +msgstr "Cifrado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:109 msgid "Error" @@ -123,7 +123,7 @@ msgstr "Rápido" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:63 msgid "Files and Locations" -msgstr "Ficheros y posiciones" +msgstr "Archivos y posiciones" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:100 msgid "Forced" @@ -135,7 +135,7 @@ msgstr "Lleno" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:136 msgid "Global peer limit" -msgstr "Límite global de máquinas" +msgstr "Límite global de pares" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:19 msgid "Global settings" @@ -147,15 +147,15 @@ msgstr "Límite de sembrado en vacío" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:120 msgid "Idle seeding limit enabled" -msgstr "Límite de sembrado en vacío activado" +msgstr "Límite de sembrado en vacío habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:69 msgid "Incomplete directory" -msgstr "Directorio incompleto" +msgstr "Carpeta incompleta" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:66 msgid "Incomplete directory enabled" -msgstr "Directorio incompleto activado" +msgstr "Carpeta incompleta habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:110 msgid "Info" @@ -163,11 +163,11 @@ msgstr "Información" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:104 msgid "LPD enabled" -msgstr "LPD activado" +msgstr "LPD habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:101 msgid "Lazy bitfield enabled" -msgstr "Lazy bitfield activado" +msgstr "Lazy bitfield habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:107 msgid "Message level" @@ -187,9 +187,9 @@ msgid "" "enabled, add a value. For Sunday - 1, Monday - 2, Tuesday - 4, Wednesday - " "8, Thursday - 16, Friday - 32, Saturday - 64" msgstr "" -"Número/en bits. Empiece con 0 y por cada día que quiera que se active el " -"programados sume: Para domingo - 1, lunes - 2, martes - 4, miércoles - 8, " -"jueves - 16, viernes - 32, sábado - 64" +"Número/bits. Comience con 0, luego, para cada día que desee habilitar el " +"programador, agregue un valor. Para el domingo - 1, lunes - 2, martes - 4, " +"miércoles - 8, jueves - 16, viernes - 32, sábado - 64" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:72 #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:98 @@ -202,7 +202,7 @@ msgstr "Interfaz de red abierta" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:112 msgid "PEX enabled" -msgstr "PEX activado" +msgstr "PEX habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:140 msgid "Peer Port settings" @@ -242,7 +242,7 @@ msgstr "Peer socket tos" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:150 msgid "Port forwarding enabled" -msgstr "Traspaso de puertos activado" +msgstr "Reenvío de puertos habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:99 msgid "Preferred" @@ -250,11 +250,11 @@ msgstr "Preferente" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:75 msgid "Prefetch enabled" -msgstr "Activar prefetch" +msgstr "Habilitar prefetch" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:207 msgid "Queue stalled enabled" -msgstr "Activar bloqueo de cola" +msgstr "Habilitar bloqueo de cola" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:210 msgid "Queue stalled minutes" @@ -278,7 +278,7 @@ msgstr "Dirección de asociación RPC" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:156 msgid "RPC enabled" -msgstr "RPC activado" +msgstr "RPC habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:177 msgid "RPC password" @@ -302,7 +302,7 @@ msgstr "Lista blanca RPC" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:165 msgid "RPC whitelist enabled" -msgstr "Activar listas blancas RPC" +msgstr "Habilitar listas blancas RPC" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:197 msgid "Ratio limit" @@ -310,11 +310,11 @@ msgstr "Límite de ratio" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:194 msgid "Ratio limit enabled" -msgstr "Límite de ratio activado" +msgstr "Límite de ratio habilitado" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:76 msgid "Rename partial files" -msgstr "Renombrar ficheros parciales" +msgstr "Renombrar archivos parciales" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:26 msgid "Run daemon as user" @@ -326,19 +326,19 @@ msgstr "Programación" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:217 msgid "Scrape paused torrents enabled" -msgstr "Activar scrape de torrents en pausa" +msgstr "Habilitar scrape de torrents en pausa" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:115 msgid "Script torrent done enabled" -msgstr "Activar script de fin de torrent" +msgstr "Habilitar script de fin de torrent" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:118 msgid "Script torrent done filename" -msgstr "Nombre de fichero del script" +msgstr "Nombre de archivo del script" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:212 msgid "Seed queue enabled" -msgstr "Cola de seed activada" +msgstr "Cola de seed Habilitar " #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:215 msgid "Seed queue size" @@ -350,7 +350,7 @@ msgstr "Velocidad mínima" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:43 msgid "Speed limit down enabled" -msgstr "Velocidad mínima activada" +msgstr "Velocidad mínima habilitada" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:51 msgid "Speed limit up" @@ -358,7 +358,7 @@ msgstr "Velocidad máxima" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:48 msgid "Speed limit up enabled" -msgstr "Velocidad máxima activada" +msgstr "Velocidad máxima habilitada" #: applications/luci-app-transmission/luasrc/controller/transmission.lua:11 msgid "Transmission" @@ -369,11 +369,11 @@ msgid "" "Transmission daemon is a simple bittorrent client, here you can configure " "the settings." msgstr "" -"Configuración. El demonio Transmission es un cliente de bittorrent simple." +"Configuración. El demonio Transmission es un cliente de BitTorrent simple." #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:82 msgid "Trash original torrent files" -msgstr "Eliminar los ficheros torrent originales" +msgstr "Eliminar los archivos torrents originales" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:53 msgid "Upload slots per torrent" @@ -381,7 +381,7 @@ msgstr "Ranuras de subida por torrent" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:89 msgid "Watch directory" -msgstr "Directorio a vigilar" +msgstr "Carpeta a vigilar" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:190 #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:192 @@ -394,4 +394,4 @@ msgstr "precolocación" #: applications/luci-app-transmission/luasrc/model/cbi/transmission.lua:125 msgid "uTP enabled" -msgstr "uTP activado" +msgstr "uTP habilitado" diff --git a/applications/luci-app-travelmate/po/es/travelmate.po b/applications/luci-app-travelmate/po/es/travelmate.po new file mode 100644 index 0000000000..33f9160cd0 --- /dev/null +++ b/applications/luci-app-travelmate/po/es/travelmate.po @@ -0,0 +1,568 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 +msgid "AP on" +msgstr "AP en" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 +msgid "Action" +msgstr "Acción" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:80 +msgid "Add Uplink" +msgstr "Añadir enlace" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:11 +msgid "Add Wireless Uplink Configuration" +msgstr "Añadir configuración de enlace inalámbrico" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 +msgid "" +"Additional trigger delay in seconds before travelmate processing begins." +msgstr "" +"Demora adicional del disparador en segundos antes de que comience el " +"procesamiento de travelmate" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:21 +msgid "Advanced" +msgstr "Avanzado" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:86 +msgid "Authentication" +msgstr "Autenticación" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:70 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:87 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:57 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:73 +msgid "Automatic" +msgstr "Automático" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:44 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:27 +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:111 +msgid "BSSID" +msgstr "BSSID" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:13 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:10 +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:89 +msgid "Back to overview" +msgstr "Volver a la visión general" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:63 +msgid "Captive Portal Detection" +msgstr "Detección de portal cautivo" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:64 +msgid "" +"Check the internet availability, log captive portal redirections and keep " +"the uplink connection 'alive'." +msgstr "" +"Verifique la disponibilidad de Internet, registre las redirecciones del " +"portal cautivo y mantenga la conexión del enlace \"viva\"." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:69 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:86 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:56 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:72 +msgid "Cipher" +msgstr "Cifrado" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:14 +msgid "" +"Configuration of the travelmate package to to enable travel router " +"functionality." +msgstr "" +"Configuración del paquete travelmate para habilitar la funcionalidad de " +"enrutador de viaje." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +msgid "Connection Limit" +msgstr "Límite de conexión" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:30 +msgid "Create Uplink interface" +msgstr "Crear interfaz de enlace" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:31 +msgid "" +"Create a new wireless wan uplink interface, configure it to use dhcp and" +msgstr "" +"Cree una nueva interfaz inalámbrica de enlace, configúrela para usar dhcp y" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 +msgid "Delete" +msgstr "Eliminar" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:134 +msgid "Delete this Uplink" +msgstr "Eliminar este enlace" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:109 +msgid "Device" +msgstr "Dispositivo" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 +msgid "Down" +msgstr "Abajo" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:79 +msgid "EAP-Method" +msgstr "Método EAP" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +msgid "Edit" +msgstr "Editar" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:25 +msgid "Edit Firewall Configuration" +msgstr "Editar la configuración del Firewall" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:24 +msgid "Edit Network Configuration" +msgstr "Editar la configuración de red" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:22 +msgid "Edit Travelmate Configuration" +msgstr "Editar la configuración de Travelmate" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:23 +msgid "Edit Wireless Configuration" +msgstr "Editar la configuración del WiFi" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:8 +msgid "Edit Wireless Uplink Configuration" +msgstr "Editar la configuración del enlace inalámbrico" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:133 +msgid "Edit this Uplink" +msgstr "Editar este enlace" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:59 +msgid "Enable Travelmate" +msgstr "Habilitar Travelmate" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 +msgid "Enable Verbose Debug Logging" +msgstr "Habilitar registro de depuración detallado" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:51 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:63 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:80 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:40 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:50 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:66 +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:112 +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:49 +msgid "Encryption" +msgstr "Encriptación" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +msgid "Extra Options" +msgstr "Opciones extra" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:125 +msgid "Faulty Stations" +msgstr "Estaciones defectuosas" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 +msgid "Find and join network on" +msgstr "Encuentra y unirse a la red en" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:208 +msgid "For QR-Code support please install package 'qrencode'!" +msgstr "Para soporte de código QR, instale el paquete 'qrencode'!" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 +msgid "" +"For further information <a href=\"%s\" target=\"_blank\">see online " +"documentation</a>" +msgstr "" +"Para obtener más información <a href=\"%s\" target=\"_blank\">vea la " +"documentación en línea</a>" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:71 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:88 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:58 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:74 +msgid "Force CCMP (AES)" +msgstr "Forzar CCMP (AES)" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:72 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:89 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:59 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:75 +msgid "Force TKIP" +msgstr "Forzar TKIP" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:73 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:90 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:60 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:76 +msgid "Force TKIP and CCMP (AES)" +msgstr "Forzar TKIP and CCMP (AES)" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:124 +msgid "" +"How long should travelmate wait for a successful wlan uplink connection." +msgstr "" +"Cuánto tiempo debe esperar travelmate para una conexión de enlace wlan sea " +"exitosa." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:113 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:99 +msgid "Identity" +msgstr "Identidad" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:37 +msgid "Ignore BSSID" +msgstr "Ignorar BSSID" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:9 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:9 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:9 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:9 +msgid "Input file not found, please check your configuration." +msgstr "Archivo de entrada no encontrado, por favor revise su configuración." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +msgid "Interface Timeout" +msgstr "Tiempo de espera de la interfaz" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:29 +msgid "Interface Wizard" +msgstr "Asistente de interfaz" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:131 +msgid "Last Run" +msgstr "Último inicio" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:59 +msgid "Loading" +msgstr "Cargando" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 +msgid "" +"Minimum signal quality threshold as percent for conditional uplink (dis-) " +"connections." +msgstr "" +"Umbral de calidad de señal mínimo como porcentaje para conexiones (dis-) de " +"enlace condicional." + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:132 +msgid "Move down" +msgstr "Mover abajo" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 +msgid "Move up" +msgstr "Mover arriba" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:74 +msgid "Name of the used uplink interface." +msgstr "Nombre de la interfaz de enlace utilizada." + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:25 +msgid "Open" +msgstr "Abrir" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:95 +msgid "" +"Options for further tweaking in case the defaults are not suitable for you." +msgstr "" +"Opciones para ajustes adicionales en caso de que los valores predeterminados " +"no sean adecuados para usted." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +msgid "Overall Timeout" +msgstr "Tiempo de espera total" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 +msgid "Overall retry timeout in seconds." +msgstr "Tiempo de espera de reintento global en segundos." + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:18 +msgid "Overview" +msgstr "Visión general" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:47 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:63 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:102 +msgid "Passphrase" +msgstr "Contraseña" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:115 +msgid "Password" +msgstr "Contraseña" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:130 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:119 +msgid "Password of Private Key" +msgstr "Contraseña o clave privada" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:119 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:105 +msgid "Path to CA-Certificate" +msgstr "Ruta al certificado CA" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:109 +msgid "Path to Client-Certificate" +msgstr "Ruta al certificado del cliente" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:126 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:114 +msgid "Path to Private Key" +msgstr "Ruta a la clave privada" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:68 +msgid "ProActive Uplink Switch" +msgstr "Interruptor de enlace proactivo" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:69 +msgid "" +"Proactively scan and switch to a higher prioritized uplink, despite of an " +"already existing connection." +msgstr "" +"Escanee de forma proactiva y cambie a un enlace de mayor prioridad, a pesar " +"de una conexión ya existente." + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 +msgid "" +"Provides an overview of all configured uplinks for the travelmate interface " +"(%s). You can edit, delete or re-order existing uplinks or scan for a new " +"one. The currently used uplink is emphasized in blue, faulty stations in red." +msgstr "" +"Proporciona una descripción general de todos los enlaces configurados para " +"la interfaz de travelmate (%s). Puede editar, eliminar o reordenar los " +"enlaces existentes o escanear uno nuevo. El enlace utilizado actualmente se " +"enfatiza en azul, las estaciones defectuosas en rojo." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +msgid "Radio Selection / Order" +msgstr "Selección de Radio / Orden" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:94 +msgid "Repeat scan" +msgstr "Repetir escaneo" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 +msgid "Restart" +msgstr "Reiniciar" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:138 +msgid "Restart Travelmate" +msgstr "Reiniciar Travelmate" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:102 +msgid "" +"Restrict travelmate to a single radio (e.g. 'radio1') or change the overall " +"scanning order (e.g. 'radio1 radio2 radio0')." +msgstr "" +"Restringir Travelmate a una sola radio (por ejemplo, 'radio1') o cambie el " +"orden de exploración general (por ejemplo, 'radio1 radio2 radio0')." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 +msgid "Retry limit to connect to an uplink." +msgstr "Vuelva a intentar el límite para conectarse a un enlace ." + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:99 +msgid "Runtime Information" +msgstr "Información de tiempo de ejecución" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:32 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:23 +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:110 +msgid "SSID" +msgstr "SSID" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:30 +msgid "SSID (hidden)" +msgstr "SSID (oculto)" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:15 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:15 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:15 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:17 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:12 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_edit.lua:9 +msgid "Save" +msgstr "Guardar" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 +msgid "Scan" +msgstr "Escanear" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 +msgid "Show/Hide QR-Codes" +msgstr "Mostrar/Ocultar códigos QR" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +msgid "Signal Quality Threshold" +msgstr "Umbral de calidad de señal" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:50 +msgid "Signal strength" +msgstr "Intensidad de señal" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:113 +msgid "Station ID (RADIO/SSID/BSSID)" +msgstr "ID de estación (RADIO/SSID/BSSID)" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:119 +msgid "Station Interface" +msgstr "Interfaz de estación" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:45 +msgid "" +"The BSSID information '%s' is optional and only required for hidden networks" +msgstr "" +"La información BSSID '%s' es opcional y solo se requiere para redes ocultas" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/logread.htm:31 +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" +"La salida de syslog, prefiltrada solo para mensajes relacionados con " +"travelmate." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_firewall_tab.lua:19 +msgid "" +"This form allows you to modify the content of the main firewall " +"configuration file (/etc/config/firewall)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración del firewall principal (/etc/config/firewall)." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_network_tab.lua:19 +msgid "" +"This form allows you to modify the content of the main network configuration " +"file (/etc/config/network)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración de la red principal (/etc/config/network)." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/configuration_tab.lua:21 +msgid "" +"This form allows you to modify the content of the main travelmate " +"configuration file (/etc/config/travelmate)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración principal de travelmate (/etc/config/travelmate)." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/cfg_wireless_tab.lua:19 +msgid "" +"This form allows you to modify the content of the main wireless " +"configuration file (/etc/config/wireless)." +msgstr "" +"Este formulario le permite modificar el contenido del archivo de " +"configuración inalámbrica principal (/etc/config/wireless)." + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:33 +msgid "This step has only to be done once." +msgstr "Este paso solo debe hacerse una vez." + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:17 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:13 +msgid "Travelmate" +msgstr "Travelmate" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:101 +msgid "Travelmate Status (Quality)" +msgstr "Estado de Travelmate (Calidad)" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:107 +msgid "Travelmate Version" +msgstr "Versión de Travelmate" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +msgid "Trigger Delay" +msgstr "Retraso de disparo" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:21 +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:23 +msgid "Unknown" +msgstr "Desconocido" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:131 +msgid "Up" +msgstr "Arriba" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:73 +msgid "Uplink / Trigger interface" +msgstr "Interfaz de enlace / disparador" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:48 +msgid "Uplink BSSID" +msgstr "BSSID de enlace" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:47 +msgid "Uplink SSID" +msgstr "SSID de enlace" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:145 +msgid "View AP QR-Codes" +msgstr "Ver códigos QR del AP" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:20 +msgid "View Logfile" +msgstr "Ver archivo de registro" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:19 +msgid "WEP" +msgstr "WEP" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:58 +msgid "WEP-Passphrase" +msgstr "Frase de contraseña WEP" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:11 +msgid "WPA" +msgstr "WPA" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:76 +msgid "WPA-Passphrase" +msgstr "Frase de contraseña WPA" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:11 +msgid "WPA/WPA2" +msgstr "WPA/WPA2" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:11 +msgid "WPA2" +msgstr "WPA2" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:43 +msgid "Wireless Scan" +msgstr "Escanear red WiFi" + +#: applications/luci-app-travelmate/luasrc/controller/travelmate.lua:19 +msgid "Wireless Stations" +msgstr "Estaciones WiFi" + +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:32 +msgid "add it to the wan zone of the firewall." +msgstr "añadir a la zona wan del firewall" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:56 +msgid "hidden" +msgstr "oculto" + +#: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 +msgid "with SSID" +msgstr "con SSID" diff --git a/applications/luci-app-unbound/po/es/unbound.po b/applications/luci-app-unbound/po/es/unbound.po new file mode 100644 index 0000000000..5ae545b609 --- /dev/null +++ b/applications/luci-app-unbound/po/es/unbound.po @@ -0,0 +1,775 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(root)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:201 +msgid ", and <var>%s</var> entries" +msgstr "y <var>%s</var> entradas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try <var>%s</var>" +msgstr ", y prueba <var>%s</var>" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:78 +msgid "AXFR" +msgstr "AXFR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:59 +msgid "Accept queries only from local subnets" +msgstr "Aceptar consultas solo de subredes locales" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:214 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" +"La lista de dominios de Adblock es demasiado grande para mostrarla en LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:38 +msgid "Advanced" +msgstr "Avanzado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:237 +msgid "Aggressive" +msgstr "Agresivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "Permitir recursión abierta cuando el registro no está en la zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "Autoritativo (archivo de zona)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:33 +msgid "Basic" +msgstr "Básico" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Break down query components for limited added privacy" +msgstr "" +"Desglose los componentes de consulta para una privacidad adicional limitada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:69 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "Rompa el ciclo donde DNSSEC necesita NTP y NTP necesita DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:75 +msgid "Choose Unbounds listening port" +msgstr "Escoge el puerto de escucha Unbounds" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Chose the IP versions used upstream and downstream" +msgstr "" +"Elija las versiones de IP utilizadas en sentido ascendente y descendente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:56 +msgid "Connect to servers using TLS" +msgstr "Conectarse a los servidores utilizando TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:39 +msgid "DHCP" +msgstr "DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:131 +msgid "DHCP Link" +msgstr "Enlace DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 a SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "Caché DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:55 +msgid "DNS over TLS" +msgstr "DNS sobre TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "DNS64 Prefix" +msgstr "Prefijo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:68 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP Fix" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:214 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:225 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:235 +msgid "Default" +msgstr "Predeterminado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:156 +msgid "Denied (nxdomain)" +msgstr "Denegado (nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "Zona dirigida" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:77 +msgid "Directory only part of URL" +msgstr "Directorio solo parte de la URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "Domain Insecure" +msgstr "Dominio inseguro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:72 +msgid "Domain name to verify TLS certificate" +msgstr "Nombre de dominio para verificar el certificado TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:146 +msgid "Domain suffix for this router and DHCP clients" +msgstr "Sufijo de dominio para este enrutador y clientes DHCP" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "EDNS Size" +msgstr "Tamaño EDNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:14 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:14 +msgid "Edit '" +msgstr "Editar '" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:14 +msgid "Edit 'server:' clause options for 'include:" +msgstr "Edite 'servidor:' opciones de la cláusula para 'injcluir:" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:23 +msgid "" +"Edit a forward, stub, or zone-file-cache zone for Unbound to use instead of " +"recursion." +msgstr "" +"Edite una zona de reenvío, código auxiliar o zona de caché de archivos para " +"que se pueda usar Unbound en lugar de recursión." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:14 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "Edite las cláusulas como 'forward-zone:' para 'incluir:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "Edite: Extendido" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "Edit" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "Edite: UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "Edite: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "Habilitar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:93 +msgid "Enable DNS64" +msgstr "Habilitar DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:63 +msgid "Enable DNSSEC" +msgstr "Habilitar DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:45 +msgid "Enable Unbound" +msgstr "Habilitar Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:203 +msgid "Enable access for unbound-control" +msgstr "Habilitar el acceso para el control ilimitado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Enable the DNS64 module" +msgstr "Habilitar el módulo DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:64 +msgid "Enable the DNSSEC validator module" +msgstr "Habilitar el módulo validador DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Enable the initialization scripts for Unbound" +msgstr "Habilitar los scripts de inicialización para Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "Habilitar esta zona dirigida" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "Habilitado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "Extended Statistics" +msgstr "Estadisticas extendidas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Extended statistics are printed from unbound-control" +msgstr "Las estadísticas extendidas se imprimen desde el control independiente" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Extra DNS" +msgstr "DNS extra" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "Retroceder" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "Retroceder" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "Archivos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Filter Entire Subnet" +msgstr "Filtrar toda la subred" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:81 +msgid "Filter Localhost Rebind" +msgstr "Filtrar Localhost Rebind" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Private Address" +msgstr "Filtrar dirección privada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:86 +msgid "Filter Private Rebind" +msgstr "Filtrar encuadernado privado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "Reenviar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "Reenviar (simple transferencia)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "Reenviar TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Forward to upstream nameservers (ISP)" +msgstr "Reenviar a servidores de nombres ascendentes (ISP)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:170 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:182 +msgid "Host FQDN, All Addresses" +msgstr "FQDN de host, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:192 +msgid "Host Records" +msgstr "Registros de host" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:193 +msgid "Host/MX/SRV RR" +msgstr "Host/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Host/MX/SRV/CNAME RR" +msgstr "Host/MX/SRV/CNAME RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:169 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:181 +msgid "Hostname, All Addresses" +msgstr "Nombre de host, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:168 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:180 +msgid "Hostname, Primary Address" +msgstr "Nombre de host, dirección principal" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "How to enter the LAN or local network router in DNS" +msgstr "Cómo ingresar al enrutador de red local o LAN en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "How to treat queries of this local domain" +msgstr "Como tratar las consultas de este dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:216 +msgid "IP4 All and IP6 Local" +msgstr "IP4 Todos y IP6 Local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "IP4 Only" +msgstr "Sólo IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "IP4 and IP6" +msgstr "IP4 y IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:217 +msgid "IP6 Only*" +msgstr "Sólo IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "IP6 Preferred" +msgstr "IP6 preferido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:191 +msgid "Ignore" +msgstr "Ignorar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:171 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:183 +msgid "Interface FQDN, All Addresses" +msgstr "Interfaz FQDN, todas las direcciones" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "LAN DNS" +msgstr "DNS de LAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Large" +msgstr "Grande" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:112 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:273 +msgid "Limit days between RFC5011 copies to reduce flash writes" +msgstr "" +"Limite los días entre copias RFC5011 para reducir las grabaciones flash" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Limit extended DNS packet size" +msgstr "Limitar el tamaño del paquete DNS extendido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:132 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "Enlace a programas compatibles para cargar DHCP en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "List domains to bypass checks of DNSSEC" +msgstr "Lista de dominios para eludir las comprobaciones de DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:74 +msgid "Listening Port" +msgstr "Puerto de escucha" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "Datos locales" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:145 +msgid "Local Domain" +msgstr "Dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain Type" +msgstr "Tipo de dominio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:207 +msgid "Local Host, Encrypted" +msgstr "Host local, encriptado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:206 +msgid "Local Host, No Encryption" +msgstr "Host local, sin cifrado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Local Service" +msgstr "Servicio local" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Local Subnet, Encrypted" +msgstr "Subred local, encriptada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Local Subnet, Static Encryption" +msgstr "Subred local, cifrado estático" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "Zonas locales" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "Registro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:49 +msgid "Manual Conf" +msgstr "Conf. Manual" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:228 +msgid "Medium" +msgstr "Medio" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "Memory Resource" +msgstr "Recurso de memoria" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:122 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:283 +msgid "Networks that may trigger Unbound to reload (avoid wan6)" +msgstr "Redes que pueden activar Unbound para recargar (evitar wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:167 +msgid "No Entry" +msgstr "Sin entrada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:88 +msgid "No Filter" +msgstr "Sin filtro" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:133 +msgid "No Link" +msgstr "Sin enlace" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:205 +msgid "No Remote Control" +msgstr "Sin control remoto" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:45 +msgid "" +"Note: SSL/TLS library is missing an API. Please review syslog. >> logread ..." +msgstr "" +"Nota: a la biblioteca SSL/TLS le falta una API. Por favor revise syslog. >> " +"logread ..." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:16 +msgid "" +"Organize directed forward, stub, and authoritative zones <a href=\"%s\" " +"target=\"_blank\">(help)</a>." +msgstr "" +"Organice los reenvios dirigidos, colilla , y zonas autoritarias <a href=\"%s" +"\" target=\"_blank\">(ayuda)</a>." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +msgid "Override the WAN side router entry in DNS" +msgstr "Anular la entrada del enrutador del lado WAN en DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:236 +msgid "Passive" +msgstr "Pasivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:60 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:66 +msgid "Port servers will receive queries on" +msgstr "Los servidores de puertos recibirán consultas en" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:99 +msgid "Prefix for generated DNS64 addresses" +msgstr "Prefijo para direcciones DNS64 generadas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Prevent excessively short cache periods" +msgstr "Prevenir períodos de caché excesivamente cortos" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "Proteger contra la respuesta ascendente de 127.0.0.0/8" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:87 +msgid "Protect against upstream responses within local subnets" +msgstr "Proteger contra respuestas ascendentes dentro de subredes locales" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Query Minimize" +msgstr "Consulta minimizada" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "Recuento" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Recursion Protocol" +msgstr "Protocolo de recursion" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Recursion Strength" +msgstr "Fuerza de recursión" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "" +"La actividad de recursión afecta el crecimiento de la memoria y la carga de " +"la CPU" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:22 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:22 +msgid "Recursive DNS" +msgstr "DNS recursivo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:157 +msgid "Refused" +msgstr "Rechazado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:40 +msgid "Resource" +msgstr "Recurso" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:111 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:272 +msgid "Root DSKEY Age" +msgstr "Root DSKEY Age" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/manual.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:11 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/uciedit.lua:11 +msgid "Save" +msgstr "Guardar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Server Port" +msgstr "Puerto del servidor" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 +msgid "Server TLS Port" +msgstr "Puerto del servidor TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:47 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:33 +msgid "Servers" +msgstr "Servidores" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "Servidores para esta zona; ver README.md para la forma opcional" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "Mostrar: Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "Mostrar: DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "Mostrar: Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:50 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "Omita UCI y use /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:227 +msgid "Small" +msgstr "Pequeño" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:158 +msgid "Static (local only)" +msgstr "Estático (solo local)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "Estadísitcas" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "Estado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Strict Minimize" +msgstr "Estricto minimizar" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:249 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "Versión estricta de 'consulta minimizada' pero puede romper DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "Talón (recursión forzada)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:71 +msgid "TLS Name Index" +msgstr "Índice de nombres TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "TTL Minimum" +msgstr "TTL mínimo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:103 +msgid "This could display more statistics with the unbound-control package." +msgstr "" +"Esto podría mostrar más estadísticas con el paquete de control ilimitado." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:186 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:197 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:222 +msgid "This shows '" +msgstr "Esta muestra '" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:173 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" +"Esto muestra 'ubound-control dump_cache' para auditar registros que incluyen " +"DNSSEC." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "" +"Esto muestra las entradas de Unbound 'local-data:' de forma predeterminada, ." +"conf o control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:149 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "" +"Esto muestra las entradas de Unbound 'local-zone:' de los valores " +"predeterminados, .conf o control." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:125 +msgid "This shows Unbound self reported performance statistics." +msgstr "" +"Esto muestra las estadísticas de rendimiento autoinformadas de Unbound." + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:113 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "Esto muestra syslog filtrado para eventos relacionados con Unbound." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:226 +msgid "Tiny" +msgstr "Minúsculo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Transparent (local/global)" +msgstr "Transparente (local/global)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:121 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:282 +msgid "Trigger Networks" +msgstr "Redes de disparo" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "Tipo" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:26 +msgid "Unbound" +msgstr "Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:23 +msgid "" +"Unbound <a href=\"%s\" target=\"_blank\">(NLnet Labs)</a> is a validating, " +"recursive, and caching DNS resolver <a href=\"%s\" target=\"_blank\">(help)</" +"a>." +msgstr "" +"Unbound <a href=\"%s\" target=\"_blank\">(NLnet Labs)</a> es un sistema de " +"resolución de DNS de validación, recursivo y almacenamiento en caché <a href=" +"\"%s\" target=\"_blank\">(ayuda)</a>." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:202 +msgid "Unbound Control App" +msgstr "Aplicación de control de Unbound" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:166 +msgid "Unbound cache is too large to display in LuCI." +msgstr "Caché de Unbound es demasiado grande para mostrarla en LuCI." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "Indefinido" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "Use 'resolv.conf.auto'" +msgstr "Utilice 'resolv.conf.auto'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:140 +msgid "Use DHCPv4 MAC to discover IP6 hosts SLAAC (EUI64)" +msgstr "Utilice DHCPv4 MAC para descubrir hosts IPA SLAAC (EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:179 +msgid "Use Upstream" +msgstr "Usar Upstream" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "Use entradas DNS extra que se encuentran en /etc/config/dhcp" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "" +"Usa el menú Sistema/Procesos para observar cualquier crecimiento de memoria." + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +msgid "WAN DNS" +msgstr "DNS WAN" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "Nombres de zona (dominio) incluidos en esta combinación de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:76 +msgid "Zone Download URL" +msgstr "URL de descarga de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "Nombres de zona" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "Tipo de zona" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "Zonas" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "aceptar resultados anteriores para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:115 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:276 +msgid "default" +msgstr "predeterminado" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from <var>%s</var>" +msgstr "descargar desde <var>%s</var>" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:118 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:279 +msgid "never" +msgstr "nunca" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "archivos de zona de búsqueda previa para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "seleccione recursion para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "acción desconocida para" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:205 +msgid "use <var>%s</var> nameservers" +msgstr "usar los nombres de servidores <var>%s</var>" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "usar servidores de nombres" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:164 +msgid "with default certificate for <var>%s</var>" +msgstr "con certificado predeterminado para <var>%s</var>" diff --git a/applications/luci-app-upnp/po/es/upnp.po b/applications/luci-app-upnp/po/es/upnp.po index 08c108320a..1ca7912880 100644 --- a/applications/luci-app-upnp/po/es/upnp.po +++ b/applications/luci-app-upnp/po/es/upnp.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:41+0200\n" -"PO-Revision-Date: 2019-02-26 13:36-0300\n" +"PO-Revision-Date: 2019-03-05 20:52-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language: es\n" "MIME-Version: 1.0\n" @@ -19,7 +19,7 @@ msgid "" "addresses and ports" msgstr "" "Los ACL especifican qué puertos externos pueden ser redirigidos hacia qué " -"direcciones y puertos internas" +"direcciones y puertos internos" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:102 msgid "Action" @@ -75,7 +75,7 @@ msgstr "Comentario" #: applications/luci-app-upnp/luasrc/view/upnp_status.htm:29 msgid "Delete" -msgstr "Borrar" +msgstr "Eliminar" #: applications/luci-app-upnp/luasrc/view/upnp_status.htm:47 msgid "Description" @@ -87,7 +87,7 @@ msgstr "UUID del dispositivo" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:44 msgid "Downlink" -msgstr "Enlace para bajada" +msgstr "Velocidad de bajada" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:38 msgid "Enable IGDv1 mode" @@ -159,7 +159,7 @@ msgstr "Protocolo" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:42 msgid "Puts extra debugging information into the system log" -msgstr "Escribir información de depuración extra en el registro del sistema" +msgstr "Escribe información de depuración extra en el registro del sistema" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:55 msgid "Report system instead of daemon uptime" @@ -187,7 +187,7 @@ msgstr "" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:76 msgid "UPnP lease file" -msgstr "Tiempo de cesión UPnP" +msgstr "Tiempo de conexión UPnP" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:5 msgid "Universal Plug & Play" @@ -199,7 +199,7 @@ msgstr "Desconocido" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:47 msgid "Uplink" -msgstr "Enlace de subida" +msgstr "Velocidad de subida" #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:45 #: applications/luci-app-upnp/luasrc/model/cbi/upnp/upnp.lua:48 diff --git a/applications/luci-app-vnstat/po/es/vnstat.po b/applications/luci-app-vnstat/po/es/vnstat.po index 70a5b3e378..1530e575bc 100644 --- a/applications/luci-app-vnstat/po/es/vnstat.po +++ b/applications/luci-app-vnstat/po/es/vnstat.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2012-10-07 15:08+0200\n" +"Project-Id-Version: \n" +"PO-Revision-Date: 2019-04-01 23:59-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language-Team: German\n" "Language: es\n" @@ -9,7 +9,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"POT-Creation-Date: \n" #: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:6 #: applications/luci-app-vnstat/luasrc/controller/vnstat.lua:10 @@ -31,7 +32,7 @@ msgstr "Tráfico por horas" #: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:49 msgid "Monitor selected interfaces" -msgstr "Monitorizar las interfaces seleccionadas" +msgstr "Monitorear las interfaces seleccionadas" #: applications/luci-app-vnstat/luasrc/view/vnstat.htm:69 msgid "Monthly traffic" @@ -47,11 +48,11 @@ msgstr "" #: applications/luci-app-vnstat/luasrc/model/cbi/vnstat.lua:22 msgid "Restart VnStat" -msgstr "Rearrancar VnStat" +msgstr "Reiniciar VnStat" #: applications/luci-app-vnstat/luasrc/view/vnstat.htm:65 msgid "Summary display" -msgstr "Mostrar Resumen" +msgstr "Mostrar resumen" #: applications/luci-app-vnstat/luasrc/view/vnstat.htm:66 msgid "Top 10 display" diff --git a/applications/luci-app-vpnbypass/po/es/vpnbypass.po b/applications/luci-app-vpnbypass/po/es/vpnbypass.po new file mode 100644 index 0000000000..1cc42ee31f --- /dev/null +++ b/applications/luci-app-vpnbypass/po/es/vpnbypass.po @@ -0,0 +1,83 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:48 +msgid "Domains to Bypass" +msgstr "Dominios a omitir" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:49 +msgid "Domains to be accessed directly (outside of the VPN tunnel), see" +msgstr "" +"Dominios a los que se puede acceder directamente (fuera del túnel VPN), " +"consulte" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:31 +msgid "Local IP Addresses to Bypass" +msgstr "Direcciones IP locales para omitir" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:31 +msgid "" +"Local IP addresses or subnets with direct internet access (outside of the " +"VPN tunnel)" +msgstr "" +"Direcciones IP o subredes locales con acceso directo a Internet (fuera del " +"túnel VPN)" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:17 +msgid "Local Ports to Bypass" +msgstr "Puertos locales para evitar" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:17 +msgid "Local ports to trigger VPN Bypass" +msgstr "Puertos locales para activar VPN Bypass" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:51 +msgid "README" +msgstr "LÉEME" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 +msgid "Remote IP Addresses to Bypass" +msgstr "Direcciones IP remotas para omitir" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:38 +msgid "" +"Remote IP addresses or subnets which will be accessed directly (outside of " +"the VPN tunnel)" +msgstr "" +"Direcciones IP remotas o subredes a las que se accederá directamente " +"(fuera del túnel VPN)" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 +msgid "Remote Ports to Bypass" +msgstr "Puertos remotos para omitir" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:24 +msgid "Remote ports to trigger VPN Bypass" +msgstr "Puertos remotos para activar VPN Bypass" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:7 +msgid "Start VPNBypass service" +msgstr "Iniciar el servicio VPNBypass" + +#: applications/luci-app-vpnbypass/luasrc/controller/vpnbypass.lua:6 +msgid "VPN Bypass" +msgstr "VPN Bypass" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:3 +msgid "VPN Bypass Settings" +msgstr "Configuración de VPN Bypass" + +#: applications/luci-app-vpnbypass/luasrc/model/cbi/vpnbypass.lua:51 +msgid "for syntax" +msgstr "para la sintaxis" diff --git a/applications/luci-app-watchcat/po/es/watchcat.po b/applications/luci-app-watchcat/po/es/watchcat.po index 16c2937d51..47bf435e1e 100644 --- a/applications/luci-app-watchcat/po/es/watchcat.po +++ b/applications/luci-app-watchcat/po/es/watchcat.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2012-08-23 23:07+0200\n" +"Project-Id-Version: \n" +"PO-Revision-Date: 2019-02-27 14:49-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language-Team: none\n" "Language: es\n" @@ -9,7 +9,8 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" -"X-Generator: Pootle 2.0.6\n" +"X-Generator: Poedit 2.2.1\n" +"POT-Creation-Date: \n" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:21 msgid "Forced reboot delay" @@ -17,7 +18,7 @@ msgstr "Espera para forzar reinicio" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:40 msgid "Host address to ping" -msgstr "Dirección de máquina a la que hacer ping" +msgstr "Dirección de host para hacer ping" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:47 msgid "" @@ -34,10 +35,10 @@ msgid "" "engaged.Default unit is seconds, you can use the suffix 'm' for minutes, 'h' " "for hours or 'd' for days" msgstr "" -"En modo periódico define el período de rearranque. En modo internet define " -"el mayor período de tiempo sin acceso a internet antes de provocar un " -"reinicio. Por defecto son segundos, pero puede añadir 'm' para minutos, 'h' " -"para horas o 'd' para días" +"En modo periódico, define el período de reinicio. En el modo de Internet, " +"define el período de tiempo más largo sin acceso a Internet antes de iniciar " +"el reinicio. La unidad predeterminada es de segundos, puede usar el sufijo " +"'m' para los minutos, 'h' para las horas o 'd' para los días" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:15 msgid "Operating mode" @@ -49,7 +50,7 @@ msgstr "Período" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:39 msgid "Ping host" -msgstr "Máquina a la que hacer ping" +msgstr "Host al que hacer ping" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:46 msgid "Ping period" @@ -61,20 +62,20 @@ msgid "Watchcat" msgstr "Watchcat" #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:6 -#, fuzzy msgid "" "Watchcat allows configuring a periodic reboot when the Internet connection " "has been lost for a certain period of time." msgstr "" -"Watchcat permite configurar un reinicio periódico si la conexión a internet " -"si pierde durante un cierto tiempo." +"Watchcat permite configurar un reinicio periódico cuando la conexión a " +"Internet se ha perdido durante un cierto período de tiempo." #: applications/luci-app-watchcat/luasrc/model/cbi/watchcat/watchcat.lua:22 -#, fuzzy msgid "" "When rebooting the system, the watchcat will trigger a soft reboot. Entering " "a non zero value here will trigger a delayed hard reboot if the soft reboot " "fails. Enter a number of seconds to enable, use 0 to disable" msgstr "" -"Watchcat provocará por defecto un reinicio suave. Poniendo un valor mayor " -"que cero se provocará un reinicio completo si el anterior ha fallado" +"Al reiniciar el sistema, el watchcat activará un reinicio suave. Si ingresa " +"un valor que no sea cero aquí, se iniciará un reinicio con retraso si el " +"reinicio por software falla. Ingrese un número de segundos para habilitar, " +"use 0 para deshabilitar" diff --git a/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua b/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua index 61a94ca5dc..1644514166 100644 --- a/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua +++ b/applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua @@ -37,7 +37,9 @@ end -- BEGIN Map m = Map("wifi_schedule", translate("Wifi Schedule"), translate("Defines a schedule when to turn on and off wifi.")) -function m.on_commit(self) +m.apply_on_parse = true + +function m.on_apply(self) sys.exec("/usr/bin/wifi_schedule.sh cron") end -- END Map diff --git a/applications/luci-app-wifischedule/po/es/wifischedule.po b/applications/luci-app-wifischedule/po/es/wifischedule.po index 7a15d18fb3..af58bf8a36 100644 --- a/applications/luci-app-wifischedule/po/es/wifischedule.po +++ b/applications/luci-app-wifischedule/po/es/wifischedule.po @@ -14,7 +14,7 @@ msgstr "" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:79 msgid "Activate wifi" -msgstr "Activar WiFi" +msgstr "Habilitar WiFi" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:63 msgid "Could not find required /usr/bin/wifi_schedule.sh or /sbin/wifi" @@ -42,7 +42,7 @@ msgstr "Determinar módulos automáticamente" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:86 msgid "Disable wifi gracefully" -msgstr "Desactivar WiFi con gracia" +msgstr "Deshabilitar WiFi con gracia" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:93 msgid "Disabled wifi forced" @@ -62,7 +62,7 @@ msgstr "Habilitar el registro" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:233 msgid "Force disabling wifi even if stations associated" -msgstr "Forzar la desactivación de WiFi incluso con estaciones asociadas" +msgstr "Forzar deshabilitación de WiFi incluso con clientes conectados" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:159 msgid "Friday" @@ -70,7 +70,7 @@ msgstr "Viernes" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:46 msgid "Global Settings" -msgstr "Ajustes globales" +msgstr "Configuración global" #: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:155 msgid "Monday" diff --git a/applications/luci-app-wireguard/po/es/wireguard.po b/applications/luci-app-wireguard/po/es/wireguard.po new file mode 100644 index 0000000000..3179d39ba5 --- /dev/null +++ b/applications/luci-app-wireguard/po/es/wireguard.po @@ -0,0 +1,99 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: \n" +"Language-Team: \n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Poedit 2.2.1\n" +"Last-Translator: \n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"Language: es\n" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:157 +msgid "Allowed IPs" +msgstr "IPs permitidas" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:222 +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:256 +msgid "Collecting data..." +msgstr "Recolectando datos..." + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:217 +msgid "Configuration" +msgstr "Configuración" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:178 +msgid "Data Received" +msgstr "Datos recibidos" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:179 +msgid "Data Transmitted" +msgstr "Datos transmitidos" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:152 +msgid "Endpoint" +msgstr "Punto final" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:139 +msgid "Firewall Mark" +msgstr "Marca de Firewall" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:197 +msgid "Interface" +msgstr "Interfaz" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:124 +msgid "Interface does not have a public key!" +msgstr "¡La interfaz no tiene una clave pública!" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:174 +msgid "Latest Handshake" +msgstr "Último Handshake" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:133 +msgid "Listen Port" +msgstr "Escuchar puerto" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:89 +msgid "Never" +msgstr "Nunca" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:248 +msgid "Peer" +msgstr "Par" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:164 +msgid "Persistent Keepalive" +msgstr "Mantener conectado continuamente" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:127 +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:147 +msgid "Public Key" +msgstr "Clave pública" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:199 +msgid "Show/Hide QR-Code" +msgstr "Mostrar/Ocultar código QR" + +#: applications/luci-app-wireguard/luasrc/controller/wireguard.lua:7 +msgid "WireGuard Status" +msgstr "WireGuard" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:99 +msgid "h ago" +msgstr "hace h" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:97 +msgid "m ago" +msgstr "hace m" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:101 +msgid "over a day ago" +msgstr "hace más de un día" + +#: applications/luci-app-wireguard/luasrc/view/wireguard.htm:95 +msgid "s ago" +msgstr "hace s" diff --git a/applications/luci-app-wol/po/es/wol.po b/applications/luci-app-wol/po/es/wol.po index f43184efce..ae83aaa41b 100644 --- a/applications/luci-app-wol/po/es/wol.po +++ b/applications/luci-app-wol/po/es/wol.po @@ -5,7 +5,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-19 00:29+0200\n" -"PO-Revision-Date: 2019-02-26 13:49-0300\n" +"PO-Revision-Date: 2019-03-01 17:00-0300\n" "Last-Translator: José Vicente <josevteg@gmail.com>\n" "Language-Team: none\n" "Language: es\n" @@ -21,11 +21,11 @@ msgstr "Difusión en todas las interfaces" #: applications/luci-app-wol/luasrc/model/cbi/wol.lua:47 msgid "Choose the host to wake up or enter a custom MAC address to use" -msgstr "Elija la máquina a despertar o introduzca su dirección MAC" +msgstr "Elija el host a despertar o introduzca su dirección MAC" #: applications/luci-app-wol/luasrc/model/cbi/wol.lua:46 msgid "Host to wake up" -msgstr "Máquina a despertar" +msgstr "Host a despertar" #: applications/luci-app-wol/luasrc/model/cbi/wol.lua:31 msgid "Network interface to use" |