diff options
Diffstat (limited to 'applications')
186 files changed, 15595 insertions, 8856 deletions
diff --git a/applications/luci-app-adblock/luasrc/controller/adblock.lua b/applications/luci-app-adblock/luasrc/controller/adblock.lua index e5061bc9d9..4641ac93bb 100644 --- a/applications/luci-app-adblock/luasrc/controller/adblock.lua +++ b/applications/luci-app-adblock/luasrc/controller/adblock.lua @@ -1,4 +1,4 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) +-- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 module("luci.controller.adblock", package.seeall) @@ -31,7 +31,20 @@ function index() entry({"admin", "services", "adblock", "action"}, call("adb_action"), nil).leaf = true end -function adb_action(name, domain) +function adb_action(name, ...) + local domain = select(1, ...) or "" + local search = select(2, ...) or "+" + local count = select(3, ...) or "50" + local filter = select(4, ...) or "false" + local print = select(5, ...) or "false" + + local report_params = { + search, + count, + filter, + print + } + if name == "do_suspend" then luci.sys.call("/etc/init.d/adblock suspend >/dev/null 2>&1") elseif name == "do_resume" then @@ -45,11 +58,17 @@ function adb_action(name, domain) until nixio.fs.readfile(pid_file) == "" end elseif name == "do_report" then - luci.sys.call("/etc/init.d/adblock report false >/dev/null 2>&1") + luci.sys.call("/etc/init.d/adblock report " ..table.concat(report_params, " ").. " >/dev/null 2>&1") local rep_dir = uci:get("adblock", "extra", "adb_repdir") or "/tmp" repeat nixio.nanosleep(1) until not nixio.fs.access(rep_dir.. "/adb_report.raw") + elseif name == "do_filter" then + luci.sys.call("/etc/init.d/adblock report " ..table.concat(report_params, " ").. " >/dev/null 2>&1") + local rep_dir = uci:get("adblock", "extra", "adb_repdir") or "/tmp" + repeat + nixio.nanosleep(1) + until nixio.fs.access(rep_dir.. "/adb_report.final") elseif name == "add_blacklist" then local file = uci:get("adblock", "blacklist", "adb_src") or "/etc/adblock/adblock.blacklist" if nixio.fs.access(file) then @@ -110,7 +129,7 @@ function report_text() local content rep_dir = uci:get("adblock", "extra", "adb_repdir") or "/tmp" - rep_file = rep_dir.. "/adb_report" + rep_file = rep_dir.. "/adb_report.final" http.prepare_content("text/plain") if nixio.fs.access(rep_file) then diff --git a/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua b/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua index edf5df7ec9..3a37b45dfb 100644 --- a/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua +++ b/applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua @@ -1,4 +1,4 @@ --- Copyright 2017-2018 Dirk Brenken (dev@brenken.org) +-- Copyright 2017-2019 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 local fs = require("nixio.fs") @@ -222,9 +222,4 @@ e29.datatype = "range(1,10)" e29.default = 1 e29.optional = true -e30 = e:option(Flag, "adb_forcesrt", translate("Force Overall Sort"), - translate("Enable memory intense overall sort / duplicate removal on low memory devices (< 64 MB free RAM)")) -e30.optional = true -e30.default = nil - return m diff --git a/applications/luci-app-adblock/luasrc/view/adblock/report.htm b/applications/luci-app-adblock/luasrc/view/adblock/report.htm index 4e3d65ba75..814cc2fb25 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/report.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/report.htm @@ -1,5 +1,5 @@ <%# -Copyright 2017-2018 Dirk Brenken (dev@brenken.org) +Copyright 2017-2019 Dirk Brenken (dev@brenken.org) This is free software, licensed under the Apache License, Version 2.0 -%> @@ -84,10 +84,10 @@ This is free software, licensed under the Apache License, Version 2.0 s += '<div class="th left"><%:Domain%></div>'; s += '<div class="th left"><%:Answer%></div>'; s += '<div class="th left"><%:Action%></div></div>'; - var btn; + var btn1; var record; var title_arr = ["<%:Date%>", "<%:Time%>", "<%:Client%>", "<%:Domain%>", "<%:Answer%>", "<%:Action%>"]; - var array = text.split("\n", 50); + var array = text.split("\n"); for (var i=0;i<array.length;i++) { record = array[i].split("\t"); @@ -99,14 +99,18 @@ This is free software, licensed under the Apache License, Version 2.0 s += '<div class="td left" data-title="' + title_arr[j] + '">' + record[j] + '</div>'; if (record[4] === "NX") { - btn = '<div class="td left" data-title="' + title_arr[5] + '"><input type="button" class="cbi-button cbi-button-edit" name="add_whitelist,' + record[3] + '" value="<%:Whitelist%>" onclick="btn_action(this)" /></div>'; + btn1 = '<div class="td left" data-title="' + title_arr[5] + '"><input type="button" class="cbi-button cbi-button-edit" name="add_whitelist,' + record[3] + '" value="<%:Whitelist%>" onclick="btn_action(this)" /></div>'; + } + else if (record[4] === "OK") + { + btn1 = '<div class="td left" data-title="' + title_arr[5] + '"><input type="button" class="cbi-button cbi-button-remove" name="add_blacklist,' + record[3] + '" value="<%:Blacklist%>" onclick="btn_action(this)" /></div>'; } else { - btn = '<div class="td left" data-title="' + title_arr[5] + '"><input type="button" class="cbi-button cbi-button-remove" name="add_blacklist,' + record[3] + '" value="<%:Blacklist%>" onclick="btn_action(this)" /></div>'; + btn1 = '-' } } - s += btn + '</div>' + s += btn1 + '</div>' } } document.getElementById("value_6").innerHTML = s; @@ -118,27 +122,96 @@ This is free software, licensed under the Apache License, Version 2.0 if (action[0] === "do_report") { - var btn = document.getElementById("btn"); - var btn_running = document.getElementById("btn_running"); + var btn1 = document.getElementById("btn1"); + var btn1_running = document.getElementById("btn1_running"); - btn.disabled = true; - running(btn_running, 1); - action[1] = "-" - } + btn1.disabled = true; + running(btn1_running, 1); + + document.getElementById("filter_search").value = ''; + document.getElementById("filter_count").selectedIndex = 1; - new XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock")%>/action/' + action[0] + "/" + action[1], null, - function(x) + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock")%>/action/' + action[0], null, + function(x) + { + if (!x) + { + return; + } + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "report_json")%>', null, + function(x, json_info) + { + if (!x || !json_info || !json_info.data) + { + running(btn1_running, 0); + btn1.disabled = false; + return; + } + report_json(json_info); + }); + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "report_text")%>', null, + function(x) + { + if (!x || !x.responseText) + { + return; + } + report_text(x.responseText); + running(btn1_running, 0); + btn1.disabled = false; + }); + }); + } + else if (action[0] === "do_filter") { - if (!x) + var btn2 = document.getElementById("btn2"); + var btn2_running = document.getElementById("btn2_running"); + var search = document.getElementById("filter_search").value.replace(/[^\x00-\x7F]|[\s!@#$%^&*()+=\[\]{};'"\\|,<>\/?]/g,'') || "\"+\""; + var count = document.getElementById("filter_count").value; + + btn2.disabled = true; + running(btn2_running, 1); + if (search != "\"+\"") { - return; + document.getElementById("filter_search").value = search; } - if (action[0] === "do_report") + + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock")%>/action/' + action[0] + "/" + "-" + "/" + search + "/" + count + "/" + "true" + "/" + "false", null, + function(x) { - running(btn_running, 0); - btn.disabled = false; - } - }); + if (!x) + { + return; + } + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "report_text")%>', null, + function(x) + { + if (!x || !x.responseText) + { + return; + } + report_text(x.responseText); + running(btn2_running, 0); + btn2.disabled = false; + }); + }); + } + else if (action[0] === "add_blacklist" || action[0] === "add_whitelist") + { + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock")%>/action/' + action[0] + "/" + action[1], null, + function(x) + { + if (!x) + { + return; + } + btn3 = document.getElementsByName(value.name); + for (var i=0; i<btn3.length; i++) + { + btn3[i].disabled = true; + } + }); + } } function running(element, state) @@ -159,20 +232,8 @@ This is free software, licensed under the Apache License, Version 2.0 { if (!x || !json_info || !json_info.data) { - running(btn_running, 0); - btn.disabled = false; - return; - } - report_json(json_info); - }); - - XHR.poll(-1, '<%=luci.dispatcher.build_url("admin", "services", "adblock", "report_json")%>', null, - function(x, json_info) - { - if (!x || !json_info || !json_info.data) - { - running(btn_running, 0); - btn.disabled = false; + running(btn1_running, 0); + btn1.disabled = false; return; } report_json(json_info); @@ -187,16 +248,6 @@ This is free software, licensed under the Apache License, Version 2.0 } report_text(x.responseText); }); - - XHR.poll(-1, '<%=luci.dispatcher.build_url("admin", "services", "adblock", "report_text")%>', null, - function(x) - { - if (!x || !x.responseText) - { - return; - } - report_text(x.responseText); - }); //]]> </script> @@ -227,8 +278,8 @@ This is free software, licensed under the Apache License, Version 2.0 </div> <br /> <div id="button"> - <input type="button" class="cbi-button cbi-button-action important" id="btn" name="do_report" value="<%:Refresh Report%>" onclick="btn_action(this)" /> - <span id="btn_running" class="btn_running"></span> + <input type="button" class="cbi-button cbi-button-action important" id="btn1" name="do_report" value="<%:Refresh Report%>" onclick="btn_action(this)" /> + <span id="btn1_running" class="btn1_running"></span> </div> </div> <br /> @@ -236,8 +287,23 @@ This is free software, licensed under the Apache License, Version 2.0 <h3><%:Top 10 Reporting%></h3> <div class="table" id="value_5"></div> </div> -<br /> +<hr /> <div class="cbi-section"> + <div class="cbi-section-descr"><%:Filter the DNS Query result set for a particular domain, client or time frame.%></div> + <div style="float:left;"> + <input type="text" placeholder="<%:Domain/Client/Date/Time%>" id="filter_search" name="filter_search" /> + <select name="filter_count" id="filter_count"> + <option value="25">25</option> + <option value="50" selected="selected">50</option> + <option value="100">100</option> + <option value="250">250</option> + <option value="500">500</option> + </select> + <input type="button" class="cbi-button cbi-button-action" id="btn2" name="do_filter" value="<%:Filter%>" onclick="btn_action(this)" /> + <span id="btn2_running" class="btn2_running"></span> + </div> + <br /> + <br /> <h3><%:Latest DNS Queries%></h3> <div class="table" id="value_6"></div> </div> diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index 49d42cf564..455dbb4a3d 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -11,11 +11,11 @@ msgstr "" "X-Generator: Poedit 2.0.3\n" "Language: it\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -27,7 +27,7 @@ msgid "Action" msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -39,7 +39,7 @@ msgstr "Status Adblock" msgid "Adblock Version" msgstr "Versione Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Tempo addizionale in secondi di attesa prima che adblock si avvii." @@ -52,15 +52,15 @@ msgstr "Avanzato" msgid "Answer" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "Directory del Backup" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "" @@ -68,7 +68,7 @@ msgstr "" msgid "Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "" @@ -77,7 +77,7 @@ msgstr "" msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "Fonti lista di Blocco" @@ -85,13 +85,13 @@ msgstr "Fonti lista di Blocco" msgid "Blocklist not found!" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -108,7 +108,7 @@ msgstr "" msgid "Collecting data..." msgstr "Raccogliendo dati..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -124,18 +124,18 @@ msgstr "" msgid "Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "Directory DNS" @@ -148,11 +148,11 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "Descrizione" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -167,7 +167,11 @@ msgstr "" msgid "Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "" @@ -187,82 +191,82 @@ msgstr "Modifica Configurazione" msgid "Edit Whitelist" msgstr "Modifica Lista Bianca" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "Attiva Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "Attiva Backup Lista di Blocco" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" "Abilita il registro dettagliato in caso di qualsiasi errore di processo." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "Abilitato" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "Opzioni Extra" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "Forza DNS Locale" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "Forza Ordinamento Globale" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -278,27 +282,27 @@ msgstr "File di input non trovato, per favore controlla la tua configurazione." msgid "Last Run" msgstr "Ultimo Avvio" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "Caricando" @@ -307,11 +311,11 @@ msgstr "Caricando" msgid "Logfile" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "" @@ -320,11 +324,11 @@ msgstr "" msgid "Name / IP-Address" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "No" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "" @@ -355,11 +359,11 @@ msgid "Please edit this file directly in a terminal session." msgstr "" "Per favore modifica questo file direttamente in una sessione al terminale." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" @@ -371,13 +375,13 @@ msgstr "Interrogazione" msgid "Query domains" msgstr "Interrogazione domini" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -394,36 +398,42 @@ msgstr "" msgid "Refresh Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -434,7 +444,7 @@ msgstr "Riprendi" msgid "Runtime Information" msgstr "Informazione di Runtime" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "Ric. SSL" @@ -444,29 +454,34 @@ msgstr "Ric. SSL" msgid "Save" msgstr "Salva" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "Innesco d'Avvio" @@ -480,19 +495,19 @@ msgstr "Sospendi" msgid "Suspend / Resume Adblock" msgstr "Sospendi / Riprendi Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Directory per la lista di blocco generata 'adb_list.overall'." @@ -506,7 +521,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "" @@ -541,7 +560,7 @@ msgstr "" msgid "Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." @@ -549,19 +568,19 @@ msgstr "" "Per sovrascrivere il percorso di default usa l'opzione 'Directory DNS' nella " "sezione aggiuntiva sotto." -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "Ritardo Innesco" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "Registro di Debug Dettagliato" @@ -573,25 +592,28 @@ msgstr "Aspettando che il comando venga completato..." msgid "Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "Sì" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" +#~ msgid "Force Overall Sort" +#~ msgstr "Forza Ordinamento Globale" + #~ msgid "View Logfile" #~ msgstr "Vedi Registro" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index a956d63869..0271995f62 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -11,11 +11,11 @@ msgstr "" "X-Generator: Poedit 2.2\n" "Language: ja\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "'Jail' ブロックリストの作成" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -29,7 +29,7 @@ msgid "Action" msgstr "アクション" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -41,7 +41,7 @@ msgstr "Adblock ステータス" msgid "Adblock Version" msgstr "Adblock バージョン" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Adblock の処理が開始されるまでの、追加の遅延時間(秒)です。" @@ -54,15 +54,15 @@ msgstr "詳細設定" msgid "Answer" msgstr "回答" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "アーカイブ カテゴリ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "バックアップ先 ディレクトリ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "バックアップ モード" @@ -70,7 +70,7 @@ msgstr "バックアップ モード" msgid "Blacklist" msgstr "ブラックリスト" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "ブロックされた DNS クエリ" @@ -79,7 +79,7 @@ msgstr "ブロックされた DNS クエリ" msgid "Blocked Domain" msgstr "ブロックされたドメイン" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "ブロックリスト提供元" @@ -87,7 +87,7 @@ msgstr "ブロックリスト提供元" msgid "Blocklist not found!" msgstr "ブロックリストが見つかりません!" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." @@ -95,7 +95,7 @@ msgstr "" "ホワイトリストに列挙されたものを除く全てのドメインをブロックする、追加の " "'Jail' リスト (/tmp/adb_list.jail) を作成します。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -113,7 +113,7 @@ msgstr "クライアント" msgid "Collecting data..." msgstr "データ収集中です..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -129,7 +129,7 @@ msgstr "" msgid "Count" msgstr "カウント" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." @@ -138,12 +138,12 @@ msgstr "" "ロードがエラーの場合、またはバックアップ モードでサービスを起動した場合に使用" "されます。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "DNS バックエンド(DNS ディレクトリ)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "DNS ディレクトリ" @@ -156,11 +156,11 @@ msgstr "DNS クエリ レポート" msgid "Date" msgstr "日付" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "説明" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -175,7 +175,11 @@ msgstr "" msgid "Domain" msgstr "ドメイン" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "ダウンロード ユーティリティ" @@ -195,60 +199,62 @@ msgstr "設定の編集" msgid "Edit Whitelist" msgstr "ホワイトリストの編集" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "メール通知" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "メール通知カウント" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "Adblock の有効化" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "ブロックリスト バックアップの有効化" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "DNS クエリ レポートの有効化" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" -"メモリー容量の少ないデバイス(RAM 空き領域 64MB 未満)において、一時ファイル" -"内の全体的なソート及び重複の除去を有効にします。" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" "何らかの処理エラーが発生した場合に、詳細なデバッグ ログを有効にします。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "有効" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "終了日" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "拡張オプション" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "DNS キャッシュのクリア" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "Adblock 処理の後に DNS キャッシュをクリアします。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" @@ -256,7 +262,7 @@ msgstr "" "詳細な情報は <a href=\"%s\" target=\"_blank\">オンライン ドキュメント</a> を" "確認してください。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." @@ -264,19 +270,15 @@ msgstr "" "パフォーマンスの更なる改善のため、安全と思われる '8' や '16' などの値に引き上" "げることができます。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "ローカル DNS の強制" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "全体ソートの強制" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "ホワイトリスト ファイルへのフルパスです。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -294,11 +296,11 @@ msgstr "入力ファイルが見つかりません。設定を確認してくだ msgid "Last Run" msgstr "最終実行" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "最新の DNS クエリ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." @@ -306,19 +308,19 @@ msgstr "" "利用可能なネットワーク インターフェースの一覧です。通常、スタートアップは " "'wan' インターフェースによってトリガされます。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" "サポートされる DNS バックエンドと、それぞれのデフォルトのリスト出力先の一覧で" "す。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "読込中" @@ -327,11 +329,11 @@ msgstr "読込中" msgid "Logfile" msgstr "ログファイル" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "低優先度サービス" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "ダウンロード キューの上限" @@ -340,11 +342,11 @@ msgstr "ダウンロード キューの上限" msgid "Name / IP-Address" msgstr "名前 / IP アドレス" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "いいえ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "デフォルト設定が適切でない場合、追加で設定するためのオプションです。" @@ -373,13 +375,13 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "ターミナル セッションで直接このファイルを編集してください。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" "注意: これは手動での 'msmtp' パッケージのインストールとセットアップを必要とし" "ます。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" "注意: これは手動での 'tcpdump-mini' パッケージのインストールを必要とします。" @@ -392,7 +394,7 @@ msgstr "検索" msgid "Query domains" msgstr "ドメインの検索" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," @@ -400,7 +402,7 @@ msgstr "" "メール通知を行うメール通知カウントの下限値を設定します。全体カウントが指定さ" "れた値以下の場合、メールを受け取ります(規定値: 0)。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -419,39 +421,45 @@ msgstr "リフレッシュ" msgid "Refresh Blocklist Sources" msgstr "ブロックリスト提供元のリフレッシュ" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "レポートをリフレッシュ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "レポート チャンクカウント" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "レポート チャンクサイズ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "レポート ディレクトリ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "レポート インターフェース" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "レポート待ち受けポート" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "tcpdump により使用される、レポートチャンク数です。(規定値: '5')" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "tcpdump により使用される、レポート チャンクサイズです。(規定値: '1')" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" -"tcpdump により使用される、レポートを行うインターフェースです。(規定値: 'br-" -"lan')" +"tcpdump により使用される、レポートを行うインターフェースです。複数のインター" +"フェースを使用するには、 'any' を設定してください。(規定値: 'br-lan')" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 msgid "Resume" @@ -461,7 +469,7 @@ msgstr "再開" msgid "Runtime Information" msgstr "実行情報" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "SSL 必須" @@ -471,14 +479,14 @@ msgstr "SSL 必須" msgid "Save" msgstr "保存" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "" "処理エラーまたはドメイン カウントが 0 以下の場合、通知メールを送信します。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." @@ -486,7 +494,7 @@ msgstr "" "nice値(優先度)を '低優先度' に設定し、adblock バックグラウンド処理のシステ" "ムリソース使用量を抑制します。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." @@ -494,11 +502,18 @@ msgstr "" "ダウンロードの制御とリストの処理を同時並行的に行う、ダウンロードキューのサイ" "ズです。(規定値: '8')" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" +"tcpdump により使用される、レポートを行うポートのスペースで区切られたリストで" +"す。(規定値: '53')" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "開始日" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "スタートアップ トリガ" @@ -512,7 +527,7 @@ msgstr "一時停止" msgid "Suspend / Resume Adblock" msgstr "Adblock の一時停止 / 再開" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." @@ -520,7 +535,7 @@ msgstr "" "adblock バックアップの保存先ディレクトリです。不揮発性ディスクのみを使用して" "ください。(例: 外部 USB スティック)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." @@ -528,7 +543,7 @@ msgstr "" "DNS 関連レポートファイルの保存先ディレクトリです。可能であれば不揮発性ディス" "クを使用してください。(例: 外部 USB スティック)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成されたブロックリスト 'adb_list.overall' の保存先ディレクトリです。" @@ -544,7 +559,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "Adblock に関連するメッセージのみが抽出された、システムログ出力です。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "この変更の反映には、手動でのサービスの停止 / 再起動が必要です。" @@ -583,7 +602,7 @@ msgstr "" msgid "Time" msgstr "時刻" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." @@ -591,19 +610,19 @@ msgstr "" "デフォルトのパスを上書きするには、下記拡張セクションの 'DNS ディレクトリ' オ" "プションを使用します。" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "上位 10 レポート" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "総 DNS クエリ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "トリガ遅延" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "詳細なデバッグ ログ" @@ -615,15 +634,15 @@ msgstr "コマンド実行中です..." msgid "Whitelist" msgstr "ホワイトリスト" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "ホワイトリスト ファイル" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "はい" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." @@ -631,9 +650,19 @@ msgstr "" "この制約の厳しいブロックリストを、ゲスト WiFi や子供の安全を守る設定などに手" "動で利用することができます。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" "例: Adblock のアップデート毎にメールを受け取るには、150000 に設定します。" + +#~ msgid "" +#~ "Enable memory intense overall sort / duplicate removal on low memory " +#~ "devices (< 64 MB free RAM)" +#~ msgstr "" +#~ "メモリー容量の少ないデバイス(RAM 空き領域 64MB 未満)において、一時ファイ" +#~ "ル内の全体的なソート及び重複の除去を有効にします。" + +#~ msgid "Force Overall Sort" +#~ msgstr "全体ソートの強制" diff --git a/applications/luci-app-adblock/po/pt-br/adblock.po b/applications/luci-app-adblock/po/pt-br/adblock.po index 1146dd7164..3dc2d48ff4 100644 --- a/applications/luci-app-adblock/po/pt-br/adblock.po +++ b/applications/luci-app-adblock/po/pt-br/adblock.po @@ -12,11 +12,11 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "Language: pt_BR\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "'Enjaule' Criação de Lista Negra" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -30,7 +30,7 @@ msgid "Action" msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -42,7 +42,7 @@ msgstr "Estado do Adblock" msgid "Adblock Version" msgstr "Versão do Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" "Atraso de gatilho adicional em segundos antes do processamento do adblock " @@ -57,15 +57,15 @@ msgstr "Avançado" msgid "Answer" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "Categorias Arquivadas" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "Diretório da cópia de segurança" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "Modo de Backup" @@ -73,7 +73,7 @@ msgstr "Modo de Backup" msgid "Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "Fontes de listas de bloqueio" @@ -90,7 +90,7 @@ msgstr "Fontes de listas de bloqueio" msgid "Blocklist not found!" msgstr "Lista preta não encontrada!" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." @@ -98,7 +98,7 @@ msgstr "" "Cria uma lista adicional (/tmp/adb_list.jail) para bloquear o acesso a todos " "os domínios exceto aqueles listados na lista branca." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -116,7 +116,7 @@ msgstr "" msgid "Collecting data..." msgstr "Coletando dados..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -132,7 +132,7 @@ msgstr "" msgid "Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." @@ -141,12 +141,12 @@ msgstr "" "usadas em caso de falha ao baixar novas listas ou ao iniciar em modo de " "backup." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "Serviço DNS (Diretório DNS)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "Diretório DNS" @@ -159,11 +159,11 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "Descrição" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -178,7 +178,11 @@ msgstr "" msgid "Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "Ferramenta para Baixar" @@ -198,61 +202,63 @@ msgstr "Editar Configuração" msgid "Edit Whitelist" msgstr "Editar Lista Permitida" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "Notificação por Email" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "Quantidade para Notificação por Email" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "Habilitar adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "Habilitar cópia de segurança da lista de bloqueio" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" -"Habilita a remoção de entradas duplicadas em dispositivos com pouca memória " -"(< 64 MB de memória RAM livre)" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" "Habilita os registros de depuração detalhados em caso de qualquer erro de " "processamento." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "Habilitado" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "Opções adicionais" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "Limpar cache DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "Limpar cache DNS depois do processamento do adblock." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" @@ -260,7 +266,7 @@ msgstr "" "Para mais informações <a href=\"%s\" target=\"_blank\">veja a documentação " "externa</a>" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." @@ -268,19 +274,15 @@ msgstr "" "Para melhoramentos no desempenho, você pode aumentar este valor (ex: '8' ou " "'16' deve ser seguro)." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "Force o DNS local" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "Force Tipo Geral" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "Caminho completo para a lista branca." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -296,11 +298,11 @@ msgstr "Arquivo de entrada não encontrado, por favor cheque sua configuração. msgid "Last Run" msgstr "Última Execução" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." @@ -308,19 +310,19 @@ msgstr "" "Lista das interfaces de redes disponíveis. Normalmente, o início será " "desencadeado pela interface 'wan'." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" "Lista dos serviços DNS suportados com seu diretório padrão de exportação de " "lista." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "Lista de ferramentas suportadas para baixar listas." #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "Carregando" @@ -329,11 +331,11 @@ msgstr "Carregando" msgid "Logfile" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "Serviço de Baixa Prioridade" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "Tamanho Máximo da Fila" @@ -342,11 +344,11 @@ msgstr "Tamanho Máximo da Fila" msgid "Name / IP-Address" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "Não" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "" @@ -377,11 +379,11 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "Por favor edite esse arquivo direto em uma sessão de terminal." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" @@ -393,7 +395,7 @@ msgstr "Consulta" msgid "Query domains" msgstr "Consulta de domínios" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," @@ -401,7 +403,7 @@ msgstr "" "Aumente a quantidade mínima para notificar por email para receber mensagens " "se a contagem total for menos ou igual a este limite (padrão 0)." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -420,36 +422,42 @@ msgstr "Atualizar" msgid "Refresh Blocklist Sources" msgstr "Atualizar as Fontes de Lista Negra" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -460,7 +468,7 @@ msgstr "Continuar" msgid "Runtime Information" msgstr "Informação de execução" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "Req. de SSL" @@ -470,7 +478,7 @@ msgstr "Req. de SSL" msgid "Save" msgstr "Salvar" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." @@ -478,7 +486,7 @@ msgstr "" "Enviar notificações por email se ocorrer um erro de processamento ou se a " "contagem por domínio for menor que 0." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." @@ -486,17 +494,22 @@ msgstr "" "Define o nível de prioridade para 'baixa', reduzindo o impacto do " "processamento em segundo plano do adblock no seu sistema." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "Gatilho de Iniciação" @@ -510,19 +523,19 @@ msgstr "Suspender" msgid "Suspend / Resume Adblock" msgstr "Suspender / Resumir adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Diretório para a lista nega gerada 'adb_list.overall'." @@ -537,7 +550,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "Mensagens do syslog relacionadas ao adblock." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "Esta mudança requer um reinício manual do serviço para ser efetivada." @@ -572,7 +589,7 @@ msgstr "" msgid "Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." @@ -580,19 +597,19 @@ msgstr "" "Para sobrescrever o caminho padrão, use a opção 'Diretório DNS' na seção " "extra abaixo." -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "Atraso no gatilho" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "Registros de Depuração Detalhados" @@ -604,21 +621,21 @@ msgstr "Aguardando por comando para completar..." msgid "Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "Lista Branca" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "Sim" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." @@ -627,6 +644,16 @@ msgstr "" "este valor para 150000." #~ msgid "" +#~ "Enable memory intense overall sort / duplicate removal on low memory " +#~ "devices (< 64 MB free RAM)" +#~ msgstr "" +#~ "Habilita a remoção de entradas duplicadas em dispositivos com pouca " +#~ "memória (< 64 MB de memória RAM livre)" + +#~ msgid "Force Overall Sort" +#~ msgstr "Force Tipo Geral" + +#~ msgid "" #~ "Please note: this needs additional 'msmtp' package installation and setup." #~ msgstr "Nota: isto exige a instalação e configuração do pacote 'msmtp'." diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index 3aed4fe7b9..d143ec2660 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -15,11 +15,11 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "Создание Черного<br />списка 'Jail'" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -33,7 +33,7 @@ msgid "Action" msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "AdBlock" @@ -45,7 +45,7 @@ msgstr "Состояние Adblock" msgid "Adblock Version" msgstr "Версия Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Дополнительная задержка в секундах до начала работы Adblock." @@ -58,15 +58,15 @@ msgstr "Дополнительно" msgid "Answer" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "Папка для бэкапа" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "Режим сохранения бекапа" @@ -74,7 +74,7 @@ msgstr "Режим сохранения бекапа" msgid "Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "Источники списков блокировок" @@ -91,13 +91,13 @@ msgstr "Источники списков блокировок" msgid "Blocklist not found!" msgstr "Список блокировок не найден!" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -115,7 +115,7 @@ msgstr "" msgid "Collecting data..." msgstr "Сбор данных..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -131,7 +131,7 @@ msgstr "" msgid "Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." @@ -139,12 +139,12 @@ msgstr "" "Создание сжатых резервных копий списков блокировок, они будут использоваться " "в случае ошибок загрузки или при запуске в ручном режиме." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "DNS бэкенд (папка DNS)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "Папка DNS" @@ -157,11 +157,11 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "Описание" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -176,7 +176,11 @@ msgstr "" msgid "Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "Утилита для скачивания" @@ -196,60 +200,61 @@ msgstr "Редактировать config файл" msgid "Edit Whitelist" msgstr "Редактировать Белый список" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "Email уведомления" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "Кол-во email уведомлений" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "Включить Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "Бэкап списка блокировок" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" -"Включить полную сортировку / удаление дубликатов в памяти. Используйте на " -"устройствах с низким объемом памяти (< 64 MB свободной оперативной " -"памяти)." - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "Включить подробное ведение журнала отладки в случае ошибок обработки." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "Включено" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "Дополнительные настройки" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "Очистка кэша DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "Очистка DNS-кэша после обработки Adblock-ом." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" @@ -257,7 +262,7 @@ msgstr "" "<br />Для получения дополнительной информации <a href=\"%s\" target=\"_blank" "\"> смотрите онлайн документацию</a>." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." @@ -265,19 +270,15 @@ msgstr "" "Для дополнительного повышения производительности вы можете увеличить это " "значение, например значения '8' или '16' должны быть безопасными." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "Локальный DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "Принудительная полная сортировка" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "Полный путь к файлу Белого списка." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -293,29 +294,29 @@ msgstr "Config файл не найден, настройте config файл." msgid "Last Run" msgstr "Последний запуск" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "" "Список поддерживаемых и полностью предварительно настроенных утилит для " "скачивания." #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "Загрузка" @@ -324,11 +325,11 @@ msgstr "Загрузка" msgid "Logfile" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "Максимальная очередь загрузки" @@ -337,11 +338,11 @@ msgstr "Максимальная очередь загрузки" msgid "Name / IP-Address" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "Нет" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "" @@ -371,11 +372,11 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "Редактируйте данный файл только в терминале." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" @@ -387,13 +388,13 @@ msgstr "Запрос" msgid "Query domains" msgstr "Запрос доменов" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -410,36 +411,42 @@ msgstr "" msgid "Refresh Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -450,7 +457,7 @@ msgstr "Возобновить" msgid "Runtime Information" msgstr "Информация о состоянии" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "Запрос SSL" @@ -460,29 +467,34 @@ msgstr "Запрос SSL" msgid "Save" msgstr "Сохранить" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "Триггер запуска" @@ -496,19 +508,19 @@ msgstr "Приостановить" msgid "Suspend / Resume Adblock" msgstr "Приостановить / Возобновить Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'." @@ -524,7 +536,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "" @@ -559,7 +575,7 @@ msgstr "" msgid "Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." @@ -567,19 +583,19 @@ msgstr "" "Чтобы заменить путь по умолчанию, используйте пункт 'Папка DNS' в разделе " "'Дополнительные настройки'." -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "Задержка запуска" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "Подробный журнал отладки" @@ -591,21 +607,21 @@ msgstr "Ожидание завершения выполнения команд msgid "Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "Файл Белого списка" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "Да" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." @@ -614,6 +630,17 @@ msgstr "" "установите значение 150000." #~ msgid "" +#~ "Enable memory intense overall sort / duplicate removal on low memory " +#~ "devices (< 64 MB free RAM)" +#~ msgstr "" +#~ "Включить полную сортировку / удаление дубликатов в памяти. Используйте на " +#~ "устройствах с низким объемом памяти (< 64 MB свободной оперативной " +#~ "памяти)." + +#~ msgid "Force Overall Sort" +#~ msgstr "Принудительная полная сортировка" + +#~ msgid "" #~ "Please note: this needs additional 'msmtp' package installation and setup." #~ msgstr "Внимание: это потребует дополнительной установки пакета 'msmtp'." diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index 6a934a2394..f93f178ce8 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -1,11 +1,11 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -17,7 +17,7 @@ msgid "Action" msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -29,7 +29,7 @@ msgstr "Status för Adblock" msgid "Adblock Version" msgstr "Version av Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" @@ -42,15 +42,15 @@ msgstr "Avancerat" msgid "Answer" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "Säkerhetskopiera mapp" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "Källor för blockeringslistor" @@ -75,13 +75,13 @@ msgstr "Källor för blockeringslistor" msgid "Blocklist not found!" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -99,7 +99,7 @@ msgstr "" msgid "Collecting data..." msgstr "Samlar in data..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -115,18 +115,18 @@ msgstr "" msgid "Count" msgstr "Räkna" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "DNS-bakände (DNS-mapp)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "DNS-mapp" @@ -139,11 +139,11 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "Beskrivning" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -158,7 +158,11 @@ msgstr "" msgid "Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "" @@ -178,81 +182,81 @@ msgstr "Redigerar konfigurationen" msgid "Edit Whitelist" msgstr "Redigera vitlista" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "Aktivera adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "Aktivera säkerhetskopiering av blockeringslistan" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "Aktiverad" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "Extra alternativ" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "Tvinga lokal DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -269,27 +273,27 @@ msgstr "" msgid "Last Run" msgstr "Kördes senast" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "Laddar" @@ -298,11 +302,11 @@ msgstr "Laddar" msgid "Logfile" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "" @@ -311,11 +315,11 @@ msgstr "" msgid "Name / IP-Address" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "Nej" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "" @@ -341,11 +345,11 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "Vänligen redigera den här filen direkt i en terminal-session." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" @@ -357,13 +361,13 @@ msgstr "Fråga" msgid "Query domains" msgstr "Fråga efter domäner" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -380,36 +384,42 @@ msgstr "" msgid "Refresh Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -420,7 +430,7 @@ msgstr "Återuppta" msgid "Runtime Information" msgstr "Information om körtid" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "SSL-rek." @@ -430,29 +440,34 @@ msgstr "SSL-rek." msgid "Save" msgstr "Spara" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "Uppstartslösare" @@ -466,19 +481,19 @@ msgstr "Stäng av" msgid "Suspend / Resume Adblock" msgstr "Upphäv / Återuppta adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" @@ -492,7 +507,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "" @@ -525,25 +544,25 @@ msgstr "" msgid "Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "" @@ -555,21 +574,21 @@ msgstr "Väntar på att kommandot ska slutföras..." msgid "Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "Ja" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 4510e92499..8890e4aa6f 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -1,11 +1,11 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -17,7 +17,7 @@ msgid "Action" msgstr "" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Adblock Version" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" @@ -42,15 +42,15 @@ msgstr "" msgid "Answer" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "" @@ -58,7 +58,7 @@ msgstr "" msgid "Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" msgstr "" @@ -67,7 +67,7 @@ msgstr "" msgid "Blocked Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "" @@ -75,13 +75,13 @@ msgstr "" msgid "Blocklist not found!" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -96,7 +96,7 @@ msgstr "" msgid "Collecting data..." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "" @@ -110,18 +110,18 @@ msgstr "" msgid "Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "" @@ -134,11 +134,11 @@ msgstr "" msgid "Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -151,7 +151,11 @@ msgstr "" msgid "Domain" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "" @@ -171,81 +175,81 @@ msgstr "" msgid "Edit Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." @@ -261,27 +265,27 @@ msgstr "" msgid "Last Run" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "" @@ -290,11 +294,11 @@ msgstr "" msgid "Logfile" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "" @@ -303,11 +307,11 @@ msgstr "" msgid "Name / IP-Address" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "" @@ -333,11 +337,11 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." msgstr "" @@ -349,13 +353,13 @@ msgstr "" msgid "Query domains" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -372,36 +376,42 @@ msgstr "" msgid "Refresh Blocklist Sources" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -412,7 +422,7 @@ msgstr "" msgid "Runtime Information" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "" @@ -422,29 +432,34 @@ msgstr "" msgid "Save" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "" @@ -458,19 +473,19 @@ msgstr "" msgid "Suspend / Resume Adblock" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "" @@ -484,7 +499,11 @@ msgstr "" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "" @@ -515,25 +534,25 @@ msgstr "" msgid "Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "" @@ -545,21 +564,21 @@ msgstr "" msgid "Whitelist" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." diff --git a/applications/luci-app-adblock/po/zh-cn/adblock.po b/applications/luci-app-adblock/po/zh-cn/adblock.po index 7f77fd855c..dd59399f80 100644 --- a/applications/luci-app-adblock/po/zh-cn/adblock.po +++ b/applications/luci-app-adblock/po/zh-cn/adblock.po @@ -1,25 +1,25 @@ # liushuyu <liushuyu_011@163.com>, 2017. -# Yangfl <mmyangfl@gmail.com>, 2017, 2018. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-10-01 10:02+0800\n" +"PO-Revision-Date: 2019-01-03 20:37+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "“Jail”拦截列表创建" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -30,10 +30,10 @@ msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:86 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Action" -msgstr "" +msgstr "动作" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -45,7 +45,7 @@ msgstr "Adblock 状态" msgid "Adblock Version" msgstr "Adblock 版本" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "触发 Adblock 开始处理前的额外延迟(秒)。" @@ -56,34 +56,34 @@ msgstr "高级" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:85 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Answer" -msgstr "" +msgstr "回答" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "存档类别" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "备份目录" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "备份模式" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:106 msgid "Blacklist" -msgstr "" +msgstr "黑名单" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" -msgstr "" +msgstr "已拦截的 DNS 请求" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:30 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:73 msgid "Blocked Domain" -msgstr "" +msgstr "已拦截的域名" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "拦截列表来源" @@ -91,7 +91,7 @@ msgstr "拦截列表来源" msgid "Blocklist not found!" msgstr "拦截列表未找到!" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." @@ -99,7 +99,7 @@ msgstr "" "构建一个额外的“Jail”列表(/tmp/adb_list.jail),除白名单文件中列出的域名外," "阻止访问其他所有的域名。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -110,13 +110,13 @@ msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:83 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Client" -msgstr "" +msgstr "客户端" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:59 msgid "Collecting data..." msgstr "正在收集数据..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "Adblock 配置工具,通过 DNS 来拦截广告和阻止域名。" @@ -128,37 +128,37 @@ msgstr "Adblock 配置工具,通过 DNS 来拦截广告和阻止域名。" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:70 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:72 msgid "Count" -msgstr "" +msgstr "计数" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "创建压缩的拦截列表备份,它们将在下载错误或备份模式启动期间使用。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "DNS 后端(DNS 目录)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "DNS 目录" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 msgid "DNS Query Report" -msgstr "" +msgstr "DNS 查询报告" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:81 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Date" -msgstr "" +msgstr "日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "描述" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -169,9 +169,13 @@ msgstr "启动期间不要自动更新 blocklists,改用 blocklists 的备份 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:84 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Domain" +msgstr "域名" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "下载工具" @@ -191,85 +195,85 @@ msgstr "编辑设置" msgid "Edit Whitelist" msgstr "编辑白名单" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "Email 提醒" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "Email 提醒计数" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "启用 Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "启用 Blocklist 备份" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" -msgstr "" +msgstr "启用 DNS 查询报告" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "在低内存设备上启用积极的内存整体排序/重复移除(< 64 MB 空闲内存)" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "在出现任何处理错误的情况下启用详细调试日志记录。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "已启用" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" -msgstr "" +msgstr "结束日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "额外选项" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "清空 DNS 缓存" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "在 adblock 进程启动后清空 DNS 缓存。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "进一步信息<a href=\"%s\" target=\"_blank\">请访问在线文档</a>" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "为了进一步提高性能,您可以提高此值,例如:8 或 16 应该是安全的。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "强制本地 DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "强制整体排序" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "白名单文件的全路径。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." -msgstr "" +msgstr "通过 tcpdump 收集 dns 有关的网络流量,以按需提供 DNS 查询报告。" #: applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua:10 #: applications/luci-app-adblock/luasrc/model/cbi/adblock/configuration_tab.lua:9 @@ -281,53 +285,53 @@ msgstr "输入文件未找到,请检查您的配置。" msgid "Last Run" msgstr "最后运行" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" -msgstr "" +msgstr "最新的 DNS 查询" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "可用网络接口列表。通常启动将由“wan”接口触发。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "支持的 DNS 后端列表及其默认列表导出目录。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "支持和完全预配置的下载工具列表。" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "加载中" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "Logfile" -msgstr "" +msgstr "日志文件" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "低优先级服务" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "最大下载队列" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:26 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:69 msgid "Name / IP-Address" -msgstr "" +msgstr "名称 / IP 地址" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "否" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "在默认设置并不适合您时的额外选项。" @@ -355,13 +359,13 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "请在终端会话中直接编辑此文件。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." -msgstr "" +msgstr "请注意:这需要手动安装和设置“msmtp”软件包。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." -msgstr "" +msgstr "请注意:这需要手动安装和设置“tcpdump-mini”软件包。" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:52 msgid "Query" @@ -371,7 +375,7 @@ msgstr "查询" msgid "Query domains" msgstr "查询域" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," @@ -379,7 +383,7 @@ msgstr "" "如果总数小于或等于给定限制(默认为 0),请提高最小电子邮件通知数,以获取电子" "邮件。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -398,36 +402,42 @@ msgstr "刷新" msgid "Refresh Blocklist Sources" msgstr "刷新拦截列表源" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" -msgstr "" +msgstr "刷新报告" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" -msgstr "" +msgstr "报告区块计数" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" -msgstr "" +msgstr "报告区块大小" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" -msgstr "" +msgstr "报告目录" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" +msgstr "报告接口" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." -msgstr "" +msgstr "tcpdump 将使用的报告区块计数(默认为“5”)。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." -msgstr "" +msgstr "tcpdump 将使用的报告区块大小(MB)(默认为“1”)。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -438,7 +448,7 @@ msgstr "恢复" msgid "Runtime Information" msgstr "运行信息" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "SSL 要求" @@ -448,29 +458,34 @@ msgstr "SSL 要求" msgid "Save" msgstr "保存" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "如果发生错误或域计数 ≤ 0,发送通知电子邮件。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "设置 nice 级别为“低优先级”,adblock 后台进程将从系统中获取更少的资源。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." +msgstr "处理下载队列的大小及并行处理列表(默认为“8”)。" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" -msgstr "" +msgstr "开始日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "启动触发器" @@ -484,19 +499,20 @@ msgstr "暂停" msgid "Suspend / Resume Adblock" msgstr "暂停/恢复 Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." -msgstr "" +msgstr "adblock 备份的目标目录。请仅使用非易失性磁盘,例如:一个外置 U 盘。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" +"dns 相关报告文件的目标目录。请优先使用非易失性磁盘,例如:一个外置 U 盘。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成拦截列表“adb_list.overall”的目标目录。" @@ -510,7 +526,11 @@ msgstr "文件过大,无法使用 LuCI 的在线编辑(≥ 100 KB)。" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "系统日志输出,仅针对 adblock 相关的消息进行了预筛选。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "此更改需要手动停止/重启服务才能生效。" @@ -539,27 +559,27 @@ msgstr "此表单允许您查询某些域的活动块列表,例如用于列出 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:82 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Time" -msgstr "" +msgstr "时间" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "要覆盖默认路径,请使用下面额外部分中的“DNS 目录”选项。" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" -msgstr "" +msgstr "前十报告" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" -msgstr "" +msgstr "DNS 查询总数" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "触发延迟" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "详细的调试记录" @@ -569,47 +589,36 @@ msgstr "正在等待命令完成…" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:102 msgid "Whitelist" -msgstr "" +msgstr "白名单" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "白名单文件" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "是" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." -msgstr "" +msgstr "您可以使用此限制性拦截列表,例如访客 wifi 或家长模式。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "例如:要接收每个 adblock 更新的电子邮件通知时将此值设置为 150000。" #~ msgid "" -#~ "Please note: this needs additional 'msmtp' package installation and setup." -#~ msgstr "请注意:这需要额外的“msmtp”软件包安装和设置。" - -#~ msgid "" -#~ "Size of the download queue to handle downloads & list processing in " -#~ "parallel (default '4')." -#~ msgstr "处理下载队列的大小及并行处理列表(默认“4”)。" - -#~ msgid "" -#~ "Target directory for adblock backups. Please use only non-volatile disks, " -#~ "e.g. an external usb stick." -#~ msgstr "adblock 备份的目标目录。请仅使用非易失性磁盘,例如:一个外置 U 盘。" +#~ "Enable memory intense overall sort / duplicate removal on low memory " +#~ "devices (< 64 MB free RAM)" +#~ msgstr "" +#~ "在低内存设备上启用积极的内存整体排序/重复移除(< 64 MB 空闲内存)" -#~ msgid "View Logfile" -#~ msgstr "查看日志文件" +#~ msgid "Force Overall Sort" +#~ msgstr "强制整体排序" -#~ msgid "" -#~ "You can use this restrictive blocklist manually e.g. for guest wifi or " -#~ "kidsafe configurations." -#~ msgstr "" -#~ "您可以手动使用此限制性拦截列表,例如:为客人提供 wifi 或 kidsafe 配置。" +#~ msgid "Reporting interface used by tcpdump (default 'br-lan')." +#~ msgstr "tcpdump 将使用的报告接口(默认为“br-lan”)。" diff --git a/applications/luci-app-adblock/po/zh-tw/adblock.po b/applications/luci-app-adblock/po/zh-tw/adblock.po index 4c34c1a9a3..6611f1964a 100644 --- a/applications/luci-app-adblock/po/zh-tw/adblock.po +++ b/applications/luci-app-adblock/po/zh-tw/adblock.po @@ -1,25 +1,25 @@ # liushuyu <liushuyu_011@163.com>, 2017. -# Yangfl <mmyangfl@gmail.com>, 2017, 2018. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-10-01 10:02+0800\n" +"PO-Revision-Date: 2019-01-03 20:37+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Plural-Forms: nplurals=1; plural=0;\n" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:158 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 msgid "'Jail' Blocklist Creation" msgstr "“Jail”攔截列表建立" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:74 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:70 msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -30,10 +30,10 @@ msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:86 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Action" -msgstr "" +msgstr "動作" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:17 -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:10 msgid "Adblock" msgstr "Adblock" @@ -45,7 +45,7 @@ msgstr "Adblock 狀態" msgid "Adblock Version" msgstr "Adblock 版本" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:179 msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "觸發 Adblock 開始處理前的額外延遲(秒)。" @@ -56,34 +56,34 @@ msgstr "高階" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:85 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Answer" -msgstr "" +msgstr "回答" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:92 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:88 msgid "Archive Categories" msgstr "存檔類別" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:120 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 msgid "Backup Directory" msgstr "備份目錄" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:127 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:123 msgid "Backup Mode" msgstr "備份模式" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:106 msgid "Blacklist" -msgstr "" +msgstr "黑名單" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:223 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:274 msgid "Blocked DNS Queries" -msgstr "" +msgstr "已攔截的 DNS 請求" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:30 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:73 msgid "Blocked Domain" -msgstr "" +msgstr "已攔截的域名" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:69 msgid "Blocklist Sources" msgstr "攔截列表來源" @@ -91,7 +91,7 @@ msgstr "攔截列表來源" msgid "Blocklist not found!" msgstr "攔截列表未找到!" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:159 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:155 msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " "domains except those listed in the whitelist file." @@ -99,7 +99,7 @@ msgstr "" "構建一個額外的“Jail”列表(/tmp/adb_list.jail),除白名單檔案中列出的域名外," "阻止訪問其他所有的域名。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:49 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " "timeout (default 30 sec.) or select another trigger interface." @@ -110,13 +110,13 @@ msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:83 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Client" -msgstr "" +msgstr "客戶端" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:59 msgid "Collecting data..." msgstr "正在收集資料..." -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:11 msgid "" "Configuration of the adblock package to block ad/abuse domains by using DNS." msgstr "Adblock 配置工具,通過 DNS 來攔截廣告和阻止域名。" @@ -128,37 +128,37 @@ msgstr "Adblock 配置工具,通過 DNS 來攔截廣告和阻止域名。" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:70 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:72 msgid "Count" -msgstr "" +msgstr "計數" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "建立壓縮的攔截列表備份,它們將在下載錯誤或備份模式啟動期間使用。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:24 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:159 msgid "DNS Backend (DNS Directory)" msgstr "DNS 後端(DNS 目錄)" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:171 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:167 msgid "DNS Directory" msgstr "DNS 目錄" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 msgid "DNS Query Report" -msgstr "" +msgstr "DNS 查詢報告" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:81 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Date" -msgstr "" +msgstr "日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:90 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 msgid "Description" msgstr "描述" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:124 msgid "" "Do not automatically update blocklists during startup, use blocklist backups " "instead." @@ -169,9 +169,13 @@ msgstr "啟動期間不要自動更新 blocklists,改用 blocklists 的備份 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:84 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Domain" +msgstr "域名" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:294 +msgid "Domain/Client/Date/Time" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:35 msgid "Download Utility" msgstr "下載工具" @@ -191,86 +195,85 @@ msgstr "編輯設定" msgid "Edit Whitelist" msgstr "編輯白名單" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:151 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:147 msgid "Email Notification" msgstr "Email 提醒" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:164 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 msgid "Email Notification Count" msgstr "Email 提醒計數" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:21 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:20 msgid "Enable Adblock" msgstr "啟用 Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:116 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 msgid "Enable Blocklist Backup" msgstr "啟用 Blocklist 備份" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:139 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:135 msgid "Enable DNS Query Report" -msgstr "" +msgstr "啟用 DNS 查詢報告" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 -msgid "" -"Enable memory intense overall sort / duplicate removal on low memory devices " -"(< 64 MB free RAM)" -msgstr "" -"在低記憶體裝置上啟用積極的記憶體整體排序/重複移除(< 64 MB 空閒記憶體)" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "在出現任何處理錯誤的情況下啟用詳細除錯日誌記錄。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:77 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:73 msgid "Enabled" msgstr "已啟用" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:211 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:262 msgid "End Date" -msgstr "" +msgstr "結束日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:98 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:94 msgid "Extra Options" msgstr "額外選項" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:187 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:302 +msgid "Filter" +msgstr "" + +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:292 +msgid "" +"Filter the DNS Query result set for a particular domain, client or time " +"frame." +msgstr "" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "清空 DNS 快取" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:184 msgid "Flush DNS Cache after adblock processing." msgstr "在 adblock 程序啟動後清空 DNS 快取。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:13 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:12 msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "進一步資訊<a href=\"%s\" target=\"_blank\">請訪問線上文檔</a>" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:134 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:130 msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "為了進一步提高效能,您可以提高此值,例如:8 或 16 應該是安全的。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:112 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:108 msgid "Force Local DNS" msgstr "強制本地 DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 -msgid "Force Overall Sort" -msgstr "強制整體排序" - -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:177 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "白名單檔案的全路徑。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:136 msgid "" "Gather dns related network traffic via tcpdump to provide a DNS Query Report " "on demand." -msgstr "" +msgstr "通過 tcpdump 收集 dns 有關的網路流量,以按需提供 DNS 查詢報告。" #: applications/luci-app-adblock/luasrc/model/cbi/adblock/blacklist_tab.lua:10 #: applications/luci-app-adblock/luasrc/model/cbi/adblock/configuration_tab.lua:9 @@ -282,53 +285,53 @@ msgstr "輸入檔案未找到,請檢查您的配置。" msgid "Last Run" msgstr "最後執行" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:241 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:307 msgid "Latest DNS Queries" -msgstr "" +msgstr "最新的 DNS 查詢" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:48 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 msgid "" "List of available network interfaces. Usually the startup will be triggered " "by the 'wan' interface." msgstr "可用網路介面列表。通常啟動將由“wan”介面觸發。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:25 msgid "" "List of supported DNS backends with their default list export directory." msgstr "支援的 DNS 後端列表及其預設列表匯出目錄。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:37 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:36 msgid "List of supported and fully pre-configured download utilities." msgstr "支援和完全預配置的下載工具列表。" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:21 -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:148 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:221 #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:90 msgid "Loading" msgstr "載入中" #: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "Logfile" -msgstr "" +msgstr "日誌檔案" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:105 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 msgid "Low Priority Service" msgstr "低優先順序服務" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:132 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:128 msgid "Max. Download Queue" msgstr "最大下載佇列" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:26 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:69 msgid "Name / IP-Address" -msgstr "" +msgstr "名稱 / IP 地址" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:86 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:82 msgid "No" msgstr "否" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:99 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:95 msgid "" "Options for further tweaking in case the defaults are not suitable for you." msgstr "在預設設定並不適合您時的額外選項。" @@ -356,13 +359,13 @@ msgstr "" msgid "Please edit this file directly in a terminal session." msgstr "請在終端會話中直接編輯此檔案。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:153 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:149 msgid "Please note: this needs manual 'msmtp' package installation and setup." -msgstr "" +msgstr "請注意:這需要手動安裝和設定“msmtp”軟體包。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:137 msgid "Please note: this needs manual 'tcpdump-mini' package installation." -msgstr "" +msgstr "請注意:這需要手動安裝和設定“tcpdump-mini”軟體包。" #: applications/luci-app-adblock/luasrc/view/adblock/query.htm:52 msgid "Query" @@ -372,7 +375,7 @@ msgstr "查詢" msgid "Query domains" msgstr "查詢域" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:165 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:161 msgid "" "Raise the minimum email notification count, to get emails if the overall " "count is less or equal to the given limit (default 0)," @@ -380,7 +383,7 @@ msgstr "" "如果總數小於或等於給定限制(預設為 0),請提高最小電子郵件通知數,以獲取電子" "郵件。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:113 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:109 msgid "" "Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " "and tcp protocol on ports 53, 853 and 5353." @@ -399,36 +402,42 @@ msgstr "重新整理" msgid "Refresh Blocklist Sources" msgstr "重新整理攔截列表源" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:230 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:281 msgid "Refresh Report" -msgstr "" +msgstr "重新整理報告" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:201 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:211 msgid "Report Chunk Count" -msgstr "" +msgstr "報告區塊計數" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:218 msgid "Report Chunk Size" -msgstr "" +msgstr "報告區塊大小" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:144 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:140 msgid "Report Directory" -msgstr "" +msgstr "報告目錄" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:192 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:188 msgid "Report Interface" +msgstr "報告介面" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:205 +msgid "Report Listen Port(s)" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:202 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:212 msgid "Report chunk count used by tcpdump (default '5')." -msgstr "" +msgstr "tcpdump 將使用的報告區塊計數(預設為“5”)。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:219 msgid "Report chunk size used by tcpdump in MB (default '1')." -msgstr "" +msgstr "tcpdump 將使用的報告區塊大小(MB)(預設為“1”)。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:193 -msgid "Reporting interface used by tcpdump (default 'br-lan')." +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:189 +msgid "" +"Reporting interface used by tcpdump, set to 'any' for multiple interfaces " +"(default 'br-lan')." msgstr "" #: applications/luci-app-adblock/luasrc/view/adblock/runtime.htm:31 @@ -439,7 +448,7 @@ msgstr "恢復" msgid "Runtime Information" msgstr "執行資訊" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:76 msgid "SSL req." msgstr "SSL 要求" @@ -449,30 +458,35 @@ msgstr "SSL 要求" msgid "Save" msgstr "儲存" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:152 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:148 msgid "" "Send notification emails in case of a processing error or if domain count is " "≤ 0." msgstr "如果發生錯誤或域計數 ≤ 0,傳送通知電子郵件。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:106 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:102 msgid "" "Set the nice level to 'low priority' and the adblock background processing " "will take less resources from the system." msgstr "" "設定 nice 級別為“低優先順序”,adblock 後臺程序將從系統中獲取更少的資源。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:133 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:129 msgid "" "Size of the download queue to handle downloads & list processing in " "parallel (default '8')." +msgstr "處理下載佇列的大小及並行處理列表(預設為“8”)。" + +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:206 +msgid "" +"Space separated list of reporting port(s) used by tcpdump (default: '53')." msgstr "" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" -msgstr "" +msgstr "開始日期" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:47 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:46 msgid "Startup Trigger" msgstr "啟動觸發器" @@ -486,19 +500,20 @@ msgstr "暫停" msgid "Suspend / Resume Adblock" msgstr "暫停/恢復 Adblock" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:121 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:117 msgid "" "Target directory for adblock backups. Please use only a non-volatile disk, e." "g. an external usb stick." -msgstr "" +msgstr "adblock 備份的目標目錄。請僅使用非易失性磁碟,例如:一個外接 U 盤。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:145 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:141 msgid "" "Target directory for dns related report files. Please use preferably a non-" "volatile disk, e.g. an external usb stick." msgstr "" +"dns 相關報告檔案的目標目錄。請優先使用非易失性磁碟,例如:一個外接 U 盤。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:168 msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "生成攔截列表“adb_list.overall”的目標目錄。" @@ -512,7 +527,11 @@ msgstr "檔案過大,無法使用 LuCI 的線上編輯(≥ 100 KB)。" msgid "The syslog output, pre-filtered for adblock related messages only." msgstr "系統日誌輸出,僅針對 adblock 相關的訊息進行了預篩選。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:107 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:103 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:190 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:207 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:213 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:220 msgid "This change requires a manual service stop/re-start to take effect." msgstr "此更改需要手動停止/重啟服務才能生效。" @@ -541,27 +560,27 @@ msgstr "此表單允許您查詢某些域的活動塊列表,例如用於列出 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:82 #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:89 msgid "Time" -msgstr "" +msgstr "時間" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:27 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:26 msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "要覆蓋預設路徑,請使用下面額外部分中的“DNS 目錄”選項。" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:236 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:287 msgid "Top 10 Reporting" -msgstr "" +msgstr "前十報告" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:217 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:268 msgid "Total DNS Queries" -msgstr "" +msgstr "DNS 查詢總數" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:182 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:178 msgid "Trigger Delay" msgstr "觸發延遲" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:101 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:97 msgid "Verbose Debug Logging" msgstr "詳細的除錯記錄" @@ -571,47 +590,36 @@ msgstr "正在等待指令完成…" #: applications/luci-app-adblock/luasrc/view/adblock/report.htm:102 msgid "Whitelist" -msgstr "" +msgstr "白名單" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:176 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:172 msgid "Whitelist File" msgstr "白名單檔案" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:84 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:80 msgid "Yes" msgstr "是" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:160 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:156 msgid "" "You can use this restrictive blocklist e.g. for guest wifi or kidsafe " "configurations." -msgstr "" +msgstr "您可以使用此限制性攔截列表,例如訪客 wifi 或家長模式。" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:166 +#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:162 msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "例如:要接收每個 adblock 更新的電子郵件通知時將此值設定為 150000。" #~ msgid "" -#~ "Please note: this needs additional 'msmtp' package installation and setup." -#~ msgstr "請注意:這需要額外的“msmtp”軟體包安裝和設定。" - -#~ msgid "" -#~ "Size of the download queue to handle downloads & list processing in " -#~ "parallel (default '4')." -#~ msgstr "處理下載佇列的大小及並行處理列表(預設“4”)。" - -#~ msgid "" -#~ "Target directory for adblock backups. Please use only non-volatile disks, " -#~ "e.g. an external usb stick." -#~ msgstr "adblock 備份的目標目錄。請僅使用非易失性磁碟,例如:一個外接 U 盤。" +#~ "Enable memory intense overall sort / duplicate removal on low memory " +#~ "devices (< 64 MB free RAM)" +#~ msgstr "" +#~ "在低記憶體裝置上啟用積極的記憶體整體排序/重複移除(< 64 MB 空閒記憶體)" -#~ msgid "View Logfile" -#~ msgstr "檢視日誌檔案" +#~ msgid "Force Overall Sort" +#~ msgstr "強制整體排序" -#~ msgid "" -#~ "You can use this restrictive blocklist manually e.g. for guest wifi or " -#~ "kidsafe configurations." -#~ msgstr "" -#~ "您可以手動使用此限制性攔截列表,例如:為客人提供 wifi 或 kidsafe 配置。" +#~ msgid "Reporting interface used by tcpdump (default 'br-lan')." +#~ msgstr "tcpdump 將使用的報告介面(預設為“br-lan”)。" diff --git a/applications/luci-app-advanced-reboot/README.md b/applications/luci-app-advanced-reboot/README.md index 4fa335fb3f..7ed1826eac 100644 --- a/applications/luci-app-advanced-reboot/README.md +++ b/applications/luci-app-advanced-reboot/README.md @@ -1,7 +1,7 @@ # Advanced Reboot Web UI (luci-app-advanced-reboot) ## Description -This package allows you to reboot to an alternative partition on the supported (dual-partition) routers and to power off (power down) your OpenWrt/LEDE Project device. +This package allows you to reboot to an alternative partition on the supported (dual-partition) routers and to power off (power down) your OpenWrt device. ## Supported Devices Currently supported dual-partition devices include: @@ -17,7 +17,7 @@ Currently supported dual-partition devices include: - Linksys WRT32X - ZyXEL NBG6817 -If you're interested in having your device supported, please post in [LEDE Project Forum Support Thread](https://forum.lede-project.org/t/web-ui-to-reboot-to-another-partition-dual-partition-routers/3423). +If you're interested in having your device supported, please post in [OpenWrt Forum Support Thread](https://forum.openwrt.org/t/web-ui-to-reboot-to-another-partition-dual-partition-routers/3423). ## Screenshot (luci-app-advanced-reboot) ![screenshot](https://raw.githubusercontent.com/stangri/openwrt_packages/master/screenshots/luci-app-advanced-reboot/screenshot01.png "screenshot") @@ -31,7 +31,7 @@ opkg install luci-app-advanced-reboot ## Notes/Known Issues - When you reboot to a different partition, your current settings (WiFi SSID/password, etc.) will not apply to a different partition. Different partitions might have completely different settings and even firmware. -- If you reboot to a partition which doesn't allow you to switch boot partitions (like stock vendor firmware), you might not be able to boot back to OpenWrt/LEDE Project unless you reflash it, losing all the settings. +- If you reboot to a partition which doesn't allow you to switch boot partitions (like stock vendor firmware), you might not be able to boot back to OpenWrt unless you reflash it, losing all the settings. - Some devices allow you to trigger reboot to an alternative partition by interrupting boot 3 times in a row (by resetting/switching off the device or pulling power). As these methods might be different for different devices, do your own homework. ## Thanks diff --git a/applications/luci-app-ahcp/po/zh-cn/ahcp.po b/applications/luci-app-ahcp/po/zh-cn/ahcp.po index 6e3a6a2253..a291befd78 100644 --- a/applications/luci-app-ahcp/po/zh-cn/ahcp.po +++ b/applications/luci-app-ahcp/po/zh-cn/ahcp.po @@ -64,7 +64,7 @@ msgstr "正在收集数据…" #: applications/luci-app-ahcp/luasrc/model/cbi/admin_network/proto_ahcp.lua:55 msgid "Disable DNS setup" -msgstr "" +msgstr "禁用 DNS 设置" #: applications/luci-app-ahcp/luasrc/model/cbi/ahcp.lua:21 msgid "Forwarder" diff --git a/applications/luci-app-ahcp/po/zh-tw/ahcp.po b/applications/luci-app-ahcp/po/zh-tw/ahcp.po index e39667df25..d06bf90e55 100644 --- a/applications/luci-app-ahcp/po/zh-tw/ahcp.po +++ b/applications/luci-app-ahcp/po/zh-tw/ahcp.po @@ -64,7 +64,7 @@ msgstr "正在收集資料…" #: applications/luci-app-ahcp/luasrc/model/cbi/admin_network/proto_ahcp.lua:55 msgid "Disable DNS setup" -msgstr "" +msgstr "禁用 DNS 設定" #: applications/luci-app-ahcp/luasrc/model/cbi/ahcp.lua:21 msgid "Forwarder" diff --git a/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm b/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm index 0a8c65ebdd..c9259559be 100644 --- a/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm +++ b/applications/luci-app-attendedsysupgrade/luasrc/view/attendedsysupgrade.htm @@ -77,8 +77,7 @@ <div class="cbi-map-descr"> Easily search and install new releases and package upgrades. Sysupgrade firmware are created on demand based on locally installed packages. </div> -<div style="display: none" id="info_box" class="alert-message info"></div> -<div style="display: none" id="error_box" class="alert-message danger"></div> +<div style="display: none" id="status_box" class="alert-message info"></div> <div style="display: none" id="packages" class="alert-message success"></div> <p> <textarea style="display: none; width: 100%;" id="edit_packages" rows="15"></textarea> 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 4b8cc2bd04..290fad1583 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,14 +1,8 @@ -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("#error_box"); @@ -38,8 +32,7 @@ function edit_server() { button_set.value = "Save"; button_set.name = "button_set"; button_set.id = "button_set"; - button_set.className = 'cbi-button cbi-button-edit'; - button_set.style = 'background-image: url("/luci-static/resources/cbi/save.gif");' + button_set.className = 'cbi-button cbi-button-save'; button_set.onclick = set_server $("#server").parentElement.appendChild(button_set); } @@ -61,7 +54,7 @@ function server_request(request_dict, path, callback) { request.setRequestHeader("Content-type", "application/json"); request.send(JSON.stringify(request_dict)); request.onerror = function(e) { - error_box("upgrade server down") + set_status("danger", "upgrade server down") show("#server_div"); } request.addEventListener('load', function(event) { @@ -128,7 +121,7 @@ function ubus_call(command, argument, params, variable) { } } } else { - error_box("<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response)) + set_status("danger", "<b>Ubus call failed:</b><br />Request: " + request_json + "<br />Response: " + JSON.stringify(response)) } ubus_closed++; } @@ -136,22 +129,14 @@ function ubus_call(command, argument, params, variable) { request.send(request_json); } -function info_box(info_output, loading) { - // Shows notification if upgrade is available - // If loading is true then an "processing" animation is added - show("#info_box"); +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">'; + loading_image = '<img src="/luci-static/resources/icons/loading.gif" alt="Loading" style="vertical-align:middle"> '; } - $("#info_box").innerHTML = loading_image + info_output; -} - -function error_box(error_output) { - // Shows erros in red box - show("#error_box"); - $("#error_box").innerHTML = error_output; - hide("#info_box"); + $("#status_box").innerHTML = loading_image + message; + show("#status_box") } function upgrade_check() { @@ -159,10 +144,11 @@ function upgrade_check() { // If data.upgrade_packages is set to true search for new package versions as well hide("#error_box"); hide("#server_div"); - info_box("Searching for upgrades", true); + set_status("info", "Searching for upgrades", true); var request_dict = {} request_dict.version = data.release.version; - request_dict.packages = data.packages; + 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) } @@ -184,7 +170,7 @@ function upgrade_check_callback(request_text) { } } data.packages = request_json.packages - info_box(info_output) + set_status("success", info_output) if(data.advanced_mode == 1) { show("#edit_button"); @@ -235,7 +221,7 @@ function upgrade_request_callback(request) { if(data.advanced_mode == 1) { info_output += '<br /><a target="_blank" href="' + data.sysupgrade_url + '.log">Build log</a>' } - info_box(info_output); + set_status("info", info_output); show("#keep_container"); var upgrade_button = $("#upgrade_button") @@ -247,7 +233,7 @@ function upgrade_request_callback(request) { function flash_image() { // Flash image via rpc-sys upgrade_start - info_box("Flashing firmware. Don't unpower device", true) + 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) @@ -261,11 +247,11 @@ function ping_ubus() { var request = new XMLHttpRequest(); request.open("GET", ubus_url, true); request.addEventListener('error', function(event) { - info_box("Rebooting device", true); - setTimeout(ping_ubus, 1000) + set_status("warning", "Rebooting device", true); + setTimeout(ping_ubus, 5000) }); request.addEventListener('load', function(event) { - info_box("Success! Please reload web interface"); + set_status("success", "Success! Please reload web interface"); $("#upgrade_button").value = "Reload page"; show("#upgrade_button"); $("#upgrade_button").disabled = false; @@ -273,7 +259,7 @@ function ping_ubus() { }); request.send(); } else { - error_box("Web interface could not reconnect to your device. Please reload web interface or check device manually") + set_status("danger", "Web interface could not reconnect to your device. Please reload web interface or check device manually") } } @@ -293,7 +279,7 @@ function upload_image(blob) { }); request.addEventListener('error', function(event) { - info_box("Upload of firmware failed, please retry by reloading web interface") + set_status("info", "Upload of firmware failed, please retry by reloading web interface") }); request.open('POST', origin + '/cgi-bin/cgi-upload'); @@ -315,7 +301,7 @@ function download_image() { upload_image(blob) } }; - info_box("Downloading firmware", true); + set_status("info", "Downloading firmware", true); download_request.send(); } @@ -329,7 +315,7 @@ function server_request(request_dict, path, callback) { request.setRequestHeader("Content-type", "application/json"); request.send(JSON.stringify(request_dict)); request.onerror = function(e) { - error_box("Upgrade server down or could not connect") + set_status("danger", "Upgrade server down or could not connect") show("#server_div"); } request.addEventListener('load', function(event) { @@ -342,40 +328,40 @@ function server_request(request_dict, path, callback) { if(imagebuilder === "queue") { // in queue var queue = request.getResponseHeader("X-Build-Queue-Position"); - info_box("In build queue position " + queue, true) + set_status("info", "In build queue position " + queue, true) console.log("queued"); } else if(imagebuilder === "initialize") { - info_box("Setting up ImageBuilder", true) + set_status("info", "Setting up ImageBuilder", true) console.log("Setting up imagebuilder"); } else if(imagebuilder === "building") { - info_box("Building image", true); + set_status("info", "Building image", true); console.log("building"); } else { // fallback if for some reasons the headers are missing e.g. browser blocks access - info_box("Processing request", true); + 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 - info_box("No upgrades available") + set_status("success", "No upgrades available") } else if (request.status === 400) { // bad request request_json = JSON.parse(request_text) - error_box(request_json.error) + set_status("danger", request_json.error) } else if (request.status === 412) { // this is a bit generic - error_box("Unsupported device, release, target, subtraget or board") + set_status("danger", "Unsupported device, release, target, subtraget or board") } else if (request.status === 413) { - error_box("No firmware created due to image size. Try again with less packages selected.") + 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"); - error_box("Unknown package in request: <b>" + package_missing + "</b>") + set_status("danger", "Unknown package in request: <b>" + package_missing + "</b>") } else if (request.status === 500) { request_json = JSON.parse(request_text) @@ -384,20 +370,19 @@ function server_request(request_dict, path, callback) { if(request_json.log != undefined) { data.log_url = request_json.log } - error_box(error_box_content) + set_status("danger", error_box_content) } else if (request.status === 501) { - error_box("No sysupgrade file produced, may not supported by model.") + set_status("danger", "No sysupgrade file produced, may not supported by model.") } else if (request.status === 502) { // python part offline - error_box("Server down for maintenance") + set_status("danger", "Server down for maintenance") setTimeout(function() { server_request(request_dict, path, callback) }, 30000) } else if (request.status === 503) { - error_box("Server overloaded") + set_status("danger", "Server overloaded") setTimeout(function() { server_request(request_dict, path, callback) }, 30000) } }); } document.onload = setup() - diff --git a/applications/luci-app-banip/luasrc/controller/banip.lua b/applications/luci-app-banip/luasrc/controller/banip.lua index e201295d5f..3d75bec4d0 100644 --- a/applications/luci-app-banip/luasrc/controller/banip.lua +++ b/applications/luci-app-banip/luasrc/controller/banip.lua @@ -1,4 +1,4 @@ --- Copyright 2018 Dirk Brenken (dev@brenken.org) +-- Copyright 2018-2019 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 module("luci.controller.banip", package.seeall) @@ -30,8 +30,8 @@ function index() end function ban_action(name) - if name == "do_refresh" then - luci.sys.call("/etc/init.d/banip start >/dev/null 2>&1") + if name == "do_reload" then + luci.sys.call("/etc/init.d/banip reload >/dev/null 2>&1") end luci.http.prepare_content("text/plain") luci.http.write("0") diff --git a/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua b/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua index 53353175ef..b802f4d4b5 100644 --- a/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua +++ b/applications/luci-app-banip/luasrc/model/cbi/banip/overview_tab.lua @@ -1,4 +1,4 @@ --- Copyright 2018 Dirk Brenken (dev@brenken.org) +-- Copyright 2018-2019 Dirk Brenken (dev@brenken.org) -- This is free software, licensed under the Apache License, Version 2.0 local fs = require("nixio.fs") @@ -99,96 +99,112 @@ e = m:section(NamedSection, "extra", "banip", translate("Extra Options"), e1 = e:option(Flag, "ban_debug", translate("Verbose Debug Logging"), translate("Enable verbose debug logging in case of any processing error.")) -e1.default = e1.disabled e1.rmempty = false e2 = e:option(Flag, "ban_nice", translate("Low Priority Service"), translate("Set the nice level to 'low priority' and banIP background processing will take less resources from the system. ") ..translate("This change requires a manual service stop/re-start to take effect.")) -e2.default = e2.disabled e2.disabled = "0" e2.enabled = "10" e2.rmempty = false -e3 = e:option(Value, "ban_maxqueue", translate("Max. Download Queue"), +e3 = e:option(Flag, "ban_backup", translate("Enable Blocklist Backup"), + translate("Create compressed blocklist backups, they will be used in case of download errors or during startup in 'backup mode'.")) +e3.rmempty = false + +e4 = e:option(Value, "ban_backupdir", translate("Backup Directory"), + translate("Target directory for banIP backups. Please use preferably a non-volatile disk, e.g. an external usb stick.")) +e4:depends("ban_backup", 1) +e4.datatype = "directory" +e4.default = "/mnt" +e4.rmempty = true + +e5 = e:option(Flag, "ban_backupboot", translate("Backup Mode"), + translate("Do not automatically update blocklists during startup, use their backups instead.")) +e5:depends("ban_backup", 1) +e5.rmempty = true + +e6 = e:option(Value, "ban_maxqueue", translate("Max. Download Queue"), translate("Size of the download queue to handle downloads & IPset processing in parallel (default '8'). ") .. translate("For further performance improvements you can raise this value, e.g. '16' or '32' should be safe.")) -e3.default = 8 -e3.datatype = "range(1,32)" -e3.rmempty = false +e6.default = 8 +e6.datatype = "range(1,32)" +e6.rmempty = false -e4 = e:option(Value, "ban_triggerdelay", translate("Trigger Delay"), - translate("Additional trigger delay in seconds before banIP processing begins.")) -e4.default = 2 -e4.datatype = "range(1,60)" -e4.optional = true +-- Optional Extra Options -e5 = e:option(Value, "ban_fetchparm", translate("Download Options"), - translate("Special options for the selected download utility, e.g. '--timeout=20 --no-check-certificate -O'.")) -e5.optional = true - -e10 = e:option(Value, "ban_wan_input_chain", translate("WAN Input Chain IPv4")) -e10.default = "input_wan_rule" -e10.datatype = "uciname" -e10.optional = true - -e11 = e:option(Value, "ban_wan_forward_chain", translate("WAN Forward Chain IPv4")) -e11.default = "forwarding_wan_rule" -e11.datatype = "uciname" -e11.optional = true - -e12 = e:option(Value, "ban_lan_input_chain", translate("LAN Input Chain IPv4")) -e12.default = "input_lan_rule" -e12.datatype = "uciname" -e12.optional = true - -e13 = e:option(Value, "ban_lan_forward_chain", translate("LAN Forward Chain IPv4")) -e13.default = "forwarding_lan_rule" -e13.datatype = "uciname" -e13.optional = true - -e14 = e:option(ListValue, "ban_target_src", translate("SRC Target IPv4")) -e14:value("REJECT") -e14:value("DROP") -e14.default = "DROP" -e14.optional = true - -e15 = e:option(ListValue, "ban_target_dst", translate("DST Target IPv4")) -e15:value("REJECT") -e15:value("DROP") -e15.default = "REJECT" -e15.optional = true - -e16 = e:option(Value, "ban_wan_input_chain_6", translate("WAN Input Chain IPv6")) -e16.default = "input_wan_rule" -e16.datatype = "uciname" -e16.optional = true - -e17 = e:option(Value, "ban_wan_forward_chain_6", translate("WAN Forward Chain IPv6")) -e17.default = "forwarding_wan_rule" -e17.datatype = "uciname" -e17.optional = true - -e18 = e:option(Value, "ban_lan_input_chain_6", translate("LAN Input Chain IPv6")) -e18.default = "input_lan_rule" -e18.datatype = "uciname" -e18.optional = true - -e19 = e:option(Value, "ban_lan_forward_chain_6", translate("LAN Forward Chain IPv6")) -e19.default = "forwarding_lan_rule" -e19.datatype = "uciname" -e19.optional = true - -e20 = e:option(ListValue, "ban_target_src_6", translate("SRC Target IPv6")) -e20:value("REJECT") -e20:value("DROP") -e20.default = "DROP" +e20 = e:option(Value, "ban_triggerdelay", translate("Trigger Delay"), + translate("Additional trigger delay in seconds before banIP processing begins.")) +e20.default = 2 +e20.datatype = "range(1,60)" e20.optional = true -e21 = e:option(ListValue, "ban_target_dst_6", translate("DST Target IPv6")) -e21:value("REJECT") -e21:value("DROP") -e21.default = "REJECT" +e21 = e:option(Value, "ban_fetchparm", translate("Download Options"), + translate("Special options for the selected download utility, e.g. '--timeout=20 --no-check-certificate -O'.")) e21.optional = true +e22 = e:option(Value, "ban_wan_input_chain", translate("WAN Input Chain IPv4")) +e22.default = "input_wan_rule" +e22.datatype = "uciname" +e22.optional = true + +e23 = e:option(Value, "ban_wan_forward_chain", translate("WAN Forward Chain IPv4")) +e23.default = "forwarding_wan_rule" +e23.datatype = "uciname" +e23.optional = true + +e24 = e:option(Value, "ban_lan_input_chain", translate("LAN Input Chain IPv4")) +e24.default = "input_lan_rule" +e24.datatype = "uciname" +e24.optional = true + +e25 = e:option(Value, "ban_lan_forward_chain", translate("LAN Forward Chain IPv4")) +e25.default = "forwarding_lan_rule" +e25.datatype = "uciname" +e25.optional = true + +e26 = e:option(ListValue, "ban_target_src", translate("SRC Target IPv4")) +e26:value("REJECT") +e26:value("DROP") +e26.default = "DROP" +e26.optional = true + +e27 = e:option(ListValue, "ban_target_dst", translate("DST Target IPv4")) +e27:value("REJECT") +e27:value("DROP") +e27.default = "REJECT" +e27.optional = true + +e28 = e:option(Value, "ban_wan_input_chain_6", translate("WAN Input Chain IPv6")) +e28.default = "input_wan_rule" +e28.datatype = "uciname" +e28.optional = true + +e29 = e:option(Value, "ban_wan_forward_chain_6", translate("WAN Forward Chain IPv6")) +e29.default = "forwarding_wan_rule" +e29.datatype = "uciname" +e29.optional = true + +e30 = e:option(Value, "ban_lan_input_chain_6", translate("LAN Input Chain IPv6")) +e30.default = "input_lan_rule" +e30.datatype = "uciname" +e30.optional = true + +e31 = e:option(Value, "ban_lan_forward_chain_6", translate("LAN Forward Chain IPv6")) +e31.default = "forwarding_lan_rule" +e31.datatype = "uciname" +e31.optional = true + +e32 = e:option(ListValue, "ban_target_src_6", translate("SRC Target IPv6")) +e32:value("REJECT") +e32:value("DROP") +e32.default = "DROP" +e32.optional = true + +e33 = e:option(ListValue, "ban_target_dst_6", translate("DST Target IPv6")) +e33:value("REJECT") +e33:value("DROP") +e33.default = "REJECT" +e33.optional = true + return m diff --git a/applications/luci-app-banip/luasrc/view/banip/runtime.htm b/applications/luci-app-banip/luasrc/view/banip/runtime.htm index 08ef90399d..410528130c 100644 --- a/applications/luci-app-banip/luasrc/view/banip/runtime.htm +++ b/applications/luci-app-banip/luasrc/view/banip/runtime.htm @@ -1,5 +1,5 @@ <%# -Copyright 2018 Dirk Brenken (dev@brenken.org) +Copyright 2018-2019 Dirk Brenken (dev@brenken.org) This is free software, licensed under the Apache License, Version 2.0 -%> @@ -13,8 +13,8 @@ This is free software, licensed under the Apache License, Version 2.0 var view = document.getElementById("value_1"); var input = json.data.status; - btn1.value = "<%:Refresh%>"; - btn1.name = "do_refresh"; + btn1.value = "<%:Reload%>"; + btn1.name = "do_reload"; view.innerHTML = input || "-"; if (input != "running") { @@ -121,9 +121,9 @@ function btn_action(action) </div> <hr /> <div class="cbi-value" id="button_1"> - <label class="cbi-value-title" for="button_1"><%:Refresh IPSets%></label> + <label class="cbi-value-title" for="button_1"><%:Reload IPSets%></label> <div class="cbi-value-field"> - <input class="cbi-button cbi-button-apply" id="btn1" type="button" name="do_refresh" value="<%:Refresh%>" onclick="btn_action(this)" /> + <input class="cbi-button cbi-button-apply" id="btn1" type="button" name="do_reload" value="<%:Reload%>" onclick="btn_action(this)" /> <span id="btn1_running" class="btn_running"></span> </div> </div> diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua index 9dc0857509..2f06200146 100644 --- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/global.lua @@ -28,7 +28,7 @@ local ns = m:section( NamedSection, "global", "ddns", .. [[<br /><strong>]] .. translate("It is NOT recommended for casual users to change settings on this page.") .. [[</strong><br />]] - .. [[<a href="http://wiki.openwrt.org/doc/uci/ddns#version_2x1" target="_blank">]] + .. [[<a href="https://openwrt.org/docs/guide-user/base-system/ddns#section_ddns" target="_blank">]] .. translate("For detailed information about parameter settings look here.") .. [[</a>]] ) diff --git a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua index 419201548b..290ef516ad 100644 --- a/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua +++ b/applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua @@ -27,7 +27,7 @@ s = m:section( SimpleSection, -- ddns-scripts needs to be updated for full functionality if not CTRL.service_ok() then local so = s:option(DummyValue, "_update_needed") - so.titleref = DISP.build_url("admin", "system", "packages") + so.titleref = DISP.build_url("admin", "system", "opkg") so.rawhtml = true so.title = font_red .. bold_on .. translate("Software update required") .. bold_off .. font_off @@ -62,7 +62,7 @@ end -- No HTTPS support if not DDNS.env_info("has_ssl") then local sl = s:option(DummyValue, "_no_https") - sl.titleref = DISP.build_url("admin", "system", "packages") + sl.titleref = DISP.build_url("admin", "system", "opkg") sl.rawhtml = true sl.title = bold_on .. translate("HTTPS not supported") .. bold_off @@ -76,7 +76,7 @@ end -- No bind_network if not DDNS.env_info("has_bindnet") then local bn = s:option(DummyValue, "_no_bind_network") - bn.titleref = DISP.build_url("admin", "system", "packages") + bn.titleref = DISP.build_url("admin", "system", "opkg") bn.rawhtml = true bn.title = bold_on .. translate("Binding to a specific network not supported") .. bold_off @@ -92,7 +92,7 @@ end -- currently only cURL possibly without proxy support if not DDNS.env_info("has_proxy") then local px = s:option(DummyValue, "_no_proxy") - px.titleref = DISP.build_url("admin", "system", "packages") + px.titleref = DISP.build_url("admin", "system", "opkg") px.rawhtml = true px.title = bold_on .. translate("cURL without Proxy Support") .. bold_off @@ -106,7 +106,7 @@ end -- "Force IP Version not supported" if not DDNS.env_info("has_forceip") then local fi = s:option(DummyValue, "_no_force_ip") - fi.titleref = DISP.build_url("admin", "system", "packages") + fi.titleref = DISP.build_url("admin", "system", "opkg") fi.rawhtml = true fi.title = bold_on .. translate("Force IP Version not supported") .. bold_off @@ -126,7 +126,7 @@ end -- "DNS requests via TCP not supported" if not DDNS.env_info("has_bindhost") then local dt = s:option(DummyValue, "_no_dnstcp") - dt.titleref = DISP.build_url("admin", "system", "packages") + dt.titleref = DISP.build_url("admin", "system", "opkg") dt.rawhtml = true dt.title = bold_on .. translate("DNS requests via TCP not supported") .. bold_off @@ -139,7 +139,7 @@ end -- nslookup compiled with musl produce problems when using if not DDNS.env_info("has_dnsserver") then local ds = s:option(DummyValue, "_no_dnsserver") - ds.titleref = DISP.build_url("admin", "system", "packages") + ds.titleref = DISP.build_url("admin", "system", "opkg") ds.rawhtml = true ds.title = bold_on .. translate("Using specific DNS Server not supported") .. bold_off @@ -153,7 +153,7 @@ end -- certificates installed if DDNS.env_info("has_ssl") and not DDNS.env_info("has_cacerts") then local ca = s:option(DummyValue, "_no_certs") - ca.titleref = DISP.build_url("admin", "system", "packages") + ca.titleref = DISP.build_url("admin", "system", "opkg") ca.rawhtml = true ca.title = bold_on .. translate("No certificates found") .. bold_off diff --git a/applications/luci-app-ddns/luasrc/tools/ddns.lua b/applications/luci-app-ddns/luasrc/tools/ddns.lua index 6f0c7f0952..be7f3eeff4 100755 --- a/applications/luci-app-ddns/luasrc/tools/ddns.lua +++ b/applications/luci-app-ddns/luasrc/tools/ddns.lua @@ -21,7 +21,7 @@ function env_info(type) end local function has_curlssl() - return (SYS.call( [[$(which curl) -V 2>&1 | grep "Protocols:" | grep -qF "https"]] ) ~= 0) + return (SYS.call( [[$(which curl) -V 2>&1 | grep -qF "https"]] ) == 0) end local function has_fetch() @@ -103,7 +103,7 @@ function env_info(type) end local function has_nslookup() - return (SYS.call( [[$(which nslookup) localhost 2>&1 | grep -qF "(null)"]] ) ~= 0) + return (SYS.call( [[which nslookup >/dev/null 2>&1]] ) == 0) end if type == "has_bindhost" then diff --git a/applications/luci-app-ddns/po/ru/ddns.po b/applications/luci-app-ddns/po/ru/ddns.po index 4e082cc85e..4381b95db6 100644 --- a/applications/luci-app-ddns/po/ru/ddns.po +++ b/applications/luci-app-ddns/po/ru/ddns.po @@ -3,7 +3,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: LuCI: ddns\n" "POT-Creation-Date: 2017-10-17 21:00+0300\n" -"PO-Revision-Date: 2018-07-20 03:03+0300\n" +"PO-Revision-Date: 2019-01-15 02:27+0300\n" "Language-Team: http://cyber-place.ru\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" @@ -67,7 +67,7 @@ msgstr "Привязать сеть" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1124 #: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:82 msgid "Binding to a specific network not supported" -msgstr "Привязка к определенной сети, не поддерживается." +msgstr "Привязка к определенной сети не поддерживается" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/hints.lua:113 msgid "" @@ -170,7 +170,7 @@ msgstr "Автостарт DDNS отключен" #: applications/luci-app-ddns/luasrc/controller/ddns.lua:74 msgid "DDNS Client Configuration" -msgstr "Настройка клиента DDNS." +msgstr "Настройка клиента DDNS" #: applications/luci-app-ddns/luasrc/controller/ddns.lua:70 msgid "DDNS Client Documentation" @@ -287,7 +287,7 @@ msgstr "Ошибка" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1425 msgid "Error Retry Counter" -msgstr "Учет попыток повтора при ошибке" +msgstr "Счётчик попыток повтора при ошибке" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1443 msgid "Error Retry Interval" @@ -344,7 +344,7 @@ msgstr "Назначить интервал" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1205 msgid "Force TCP on DNS" -msgstr "Выбрать протокол TCP для DNS" +msgstr "Использовать протокол TCP для DNS" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1189 #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1264 @@ -632,13 +632,13 @@ msgstr "" msgid "On Error the script will retry the failed action after given time" msgstr "" "В случае ошибки, скрипт повторит требуемые действия по истечении заданного " -"времени." +"времени" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1426 msgid "On Error the script will stop execution after given number of retrys" msgstr "" "В случае ошибки, скрипт прекратит выполнение после заданного количества " -"повторных попыток." +"повторных попыток" #: applications/luci-app-ddns/luasrc/controller/ddns.lua:68 msgid "OpenWrt Wiki" @@ -713,15 +713,15 @@ msgstr "Зарегистрированный IP-адрес" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:480 msgid "Replaces [DOMAIN] in Update-URL" -msgstr "Заменяет [ДОМЕН] в Update-URL" +msgstr "Заменяет [DOMAIN] в Update-URL" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:503 msgid "Replaces [PASSWORD] in Update-URL (URL-encoded)" -msgstr "Заменяет [ПАРОЛЬ] в Update-URL (URL-encoded)" +msgstr "Заменяет [PASSWORD] в Update-URL (URL-encoded)" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:492 msgid "Replaces [USERNAME] in Update-URL (URL-encoded)" -msgstr "Заменяет [ЛОГИН] in Update-URL (URL-encoded)" +msgstr "Заменяет [USERNAME] в Update-URL (URL-encoded)" #: applications/luci-app-ddns/luasrc/controller/ddns.lua:188 #: applications/luci-app-ddns/luasrc/model/cbi/ddns/overview.lua:213 @@ -1108,9 +1108,3 @@ msgstr "нетипичная ошибка" #: applications/luci-app-ddns/luasrc/model/cbi/ddns/detail.lua:1176 msgid "use hostname, FQDN, IPv4- or IPv6-Address" msgstr "использовать имя хоста, полное доменное имя, IPv4 или IPv6-адрес" - -#~ msgid "Config error" -#~ msgstr "Ошибка config файла" - -#~ msgid "Update error" -#~ msgstr "Ошибка обновления" diff --git a/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua b/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua index 8f0e3224b4..967110fbf8 100644 --- a/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua +++ b/applications/luci-app-dnscrypt-proxy/luasrc/model/cbi/dnscrypt-proxy/overview_tab.lua @@ -59,7 +59,7 @@ m = Map("dnscrypt-proxy", translate("DNSCrypt-Proxy"), translate("Configuration of the DNSCrypt-Proxy package. ") .. translatef("For further information " .. "<a href=\"%s\" target=\"_blank\">" - .. "see the wiki online</a>", "https://wiki.openwrt.org/inbox/dnscrypt")) + .. "see the wiki online</a>", "https://openwrt.org/docs/guide-user/services/dns/dnscrypt")) m:chain("dhcp") function m.on_after_commit(self) @@ -146,7 +146,7 @@ if not fs.access("/etc/resolv-crypt.conf") or fs.stat("/etc/resolv-crypt.conf"). translate("Create '/etc/resolv-crypt.conf' with 'options timeout:1' to reduce DNS upstream timeouts with multiple DNSCrypt instances.<br />") .. translatef("For further information " .. "<a href=\"%s\" target=\"_blank\">" - .. "see the wiki online</a>", "https://wiki.openwrt.org/inbox/dnscrypt")) + .. "see the wiki online</a>", "https://openwrt.org/docs/guide-user/services/dns/dnscrypt")) btn2.inputtitle = translate("Create Config File") btn2.inputstyle = "apply" btn2.disabled = false diff --git a/applications/luci-app-https_dns_proxy/po/zh-cn/https_dns_proxy.po b/applications/luci-app-https_dns_proxy/po/zh-cn/https_dns_proxy.po new file mode 100644 index 0000000000..91a45b025b --- /dev/null +++ b/applications/luci-app-https_dns_proxy/po/zh-cn/https_dns_proxy.po @@ -0,0 +1,56 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-03 22:46+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:41 +msgid "Group name" +msgstr "组名称" + +#: applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua:6 +msgid "HTTPS DNS Proxy" +msgstr "HTTPS DNS 代理" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:3 +msgid "HTTPS DNS Proxy Settings" +msgstr "HTTPS DNS 代理设置" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:6 +msgid "Instances" +msgstr "实例" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:28 +msgid "Listen address" +msgstr "监听地址" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:32 +msgid "Listen port" +msgstr "监听端口" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:12 +msgid "Provider" +msgstr "提供商" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:49 +msgid "Proxy server" +msgstr "代理服务器" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:45 +msgid "Subnet address" +msgstr "子网地址" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:37 +msgid "User name" +msgstr "用户名" diff --git a/applications/luci-app-https_dns_proxy/po/zh-tw/https_dns_proxy.po b/applications/luci-app-https_dns_proxy/po/zh-tw/https_dns_proxy.po new file mode 100644 index 0000000000..7d893fcf86 --- /dev/null +++ b/applications/luci-app-https_dns_proxy/po/zh-tw/https_dns_proxy.po @@ -0,0 +1,56 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-03 22:46+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_TW\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:41 +msgid "Group name" +msgstr "組名稱" + +#: applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua:6 +msgid "HTTPS DNS Proxy" +msgstr "HTTPS DNS 代理" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:3 +msgid "HTTPS DNS Proxy Settings" +msgstr "HTTPS DNS 代理設定" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:6 +msgid "Instances" +msgstr "例項" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:28 +msgid "Listen address" +msgstr "監聽位址" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:32 +msgid "Listen port" +msgstr "監聽埠" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:12 +msgid "Provider" +msgstr "提供商" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:49 +msgid "Proxy server" +msgstr "代理伺服器" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:45 +msgid "Subnet address" +msgstr "子網位址" + +#: applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua:37 +msgid "User name" +msgstr "使用者名稱" diff --git a/applications/luci-app-lxc/luasrc/controller/lxc.lua b/applications/luci-app-lxc/luasrc/controller/lxc.lua index d16e532d37..9432110104 100644 --- a/applications/luci-app-lxc/luasrc/controller/lxc.lua +++ b/applications/luci-app-lxc/luasrc/controller/lxc.lua @@ -152,6 +152,7 @@ function lxc_get_arch_target(url) armv6 = "armel", armv7 = "armhf", armv8 = "arm64", + aarch64 = "arm64", i686 = "i386", x86_64 = "amd64" } diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua index f54b6e76c3..b71c2886a1 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua @@ -3,7 +3,7 @@ local net = require "luci.model.network".init() -local s, m, mask, rtmon, rtlookup +local s, m, mask, rtmon, rtlookup, logging, loglevel m = Map("mwan3", translate("MWAN - Globals")) @@ -17,6 +17,27 @@ mask = s:option( mask.datatype = "hex(4)" mask.default = "0xff00" +logging = s:option(Flag, + "logging", + translate("Logging"), + translate("Enables global firewall logging")) + +loglevel = s:option( + ListValue, + "loglevel", + translate("Loglevel"), + translate("Firewall loglevel")) +loglevel.default = "notice" +loglevel:value("emerg", translate("Emergency")) +loglevel:value("alert", translate("Alert")) +loglevel:value("crit", translate("Critical")) +loglevel:value("error", translate("Error")) +loglevel:value("warning", translate("Warning")) +loglevel:value("notice", translate("Notice")) +loglevel:value("info", translate("Info")) +loglevel:value("debug", translate("Debug")) +loglevel:depends("logging", "1") + rtmon = s:option( Value, "rtmon_interval", diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua index 162b388d17..dad709ede9 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua @@ -2,9 +2,11 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -uci = require "uci" +local dsp = require "luci.dispatcher" +local uci = require "uci" +local m, mwan_interface, enabled, track_method, reliability, interval +local down, up, metric function interfaceWarnings(overview, count, iface_max) local warnings = "" @@ -134,10 +136,10 @@ function configCheck() return overview, count, iface_max end -m5 = Map("mwan3", translate("MWAN - Interfaces"), +m = Map("mwan3", translate("MWAN - Interfaces"), interfaceWarnings(configCheck())) -mwan_interface = m5:section(TypedSection, "interface", nil, +mwan_interface = m:section(TypedSection, "interface", nil, translate("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 />" .. @@ -151,7 +153,7 @@ mwan_interface.template = "cbi/tblsection" mwan_interface.extedit = dsp.build_url("admin", "network", "mwan", "interface", "%s") function mwan_interface.create(self, section) TypedSection.create(self, section) - m5.uci:save("mwan3") + m.uci:save("mwan3") luci.http.redirect(dsp.build_url("admin", "network", "mwan", "interface", section)) end @@ -237,4 +239,4 @@ function metric.cfgvalue(self, s) end end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua index 4c970d4fa1..c8f6104ea1 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua @@ -2,14 +2,20 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -arg[1] = arg[1] or "" +local dsp = require "luci.dispatcher" + +local m, mwan_interface, enabled, initial_state, family, track_ip +local track_method, reliability, count, size, max_ttl +local check_quality, failure_latency, failure_loss, recovery_latency +local recovery_loss, timeout, interval, failure +local keep_failure, recovery, down, up, flush, metric +arg[1] = arg[1] or "" -m5 = Map("mwan3", translatef("MWAN Interface Configuration - %s", arg[1])) - m5.redirect = dsp.build_url("admin", "network", "mwan", "interface") +m = Map("mwan3", translatef("MWAN Interface Configuration - %s", arg[1])) +m.redirect = dsp.build_url("admin", "network", "mwan", "interface") -mwan_interface = m5:section(NamedSection, arg[1], "interface", "") +mwan_interface = m:section(NamedSection, arg[1], "interface", "") mwan_interface.addremove = false mwan_interface.dynamic = false @@ -249,4 +255,4 @@ function metric.cfgvalue(self, s) end end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua index 9b4ab102d5..4125aae0be 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua @@ -2,12 +2,13 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" +local dsp = require "luci.dispatcher" +local m, mwan_member, interface, metric, weight -m5 = Map("mwan3", translate("MWAN - Members")) +m = Map("mwan3", translate("MWAN - Members")) -mwan_member = m5:section(TypedSection, "member", nil, +mwan_member = m:section(TypedSection, "member", nil, translate("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")) @@ -19,7 +20,7 @@ mwan_member.template = "cbi/tblsection" mwan_member.extedit = dsp.build_url("admin", "network", "mwan", "member", "%s") function mwan_member.create(self, section) TypedSection.create(self, section) - m5.uci:save("mwan3") + m.uci:save("mwan3") luci.http.redirect(dsp.build_url("admin", "network", "mwan", "member", section)) end @@ -41,4 +42,4 @@ function weight.cfgvalue(self, s) return self.map:get(s, "weight") or "1" end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua index 27d9a3e858..3464ebfc92 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua @@ -2,19 +2,21 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -arg[1] = arg[1] or "" +local dsp = require "luci.dispatcher" + +local m, mwan_member, interface, metric, weight +arg[1] = arg[1] or "" -m5 = Map("mwan3", translatef("MWAN Member Configuration - %s", arg[1])) -m5.redirect = dsp.build_url("admin", "network", "mwan", "member") +m = Map("mwan3", translatef("MWAN Member Configuration - %s", arg[1])) +m.redirect = dsp.build_url("admin", "network", "mwan", "member") -mwan_member = m5:section(NamedSection, arg[1], "member", "") +mwan_member = m:section(NamedSection, arg[1], "member", "") mwan_member.addremove = false mwan_member.dynamic = false interface = mwan_member:option(Value, "interface", translate("Interface")) -m5.uci:foreach("mwan3", "interface", +m.uci:foreach("mwan3", "interface", function(s) interface:value(s['.name'], s['.name']) end @@ -28,4 +30,4 @@ weight = mwan_member:option(Value, "weight", translate("Weight"), translate("Acceptable values: 1-1000. Defaults to 1 if not set")) weight.datatype = "range(1, 1000)" -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua index 4c6e21003e..ff1d338eee 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua @@ -4,12 +4,13 @@ local fs = require "nixio.fs" local ut = require "luci.util" -script = "/etc/mwan3.user" +local script = "/etc/mwan3.user" +local m, f, t -m5 = SimpleForm("luci", translate("MWAN - Notification")) +m = SimpleForm("luci", translate("MWAN - Notification")) -f = m5:section(SimpleSection, nil, +f = m:section(SimpleSection, nil, translate("This section allows you to modify the content of \"/etc/mwan3.user\".<br />" .. "The file is also preserved during sysupgrade.<br />" .. "<br />" .. @@ -42,4 +43,4 @@ function t.write(self, section, data) return fs.writefile(script, ut.trim(data:gsub("\r\n", "\n")) .. "\n") end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua index 4543260f6f..c2f47d6b21 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua @@ -2,9 +2,10 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -uci = require "uci" +local dsp = require "luci.dispatcher" +local uci = require "uci" +local m, mwan_policy, use_member, last_resort function policyCheck() local policy_error = {} @@ -34,10 +35,10 @@ function policyError(policy_error) return warnings end -m5 = Map("mwan3", translate("MWAN - Policies"), +m = Map("mwan3", translate("MWAN - Policies"), policyError(policyCheck())) -mwan_policy = m5:section(TypedSection, "policy", nil, +mwan_policy = m:section(TypedSection, "policy", nil, translate("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 />" .. @@ -53,7 +54,7 @@ mwan_policy.template = "cbi/tblsection" mwan_policy.extedit = dsp.build_url("admin", "network", "mwan", "policy", "%s") function mwan_policy.create(self, section) TypedSection.create(self, section) - m5.uci:save("mwan3") + m.uci:save("mwan3") luci.http.redirect(dsp.build_url("admin", "network", "mwan", "policy", section)) end @@ -84,4 +85,4 @@ function last_resort.cfgvalue(self, s) end end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua index d1a063d093..8e5a3fa950 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua @@ -2,19 +2,21 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -arg[1] = arg[1] or "" +local dsp = require "luci.dispatcher" + +local m, mwan_policy, member, last_resort +arg[1] = arg[1] or "" -m5 = Map("mwan3", translatef("MWAN Policy Configuration - %s", arg[1])) -m5.redirect = dsp.build_url("admin", "network", "mwan", "policy") +m = Map("mwan3", translatef("MWAN Policy Configuration - %s", arg[1])) +m.redirect = dsp.build_url("admin", "network", "mwan", "policy") -mwan_policy = m5:section(NamedSection, arg[1], "policy", "") +mwan_policy = m:section(NamedSection, arg[1], "policy", "") mwan_policy.addremove = false mwan_policy.dynamic = false member = mwan_policy:option(DynamicList, "use_member", translate("Member used")) -m5.uci:foreach("mwan3", "member", +m.uci:foreach("mwan3", "member", function(s) member:value(s['.name'], s['.name']) end @@ -27,4 +29,4 @@ last_resort:value("unreachable", translate("unreachable (reject)")) last_resort:value("blackhole", translate("blackhole (drop)")) last_resort:value("default", translate("default (use main routing table)")) -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua index f0b94bd0bb..a197930a48 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua @@ -2,9 +2,10 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" -uci = require "uci" +local dsp = require "luci.dispatcher" +local uci = require "uci" +local m, mwan_rule, src_ip, src_port, dest_ip, dest_port, proto, use_policy function ruleCheck() local rule_error = {} @@ -38,11 +39,11 @@ function ruleWarn(rule_error) return warnings end -m5 = Map("mwan3", translate("MWAN - Rules"), +m = Map("mwan3", translate("MWAN - Rules"), ruleWarn(ruleCheck()) ) -mwan_rule = m5:section(TypedSection, "rule", nil, +mwan_rule = m:section(TypedSection, "rule", nil, translate("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 />" .. @@ -61,7 +62,7 @@ mwan_rule.template = "cbi/tblsection" mwan_rule.extedit = dsp.build_url("admin", "network", "mwan", "rule", "%s") function mwan_rule.create(self, section) TypedSection.create(self, section) - m5.uci:save("mwan3") + m.uci:save("mwan3") luci.http.redirect(dsp.build_url("admin", "network", "mwan", "rule", section)) end @@ -101,4 +102,4 @@ function use_policy.cfgvalue(self, s) return self.map:get(s, "use_policy") or "—" end -return m5 +return m diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua index 84adfcf910..3643e37ec5 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua @@ -2,14 +2,20 @@ -- Copyright 2018 Florian Eckert <fe@dev.tdt.de> -- Licensed to the public under the GNU General Public License v2. -dsp = require "luci.dispatcher" +local dsp = require "luci.dispatcher" +local util = require("luci.util") + +local m, mwan_rule, src_ip, src_port, dest_ip, dest_port, proto, sticky +local timeout, ipset, logging, policy + arg[1] = arg[1] or "" +local ipsets = util.split(util.trim(util.exec("ipset -n -L 2>/dev/null | grep -v mwan3_ | sort")), "\n", nil, true) or {} -m5 = Map("mwan3", translatef("MWAN Rule Configuration - %s", arg[1])) -m5.redirect = dsp.build_url("admin", "network", "mwan", "rule") +m = Map("mwan3", translatef("MWAN Rule Configuration - %s", arg[1])) +m.redirect = dsp.build_url("admin", "network", "mwan", "rule") -mwan_rule = m5:section(NamedSection, arg[1], "rule", "") +mwan_rule = m:section(NamedSection, arg[1], "rule", "") mwan_rule.addremove = false mwan_rule.dynamic = false @@ -49,9 +55,15 @@ timeout.datatype = "range(1, 1000000)" ipset = mwan_rule:option(Value, "ipset", translate("IPset"), translate("Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/youtube.com/youtube\")")) +for _, z in ipairs(ipsets) do + ipset:value(z) +end + +logging = mwan_rule:option(Flag, "logging", translate("Logging"), + translate("Enables firewall rule logging (global mwan3 logging must also be enabled)")) policy = mwan_rule:option(Value, "use_policy", translate("Policy assigned")) -m5.uci:foreach("mwan3", "policy", +m.uci:foreach("mwan3", "policy", function(s) policy:value(s['.name'], s['.name']) end @@ -60,4 +72,4 @@ policy:value("unreachable", translate("unreachable (reject)")) policy:value("blackhole", translate("blackhole (drop)")) policy:value("default", translate("default (use main routing table)")) -return m5 +return m diff --git a/applications/luci-app-mwan3/po/de/mwan3.po b/applications/luci-app-mwan3/po/de/mwan3.po index ffc0ea72e2..18a09e43cf 100644 --- a/applications/luci-app-mwan3/po/de/mwan3.po +++ b/applications/luci-app-mwan3/po/de/mwan3.po @@ -1,73 +1,73 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8\n" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 Stunde" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 Minute" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 Minuten" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 Sekunde" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 Sekunden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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" @@ -75,19 +75,23 @@ msgstr "" "Gültige Werte: 1-100. Diese Anzahl an Tracking-IP-Adressen müssen antworten, " "damit die Schnittstelle als aktiv angesehen wird" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "Gültige Werte: 1-1000. Standard auf 1, falls nicht gesetzt" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "Akzeptable Werte: 1-256. Standardwert ist 1, wenn nicht gesetzt" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "Alle erforderlichen IP-Regeln für die Schnittstelle %s gefunden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" msgstr "Auch diese Routing-Tabelle für verbundene Netzwerke scannen" @@ -95,7 +99,7 @@ msgstr "Auch diese Routing-Tabelle für verbundene Netzwerke scannen" msgid "Check IP rules" msgstr "Prüfen der IP-Regeln" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "Linkqualität prüfen" @@ -103,19 +107,27 @@ msgstr "Linkqualität prüfen" msgid "Check routing table" msgstr "Prüfen der Routing-Tabelle" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "Sammle Daten..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "Zieladresse" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "Zielport" @@ -133,47 +145,68 @@ msgstr "" msgid "Diagnostics" msgstr "Diagnose" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "Deaktiviert" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "" "Eine als offline markierte Schnittstelle wird nach dieser Anzahl " "erfolgreicher Tracking-Runden als online angesehen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "Aktiviert" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "Fehler beim Sammeln von Informationen zur Fehlerbehebung" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "Ausführen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "Erwarteter Schnittstellen status beim up event" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "Fehler-Intervall" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "Firewall-Maske" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "Conntrack-Tabelle leeren" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" msgstr "Leere Global-Firewall-Conntrack-Table bei Schnittstellen-Events" @@ -189,9 +222,11 @@ msgstr "Hotplug ifdown" msgid "Hotplug ifup" msgstr "Hotplug ifup" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" -msgstr "Zeit interval wie oft rtmon die Routing-Tabelle der Schnittstelle aktualisiert" +msgstr "" +"Zeit interval wie oft rtmon die Routing-Tabelle der Schnittstelle " +"aktualisiert" #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:29 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:56 @@ -199,25 +234,29 @@ msgstr "Zeit interval wie oft rtmon die Routing-Tabelle der Schnittstelle aktual msgid "INFO: MWAN not running" msgstr "INFO: MWAN läuft nicht" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:56 msgid "IPset" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:33 msgid "IPv4" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "Ausgangszustand" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -226,17 +265,17 @@ msgstr "Ausgangszustand" msgid "Interface" msgstr "Schnittstelle" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "Schnittstelle nicht aktiv" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "Schnittstelle aktiv" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "" "Die Schnittstelle wird nach dieser Anzahl an fehlgeschlagenen Tracking-" @@ -246,20 +285,20 @@ msgstr "" msgid "Interfaces" msgstr "Schnittstellen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "Internet-Protokoll" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "Fehlerintervall beibehalten" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "Ping-Fehlerintervall während des Ausfalls beibehalten" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "Letzter Ausweg" @@ -268,54 +307,63 @@ msgstr "Letzter Ausweg" msgid "Load Balancing" msgstr "Lastverteilung" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "Lade" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "MWAN - Allgemein" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "MWAN - Schnittstellen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "MWAN - Mitglieder" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "MWAN - Benachrichtigung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "MWAN - Richtlinien" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "MWAN - Regeln" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "MWAN-Konfiguration, Schnittstelle - %s" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "MWAN Schnittstellen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "MWAN-Konfiguration, Mitglieder - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "MWAN-Konfiguration, Richtlinien - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "MWAN-Konfiguration, Regeln - %s" @@ -331,7 +379,7 @@ msgstr "MWAN Status - Diagnose" msgid "MWAN Status - Troubleshooting" msgstr "MWAN Status - Fehlerbehebung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -340,28 +388,28 @@ msgid "" ">Interfaces may not share the same name as configured members, policies or " "rules" msgstr "" -"MWAN unterstützt bis zu 252 physische und/oder logische Schnittstellen" -"<br />MWAN erfordert, dass alle Schnittstellen eine eindeutige Metrik haben, " -"die in /etc/config/network konfiguriert sind <br /> Namen müssen mit dem " -"Schnittstellennamen in /etc/config/network übereinstimmen <br /> Namen dürfen " -"Zeichen A-Z, a-z, 0-9, _ enthalten aber keine Leerzeichen<br />Schnittstellen " -"dürfen nicht den gleichen Namen wie konfigurierte Mitglieder, Richtlinien " -"oder Regeln verwenden" +"MWAN unterstützt bis zu 252 physische und/oder logische Schnittstellen<br /" +">MWAN erfordert, dass alle Schnittstellen eine eindeutige Metrik haben, die " +"in /etc/config/network konfiguriert sind <br /> Namen müssen mit dem " +"Schnittstellennamen in /etc/config/network übereinstimmen <br /> Namen " +"dürfen Zeichen A-Z, a-z, 0-9, _ enthalten aber keine Leerzeichen<br /" +">Schnittstellen dürfen nicht den gleichen Namen wie konfigurierte " +"Mitglieder, Richtlinien oder Regeln verwenden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" msgstr "Maximale TTL" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "Maximale Paketlatenzzeit [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "Maximaler Paketverlust [%]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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" @@ -369,11 +417,11 @@ msgstr "" "Kann als einzelner oder mehrfacher Port (z.B. \"22\" oder \"80,443\") oder " "als Port-Range (z.B. \"1024:2048\") ohne Anführungsstriche eingegeben werden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "Mitglied" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "Mitglied, in Verwendung" @@ -381,7 +429,7 @@ msgstr "Mitglied, in Verwendung" msgid "Members" msgstr "Mitglieder" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 " @@ -392,22 +440,22 @@ msgstr "" "z, 0-9, _ und keine Leerzeichen<br />Mitglieder dürfen nicht denselben Namen " "mit konfigurierten Schnittstellen, Richtlinien oder Regeln teilen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "Mitglieder, zugewiesen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "Metrik" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "Minimale Paketlatenzzeit [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "Minimaler Paketverlust [%]" @@ -415,7 +463,7 @@ msgstr "Minimaler Paketverlust [%]" msgid "Missing both IP rules for interface %s" msgstr "Beide IP-Regeln fehlen für die Schnittstelle %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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\")" @@ -423,12 +471,12 @@ msgstr "" "Name der IPset-Regel. Benötigt eine IPset-Regel in /etc/dnsmasq.conf (z.B. " "\"ipset=/youtube.com/youtube\")" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "Nein" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "Keine MWAN-Schnittstellen gefunden" @@ -440,17 +488,21 @@ msgstr "No gateway für Schnittstelle %s gefunden" msgid "No tracking Hosts for interface %s defined." msgstr "Kein Tracking Host für die Schnittstelle %s definiert" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "Benachrichtigung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "" @@ -459,7 +511,7 @@ msgstr "" msgid "Only one IP rules for interface %s found" msgstr "Nur eine IP-Regel für die Schnittstelle %s gefunden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "Ping-Zähler" @@ -467,24 +519,24 @@ msgstr "Ping-Zähler" msgid "Ping default gateway" msgstr "Ping-Standard-Gateway" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "Ping-Intervall" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "Ping-Intervall während Fehlererkennung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "Ping-Intervall während der Wiederherstellung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "Ping-Größe" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "Ping-Timeout" @@ -496,7 +548,7 @@ msgstr "Ping-Tracking-IP" msgid "Policies" msgstr "Richtlinien" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -506,37 +558,37 @@ msgid "" "spaces<br />Names must be 15 characters or less<br />Policies may not share " "the same name as configured interfaces, members or rules" msgstr "" -"Richtlinien sind Profile, die ein oder mehrere Mitglieder gruppieren und MWAN" -"steuern und verteilt den Traffic<br />Mitglieder-Schnittstellen mit " -"niedrigeren Metriken werden als ersters genutzt<br />Mitglieder-Schnittstellen " -"mit der gleichen Metrik werden lastverteilt<br /> Mitglieder-Schnittstellen " -"verteilen mehr Traffic aus denen mit höhere Gewichtung." -"<br />Namen können die Zeichen A-Z, a-z, 0-9, _ und keine Leerzeichen enthalten. " -"<br />Namen müssen 15 Zeichen oder weniger sein" -"<br />Richtlinien dürfen nicht den gleichen Namen wie konfigurierte Schnittstellen, " -"Mitglieder oder Regeln verwenden." - -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +"Richtlinien sind Profile, die ein oder mehrere Mitglieder gruppieren und " +"MWANsteuern und verteilt den Traffic<br />Mitglieder-Schnittstellen mit " +"niedrigeren Metriken werden als ersters genutzt<br />Mitglieder-" +"Schnittstellen mit der gleichen Metrik werden lastverteilt<br /> Mitglieder-" +"Schnittstellen verteilen mehr Traffic aus denen mit höhere Gewichtung.<br /" +">Namen können die Zeichen A-Z, a-z, 0-9, _ und keine Leerzeichen enthalten. " +"<br />Namen müssen 15 Zeichen oder weniger sein<br />Richtlinien dürfen " +"nicht den gleichen Namen wie konfigurierte Schnittstellen, Mitglieder oder " +"Regeln verwenden." + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "Richtlinie" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "Richtlinie, zugewiesen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "Wiederherstellungs-Intervall" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "Routing-Tabelle %d" @@ -548,11 +600,11 @@ msgstr "Routing-Tabelle %s für die Schnittstelle %s gefunden" msgid "Routing table %s for interface %s not found" msgstr "Routing-Tabelle %s für die Schnittstelle %s nicht gefunden" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" msgstr "Routing-Tabelle nachschlagen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "Regel" @@ -560,7 +612,7 @@ msgstr "Regel" msgid "Rules" msgstr "Regeln" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -572,43 +624,43 @@ msgid "" "z, 0-9, _ and no spaces<br />Rules may not share the same name as configured " "interfaces, members or policies" msgstr "" -"Regeln legen fest, welcher Datenverkehr eine bestimmte MWAN-Richtlinie verwendet<br />" -"Regeln basieren auf IP-Adresse, Port oder Protokoll<br />" -"Regeln werden von oben nach unten abgeglichen<br />" -"Regeln unterhalb einer Matching-Regel werden ignoriert<br />" -"Der Datenverkehr, der keiner Regel entspricht, wird über die Hauptroutentabelle geleitet<br />" -"Der Datenverkehr, der für bekannte (nicht Standard) Netzwerke bestimmt ist" -"wird von der Hauptroutinentabelle abgewickelt<br />" -"Der Datenverker, der einer Regel entspricht, wo alle WAN-Schnittstellen für diese " -" Richtlinie nicht verbunden sind, werden verworfen<br />" -"Namen können die Zeichen A-Z, a-z, 0-9, _ und keine Leerzeichen enthalten<br />" -"Regeln dürfen nicht den gleichen Namen wie konfigurierte Schnittstellen, Mitglieder oder Richtlinien verwenden<br />" +"Regeln legen fest, welcher Datenverkehr eine bestimmte MWAN-Richtlinie " +"verwendet<br />Regeln basieren auf IP-Adresse, Port oder Protokoll<br /" +">Regeln werden von oben nach unten abgeglichen<br />Regeln unterhalb einer " +"Matching-Regel werden ignoriert<br />Der Datenverkehr, der keiner Regel " +"entspricht, wird über die Hauptroutentabelle geleitet<br />Der Datenverkehr, " +"der für bekannte (nicht Standard) Netzwerke bestimmt istwird von der " +"Hauptroutinentabelle abgewickelt<br />Der Datenverker, der einer Regel " +"entspricht, wo alle WAN-Schnittstellen für diese Richtlinie nicht verbunden " +"sind, werden verworfen<br />Namen können die Zeichen A-Z, a-z, 0-9, _ und " +"keine Leerzeichen enthalten<br />Regeln dürfen nicht den gleichen Namen wie " +"konfigurierte Schnittstellen, Mitglieder oder Richtlinien verwenden<br />" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "" "Sekunden. Gültige Werte: 1-1000000. Standard bei 600 falls nicht gesetzt" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "Quelladresse" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "Quellport" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "Sticky-Timeout" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "" "Unterstützt CIDR-Schreibweise (z.B. \"192.168.100.0/24\") ohne " @@ -618,18 +670,18 @@ msgstr "" msgid "Task" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "" "Zeigt die Metrik an, die dieser Schnittstelle in /etc/config/network " "zugeordnet ist" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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" @@ -638,7 +690,7 @@ msgstr "" "Link aktiv oder inaktiv ist. Leer lassen, um die Schnittstelle als dauerhaft " "online anzusehen" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -656,37 +708,39 @@ msgid "" "Physical device name which interface went up or down (e.g. \"eth0\" or " "\"wwan0\")<br /><br />" msgstr "" -"Dieser Abschnitt ermöglicht es Ihnen, den Inhalt von \"/etc/mwan3.user\" zu ändern <br />" -"Die Datei bleibt auch während des System-Upgrades erhalten.<br /><br /><br />Anmerkung:<br />Diese " -"Datei wird als Shell-Skript interpretiert.<br />Die erste Zeile des Skripts " -"muss "#!/bin/sh" ohne Anführungszeichen sein.<br />Zeilen, die mit # beginnen, sind " -"Kommentare und werden nicht ausgeführt.<br />Setzen Sie Ihre eigene mwan3-Aktion hier, sie " -"wird bei jedem netifd hotplug interface event ausgeführt<br />" -"für die Schnittstell wo der mwan3 aktiviert ist.<br /><br /><br /><br />Es gibt drei Haupt " -"Umgebungsvariablen, die an dieses Skript übergeben werden.<br /><br /><br />$ACTION " -"<br />* \"ifup\" Wird von netifd und mwan3track ausgeführt<br />* \"ifdown\" Wird " -"von netifd und mwan3track ausgeführt<br />* \"connected\" Wird von " -"mwan3track ausgeführt, wenn das Tracking erfolgreich war <br />* \"disconnected\" Wird " -"von mwan3track ausgeführt, wenn das Tracking fehlgeschlagen ist <br />$INTERFACE Name der " -"Schnittstelle, die up oder down gegangen ist (z.B. \"wan\" oder \"wwan\")<br />$DEVICE " -"Physischer Gerätename, dessen Schnittstelle up oder down gegangen ist (z.B. \"eth0\" oder " -"\"wwan0\")<br /><br /><br />" - -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +"Dieser Abschnitt ermöglicht es Ihnen, den Inhalt von \"/etc/mwan3.user\" zu " +"ändern <br />Die Datei bleibt auch während des System-Upgrades erhalten.<br /" +"><br /><br />Anmerkung:<br />Diese Datei wird als Shell-Skript interpretiert." +"<br />Die erste Zeile des Skripts muss "#!/bin/sh" ohne " +"Anführungszeichen sein.<br />Zeilen, die mit # beginnen, sind Kommentare und " +"werden nicht ausgeführt.<br />Setzen Sie Ihre eigene mwan3-Aktion hier, sie " +"wird bei jedem netifd hotplug interface event ausgeführt<br />für die " +"Schnittstell wo der mwan3 aktiviert ist.<br /><br /><br /><br />Es gibt drei " +"Haupt Umgebungsvariablen, die an dieses Skript übergeben werden.<br /><br /" +"><br />$ACTION <br />* \"ifup\" Wird von netifd und mwan3track " +"ausgeführt<br />* \"ifdown\" Wird von netifd und mwan3track ausgeführt<br /" +">* \"connected\" Wird von mwan3track ausgeführt, wenn das Tracking " +"erfolgreich war <br />* \"disconnected\" Wird von mwan3track ausgeführt, " +"wenn das Tracking fehlgeschlagen ist <br />$INTERFACE Name der " +"Schnittstelle, die up oder down gegangen ist (z.B. \"wan\" oder \"wwan" +"\")<br />$DEVICE Physischer Gerätename, dessen Schnittstelle up oder down " +"gegangen ist (z.B. \"eth0\" oder \"wwan0\")<br /><br /><br />" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "Tracking des Hostnamen oder der IP-Addresse" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "Tracking-Methode" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "Tracking-Sicherheit" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -702,41 +756,41 @@ msgstr "" msgid "Troubleshooting" msgstr "Fehlerbehebung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" msgstr "Aktualisierungsintervall" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "Schaue in der Datei /etc/protocols für Protokollbeschreibung mach" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -746,53 +800,57 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "Warten auf den Abschluss des Befehls..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "Gewichtung" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "" "Sobald alle Mitglieder der Richtlinie offline sind, wird dieses Verhalten " "für passenden Traffic verwendet" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "Ja" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "immer" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "default (Haupt-Routing-Tabelle wird benutzt)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:241 msgid "ifdown" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:222 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:240 msgid "ifup" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "nie" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "unerreichbar (rejectet)" diff --git a/applications/luci-app-mwan3/po/ja/mwan3.po b/applications/luci-app-mwan3/po/ja/mwan3.po index 4c9ad6c185..2988565a2e 100644 --- a/applications/luci-app-mwan3/po/ja/mwan3.po +++ b/applications/luci-app-mwan3/po/ja/mwan3.po @@ -12,73 +12,73 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "Language: ja\n" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 時間" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 分" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 分" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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" @@ -86,19 +86,23 @@ msgstr "" "利用可能な値: 1-100。上記のトラッキング IP の合計個数のうち、Up 状態と判定す" "るためにに必要な、レスポンスが返されたトラッキング IP アドレスの個数です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "利用可能な値: 1-1000。空欄の場合のデフォルトは1です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "利用可能な値: 1-256。空欄の場合のデフォルトは1です。" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "インターフェース %s の全必須 IP ルールが見つかりました" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" msgstr "" "接続されたネットワークのために、追加でスキャンするルーティングテーブルです。" @@ -107,7 +111,7 @@ msgstr "" msgid "Check IP rules" msgstr "IP ルールのチェック" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "リンク品質のチェック" @@ -115,19 +119,27 @@ msgstr "リンク品質のチェック" msgid "Check routing table" msgstr "ルーティング テーブルのチェック" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "データ収集中です..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "宛先アドレス" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "宛先ポート" @@ -145,47 +157,68 @@ msgstr "詳細" msgid "Diagnostics" msgstr "診断機能" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "無効" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "" "Down 状態のインターフェースが Up 状態と判断されるまでに要する ping テストの成" "功回数です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "有効" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "<code>0x</code> で始まる16進数の値を入力してください。" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "実行" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "Up イベント時に予想されるインターフェースの状態です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "障害検出 インターバル" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "ファイアウォール マスク" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "conntrack テーブルのクリア" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" msgstr "" "インターフェース イベント時にグローバル ファイアウォール conntrack テーブルを" @@ -203,7 +236,7 @@ msgstr "ホットプラグ ifdown" msgid "Hotplug ifup" msgstr "ホットプラグ ifup" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" msgstr "rtmon がインターフェース ルーティングテーブルの更新を行う頻度です。" @@ -213,25 +246,29 @@ msgstr "rtmon がインターフェース ルーティングテーブルの更 msgid "INFO: MWAN not running" msgstr "情報: MWAN は実行されていません" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: 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:27 +#: 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:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "初期状態" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -240,17 +277,17 @@ msgstr "初期状態" msgid "Interface" msgstr "インターフェース" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "インターフェース Down" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "インターフェース Up" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "" "インターフェースが Down 状態と判断されるまでに要する ping テストの失敗回数で" @@ -260,20 +297,20 @@ msgstr "" msgid "Interfaces" msgstr "インターフェース" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "インターネット プロトコル" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "最終手段" @@ -282,54 +319,63 @@ msgstr "最終手段" msgid "Load Balancing" msgstr "負荷分散" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "読込中" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "MWAN - グローバル" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "MWAN - インターフェース" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "MWAN - メンバー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "MWAN - 通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "MWAN - ポリシー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "MWAN - ルール" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "MWAN インターフェース設定 - %s" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "MWAN インターフェース" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "MWAN メンバー設定 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "MWAN ポリシー設定 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "MWAN ルール設定 - %s" @@ -345,7 +391,7 @@ msgstr "MWAN ステータス - 診断" msgid "MWAN Status - Troubleshooting" msgstr "MWAN ステータス - トラブルシューティング" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -362,20 +408,20 @@ msgstr "" "スは使用できません。<br />インターフェースには、設定済みのメンバーやポリ" "シー、ルールと同じ名前を使用することはできません。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" msgstr "最大 TTL" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "最大パケットレイテンシ [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "最大パケットロス [%]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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" @@ -383,11 +429,11 @@ msgstr "" "単一または複数のポート(例: \"22\" または \"80,443\")、あるいはポートの範囲" "(例: \"1024:2048\")を、クオーテーション無しで指定することができます。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "メンバー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "使用されるメンバー" @@ -395,7 +441,7 @@ msgstr "使用されるメンバー" msgid "Members" msgstr "メンバー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 " @@ -406,22 +452,22 @@ msgstr "" "は使用できません。<br />メンバーには、設定済みのインターフェースやポリシー、" "ルールと同じ名前を使用することはできません。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "アサイン済みメンバー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "メトリック" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "最小パケットレイテンシ [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "最小パケットロス [%]" @@ -429,7 +475,7 @@ msgstr "最小パケットロス [%]" msgid "Missing both IP rules for interface %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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\")" @@ -437,12 +483,12 @@ msgstr "" "IPset ルールの名前です。このルールは、 /etc/dnsmasq.conf で必要です。(例: " "\"ipset=/youtube.com/youtube\")" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "いいえ" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "MWAN インターフェースが見つかりません" @@ -454,17 +500,21 @@ msgstr "インターフェース %s にゲートウェイが見つかりませ msgid "No tracking Hosts for interface %s defined." msgstr "インターフェース %s にトラッキングホストが指定されていません。" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "オフライン" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "オンライン" @@ -473,7 +523,7 @@ msgstr "オンライン" msgid "Only one IP rules for interface %s found" msgstr "インターフェース %s に IP ルールが一つのみ見つかりました。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "Ping 回数" @@ -481,24 +531,24 @@ msgstr "Ping 回数" msgid "Ping default gateway" msgstr "デフォルト ゲートウェイへのping" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "Ping インターバル" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "障害検出中の Ping 実行間隔です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "障害復旧中の Ping 実行間隔です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "Ping サイズ" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "Ping タイムアウト" @@ -510,7 +560,7 @@ msgstr "トラッキング IP へのping" msgid "Policies" msgstr "ポリシー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -529,27 +579,27 @@ msgstr "" "ん。また、15文字以内でなければなりません。<br />ポリシーでは、設定済みのイン" "ターフェースやメンバー、ルールと同じ名前を使用することはできません。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "ポリシー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "アサイン済みポリシー" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "プロトコル" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "障害復旧 インターバル" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "ルーティングテーブル %d" @@ -561,11 +611,11 @@ msgstr "ルーティングテーブル %s が見つかりました(インタ msgid "Routing table %s for interface %s not found" msgstr "ルーティングテーブル %s が見つかりません(インターフェース %s)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" msgstr "ルーティングテーブルの検索" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "ルール" @@ -573,7 +623,7 @@ msgstr "ルール" msgid "Rules" msgstr "ルール" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -596,30 +646,30 @@ msgstr "" "が、スペースは使用できません<br />ルールは、設定済みのインターフェースやメン" "バー、ポリシーと同じ名前を使用することはできません。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "秒。利用可能な値: 1-1000000。空欄の場合のデフォルト値は600です。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "送信元アドレス" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "送信元ポート" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "Sticky" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "Sticky タイムアウト" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "CIDR 表記のサポート(例: \"192.168.100.0/24\")" @@ -627,17 +677,17 @@ msgstr "CIDR 表記のサポート(例: \"192.168.100.0/24\")" msgid "Task" msgstr "タスク" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "現在、%d 個中 %d 個のサポートされたインターフェースが設定済みです。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "" "/etc/config/network で、このインターフェースに割り当てられたメトリックです。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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" @@ -646,7 +696,7 @@ msgstr "" "に対して Ping の送信が行われます。常にオンラインとする場合、空欄のままにしま" "す。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -680,21 +730,21 @@ msgstr "" "<br />$DEVICE up または down したインターフェースの物理デバイス名(例: " "\"eth0\" や \"wwan0\")<br /><br />" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "トラッキング ホスト名または IP アドレス" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "トラッキング方式" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "トラッキングの信頼性" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -710,28 +760,28 @@ msgstr "" msgid "Troubleshooting" msgstr "トラブルシューティング" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" msgstr "更新間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "プロトコルの説明については、 /etc/protocols の内容を確認してください" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "" "警告: %d 個のインターフェースが、最大個数の %d 個 を超えて設定されています!" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "警告: インターフェース %s が /etc/config/network に見つかりません" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "警告: インターフェース %s に重複するメトリック %s が設定されています" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:38 msgid "" "WARNING: Interface %s has a higher reliability requirement than tracking " "hosts (%d)" @@ -739,17 +789,17 @@ msgstr "" "警告: インターフェース %s はトラッキング ホスト数 (%d) よりも高いトラッキング" "信頼性の値が設定されています" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "" "警告: インターフェース %s はメインのルーティング テーブル内でデフォルトルート" "がありません" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "警告: ポリシー %s の名前は15文字の最大文字数を超えています" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -761,53 +811,57 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "コマンドを実行中です..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "ウエイト" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "" "ポリシーの全メンバーがオフラインの場合、合致したトラフィックに対してこのふる" "まいが使用されます。" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "はい" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "always" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "blackhole (drop)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "デフォルト(メインのルーティング テーブルを使用)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: 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:222 +#: 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:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "never" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "unreachable (reject)" diff --git a/applications/luci-app-mwan3/po/ru/mwan3.po b/applications/luci-app-mwan3/po/ru/mwan3.po index bb5e01eaf5..b48ed441ee 100644 --- a/applications/luci-app-mwan3/po/ru/mwan3.po +++ b/applications/luci-app-mwan3/po/ru/mwan3.po @@ -15,73 +15,73 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 час" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 минута" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 минут" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 секунда" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 секунд" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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" @@ -89,19 +89,23 @@ msgstr "" "Допустимые значения: 1-100. Установите количество ответов IP-адресов. <br /" ">Сколько раз они должны ответить, чтобы соединение было признано активным." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "Допустимые значения: 1-1000. По умолчанию 1, если значение не задано." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "Допустимые значения: 1-256 По умолчанию 1, если значение не задано." +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" msgstr "" @@ -109,7 +113,7 @@ msgstr "" msgid "Check IP rules" msgstr "Проверить правила IP" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "" @@ -117,19 +121,27 @@ msgstr "" msgid "Check routing table" msgstr "Проверить таблицу маршрутизации" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "Сбор данных..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "Адрес назначения" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "Порт назначения" @@ -147,46 +159,67 @@ msgstr "Подробно" msgid "Diagnostics" msgstr "Диагностика" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "Отключено" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "" "Интерфейс будет считаться отключенным, после продолжительных пинг-запросов." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "Включено" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "Введите значение в шестнадцатеричной форме, начиная с <code>0x</code>." +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "Выполнить" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "Ожидание " -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "Интервал отказа" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "Маска межсетевого экрана" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "Сбросьте conntrack таблицу" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" msgstr "" "Сбросьте глобальные настройки межсетевого экрана conntrack таблицы по " @@ -204,7 +237,7 @@ msgstr "Hotplug ifdown" msgid "Hotplug ifup" msgstr "Hotplug ifup" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" msgstr "" @@ -214,25 +247,29 @@ msgstr "" msgid "INFO: MWAN not running" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: 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:27 +#: 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:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "Исходное состояние" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -241,17 +278,17 @@ msgstr "Исходное состояние" msgid "Interface" msgstr "Интерфейс" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "Интерфейс отключить" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "Интерфейс включить" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "" "Интерфейс будут считать отключенным, после данного количества пинг-запросов." @@ -260,20 +297,20 @@ msgstr "" msgid "Interfaces" msgstr "Интерфейсы" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "Протокол интернета" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "Сохранить интервал сбоя" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "Сохранить интервал сбоя пинг-запроса, во время состояния сбоя." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "Последнее средство" @@ -282,54 +319,63 @@ msgstr "Последнее средство" msgid "Load Balancing" msgstr "Балансировка WAN трафика" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "Загрузка" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "MWAN - Общие" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "MWAN - Интерфейсы" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "MWAN - Узлы" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "MWAN - Уведомления" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "MWAN - Политики" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "MWAN - Правила" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "Настройка интерфейсов MWAN - %s" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "MWAN настройка узлов - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "MWAN настройка политики - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "MWAN настройка правил - %s" @@ -345,7 +391,7 @@ msgstr "Состояние MWAN - Диагностика" msgid "MWAN Status - Troubleshooting" msgstr "Состояние MWAN - Устранение неполадок" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -361,20 +407,20 @@ msgstr "" "символы A-Z, a-z, 0-9, _ и пробелы.<br />Интерфейсы не могут иметь " "одинаковые имена с настроенными узлами, политиками или правилами." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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" @@ -382,11 +428,11 @@ msgstr "" "Может быть введено как один или несколько портов (например, '22' или " "'80,443') или как диапазон портов (например, '1024:2048') без кавычек." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "Узел" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "Используемый узел" @@ -394,7 +440,7 @@ msgstr "Используемый узел" msgid "Members" msgstr "Узлы" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 " @@ -404,22 +450,22 @@ msgstr "" "могут содержать символы A-Z, a-z, 0-9, _ и пробелы.<br />Узлы не могут иметь " "одинаковые имена с настроенными интерфейсами, политиками или правилами." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "Назначенные узлы" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "Метрика" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "" @@ -427,7 +473,7 @@ msgstr "" msgid "Missing both IP rules for interface %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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\")" @@ -435,12 +481,12 @@ msgstr "" "Имя IPset правила. Требуется правило IPset в /etc/dnsmasq.conf (например " "\"ipset=/youtube.com/youtube\")." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "Нет" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "Интерфейсы MWAN не найдены" @@ -452,17 +498,21 @@ msgstr "" msgid "No tracking Hosts for interface %s defined." msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "Уведомления" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "Отключен" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "Онлайн" @@ -471,7 +521,7 @@ msgstr "Онлайн" msgid "Only one IP rules for interface %s found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "Кол-во пинг-запросов" @@ -479,24 +529,24 @@ msgstr "Кол-во пинг-запросов" msgid "Ping default gateway" msgstr "Пинг-запрос шлюза по умолчанию" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "Интервал пинг-запроса" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "Интервал пинг-запроса во время обнаружения отказов." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "Интервал пинг-запроса при сбое восстановления." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "Размер пинг-запроса" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "Время ожидания пинг-запроса" @@ -508,7 +558,7 @@ msgstr "Пинг-запрос отслеживания IP" msgid "Policies" msgstr "Политики" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -527,27 +577,27 @@ msgstr "" "<br />Политики не могут иметь одинаковые имена с настроенными интерфейсами, " "узлами или правилами." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "Политика" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "Назначенная политика" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "Интервал восстановления" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "" @@ -559,11 +609,11 @@ msgstr "" msgid "Routing table %s for interface %s not found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "Правило" @@ -571,7 +621,7 @@ msgstr "Правило" msgid "Rules" msgstr "Правила" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -595,32 +645,32 @@ msgstr "" ">Правила не могут иметь одинаковые имена с настроенными интерфейсами, узлами " "или политиками." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "" "Секунд. Допустимые значения: 1-1000000. По умолчанию 600, если значение не " "установлено." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "Адрес источника" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "Порт источника" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "Липкий" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "Липкое значение времени ожидания" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "Поддерживает CIDR нотацию (например '192.168.100.0/24') без кавычек." @@ -628,18 +678,18 @@ msgstr "Поддерживает CIDR нотацию (например '192.168. msgid "Task" msgstr "Задача" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "В настоящее время настроено %d из %d поддерживаемых интерфейсов." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "" "Страница отображает настройки этого интерфейса в config файле network (/etc/" "config/network)." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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" @@ -648,7 +698,7 @@ msgstr "" "соединение или нет.<br />Оставьте пустым, чтобы предположить, что интерфейс " "всегда находится в сети." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -667,21 +717,21 @@ msgid "" "\"wwan0\")<br /><br />" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "Отслеживание имени хоста или IP-адреса" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "Метод отслеживания" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "Надежность отслеживания" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -697,30 +747,30 @@ msgstr "" msgid "Troubleshooting" msgstr "Устранение неполадок" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "Просмотр содержимого файла /etc/protocols для описания протокола." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "" "ВНИМАНИЕ: Интерфейсы %d настроены, превышая установленное ограничение в " "количестве %dшт.!" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "ВНИМАНИЕ: Интерфейс %s не настроен в config файле /etc/config/network." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "" "ВНИМАНИЕ: Интерфейс %s имеет дублирующие метрики настройки %s config файла." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:38 msgid "" "WARNING: Interface %s has a higher reliability requirement than tracking " "hosts (%d)" @@ -728,18 +778,18 @@ msgstr "" "ВНИМАНИЕ: Интерфейс %s имеет более высокое требование надежности, чем узлы " "отслеживания (%d)." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "" "ВНИМАНИЕ: Интерфейс %s не имеет маршрута по умолчанию в основной таблице " "маршрутизации." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "" "ВНИМАНИЕ: Имя политики %s превышает установленное ограничение в 15 символов." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -749,54 +799,58 @@ msgstr "ВНИМАНИЕ: Для правила %s порта не задан п msgid "Waiting for command to complete..." msgstr "Ожидание завершения выполнения команды..." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "Вес" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "" "Когда все члены политики находятся в автономном режиме, используйте это " "поведение для сопоставленного трафика." -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "Да" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "всегда" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "blackhole (drop)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "по умолчанию (использовать основную таблицу маршрутизации)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: 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:222 +#: 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:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "никогда" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "недоступен (отклонить)" diff --git a/applications/luci-app-mwan3/po/templates/mwan3.pot b/applications/luci-app-mwan3/po/templates/mwan3.pot index 36c5a3bda9..9fd842271f 100644 --- a/applications/luci-app-mwan3/po/templates/mwan3.pot +++ b/applications/luci-app-mwan3/po/templates/mwan3.pot @@ -1,91 +1,95 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 "" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" msgstr "" @@ -93,7 +97,7 @@ msgstr "" msgid "Check IP rules" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "" @@ -101,19 +105,27 @@ msgstr "" msgid "Check routing table" msgstr "" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "" @@ -131,45 +143,66 @@ msgstr "" msgid "Diagnostics" msgstr "" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" msgstr "" @@ -185,7 +218,7 @@ msgstr "" msgid "Hotplug ifup" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" msgstr "" @@ -195,25 +228,29 @@ msgstr "" msgid "INFO: MWAN not running" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:56 msgid "IPset" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:33 msgid "IPv4" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -222,17 +259,17 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "" @@ -240,20 +277,20 @@ msgstr "" msgid "Interfaces" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "" @@ -262,54 +299,63 @@ msgstr "" msgid "Load Balancing" msgstr "" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "" @@ -325,7 +371,7 @@ msgstr "" msgid "MWAN Status - Troubleshooting" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -335,30 +381,30 @@ msgid "" "rules" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "" @@ -366,29 +412,29 @@ msgstr "" msgid "Members" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "" @@ -396,18 +442,18 @@ msgstr "" msgid "Missing both IP rules for interface %s" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "" @@ -419,17 +465,21 @@ msgstr "" msgid "No tracking Hosts for interface %s defined." msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "" @@ -438,7 +488,7 @@ msgstr "" msgid "Only one IP rules for interface %s found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "" @@ -446,24 +496,24 @@ msgstr "" msgid "Ping default gateway" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "" @@ -475,7 +525,7 @@ msgstr "" msgid "Policies" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -486,27 +536,27 @@ msgid "" "the same name as configured interfaces, members or rules" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "" @@ -518,11 +568,11 @@ msgstr "" msgid "Routing table %s for interface %s not found" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "" @@ -530,7 +580,7 @@ msgstr "" msgid "Rules" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -543,30 +593,30 @@ msgid "" "interfaces, members or policies" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "" @@ -574,22 +624,22 @@ msgstr "" msgid "Task" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -608,21 +658,21 @@ msgid "" "\"wwan0\")<br /><br />" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -635,41 +685,41 @@ msgstr "" msgid "Troubleshooting" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -679,51 +729,55 @@ msgstr "" msgid "Waiting for command to complete..." msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:241 msgid "ifdown" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:222 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:240 msgid "ifup" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "" diff --git a/applications/luci-app-mwan3/po/zh-cn/mwan3.po b/applications/luci-app-mwan3/po/zh-cn/mwan3.po index 8bac6a7a7b..81a77dda8a 100644 --- a/applications/luci-app-mwan3/po/zh-cn/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-cn/mwan3.po @@ -1,110 +1,114 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017, 2018. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-10-01 10:10+0800\n" -"X-Generator: Gtranslator 2.91.7\n" +"PO-Revision-Date: 2019-01-03 22:17+0800\n" +"X-Generator: Poedit 2.2\n" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 小时" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 分钟" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 分钟" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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 "" "取值范围:1-100。这个设置项指定了当多少个 IP 地址能够连通时接口会被认为在线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "取值范围:1-1000。如果不填写,默认值为 1" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "取值范围:1-256。如果不填写,默认值为 1" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "找到接口 %s 的所有必需 IP 规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" -msgstr "" +msgstr "同时扫描此路由表以查找已连接的网络" #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:73 msgid "Check IP rules" msgstr "检查 IP 规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "检查连接数量" @@ -112,19 +116,27 @@ msgstr "检查连接数量" msgid "Check routing table" msgstr "检查路由表" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "正在收集数据…" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "目标地址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "目标端口" @@ -142,45 +154,66 @@ msgstr "详细" msgid "Diagnostics" msgstr "诊断" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "已禁用" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "当 Ping 成功次数达到这个数值后,已经被认为离线的接口将会重新上线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "已启用" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "输入十六进制值,以 <code>0x</code> 开头" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "执行" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "在 up 事件发生时的预期接口状态" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "故障检测间隔" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "防火墙掩码" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "刷新连接跟踪表" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" msgstr "在接口事件触发时刷新全局防火墙连接跟踪表" @@ -196,9 +229,9 @@ msgstr "Hotplug ifdown" msgid "Hotplug ifup" msgstr "Hotplug ifup" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" -msgstr "" +msgstr "rtmon 应该多久更新一次接口路由表" #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:29 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:56 @@ -206,25 +239,29 @@ msgstr "" msgid "INFO: MWAN not running" msgstr "信息:MWAN 没有运行" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: 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:27 +#: 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:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "初始状态" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -233,17 +270,17 @@ msgstr "初始状态" msgid "Interface" msgstr "接口" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "接口离线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "接口在线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "当 Ping 失败次数达到这个数值后,接口会被认为离线" @@ -251,20 +288,20 @@ msgstr "当 Ping 失败次数达到这个数值后,接口会被认为离线" msgid "Interfaces" msgstr "接口" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "互联网协议" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "保持故障检测间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "在故障状态期间保持的 Ping 故障检测间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "备用成员" @@ -273,54 +310,63 @@ msgstr "备用成员" msgid "Load Balancing" msgstr "负载均衡" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "载入中" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "MWAN - 全局" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "MWAN - 接口" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "MWAN - 成员" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "MWAN - 通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "MWAN - 策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "MWAN - 规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "MWAN 接口配置 - %s" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "MWAN 接口" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "MWAN 成员配置 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "MWAN 策略配置 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "MWAN 规则配置 - %s" @@ -336,7 +382,7 @@ msgstr "MWAN 状态 - 诊断" msgid "MWAN Status - Troubleshooting" msgstr "MWAN 状态 - 故障排除" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -350,20 +396,20 @@ msgstr "" "的接口名称匹配。<br />名称允许包括 A-Z、a-z、0-9、_ 但是不能有空格。<br />接" "口不应该与成员、策略、规则中的任意一个设置项使用相同的名称" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" -msgstr "" +msgstr "最大 TTL" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "最大数据包延迟 [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "最大数据包丢失率 [%]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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" @@ -371,11 +417,11 @@ msgstr "" "可以输入一个或多个端口(例如“22”或者“80,443”),或者是一个端口范围(例" "如“1024:2048”),不含引号" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "成员" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "使用的成员" @@ -383,7 +429,7 @@ msgstr "使用的成员" msgid "Members" msgstr "成员" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 " @@ -393,22 +439,22 @@ msgstr "" "允许包括 A-Z、 a-、0-9、_ 但是不能有空格。<br />成员不应该与接口、策略、规则" "中的任意一个设置项使用相同的名称" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "分配的成员" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "跃点数" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "最小数据包延迟 [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "最小数据包丢失率 [%]" @@ -416,7 +462,7 @@ msgstr "最小数据包丢失率 [%]" msgid "Missing both IP rules for interface %s" msgstr "缺少接口 %s 的两个 IP 规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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\")" @@ -424,12 +470,12 @@ msgstr "" "匹配 IPset 规则列表名称。需要先配置 /etc/dnsmasq.conf 中的 IPset 规则(例" "如:“ipset=/youtube.com/youtube”)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "否" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "没有找到 MWAN 接口" @@ -441,17 +487,21 @@ msgstr "没有找到接口 %s 的网关。" msgid "No tracking Hosts for interface %s defined." msgstr "未定义接口 %s 的跟踪主机。" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "离线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "在线" @@ -460,7 +510,7 @@ msgstr "在线" msgid "Only one IP rules for interface %s found" msgstr "只找到接口 %s 的一个 IP 规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "Ping 计数" @@ -468,24 +518,24 @@ msgstr "Ping 计数" msgid "Ping default gateway" msgstr "Ping 默认网关" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "Ping 间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "故障检测期间的 Ping 间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "故障恢复期间的 Ping 间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "Ping 大小" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "Ping 超时" @@ -497,7 +547,7 @@ msgstr "Ping 跟踪 IP" msgid "Policies" msgstr "策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -513,29 +563,29 @@ msgstr "" "包括 A-Z、a-z、0-9、_ 但是不能有空格。名称应该在 15 个字符以内<br />策略不应" "该与接口、成员、规则中的任意一个设置项使用相同的名称" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "分配的策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "通信协议" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "故障恢复间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "" +msgstr "路由表 %d" #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:196 msgid "Routing table %s for interface %s found" @@ -545,11 +595,11 @@ msgstr "找到路由表 %s,为接口 %s" msgid "Routing table %s for interface %s not found" msgstr "没有找到路由表 %s,为接口 %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" -msgstr "" +msgstr "路由表查找" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "规则" @@ -557,7 +607,7 @@ msgstr "规则" msgid "Rules" msgstr "规则" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -575,30 +625,30 @@ msgstr "" "流量符合规则,但该策略的所有 WAN 接口关闭后都会被失效<br />名称可包含字符 A-" "Z,a-z,0-9,_ 和空格<br />规则不能与配置的接口、成员或策略共享相同的名称" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "单位为秒。接受的值:1-1000000。留空则使用默认值 600 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "源地址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "源端口" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "粘滞模式" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "粘滞超时" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "支持 CIDR 记法(例如:\"192.168.100.0/24\")不含引号" @@ -606,22 +656,22 @@ msgstr "支持 CIDR 记法(例如:\"192.168.100.0/24\")不含引号" msgid "Task" msgstr "任务" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "当前已配置 %d 个接口,最大支持 %d 个" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "这里显示了这个接口在 /etc/config/network 中配置的跃点数" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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 "通过 ping 此主机或 IP 地址来确定链路是否在线。留空则认为接口始终在线" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -648,21 +698,21 @@ msgstr "" "(例如“wan”或“wwan”)<br />$DEVICE 启动或停止接口的物理设备名(例" "如“eth0”或“wwan0”)<br /><br />" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "跟踪的主机或 IP 地址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "跟踪方式" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "跟踪可靠性" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -677,41 +727,41 @@ msgstr "" msgid "Troubleshooting" msgstr "故障排除" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" -msgstr "" +msgstr "更新间隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "查看协议描述的 /etc/protocols 的内容" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "警告:已配置 %d 个接口,超过最大值 %d!" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "警告:接口 %s 在 /etc/config/network 中未找到" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "警告:接口 %s 的 metric %s 配置重复" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: 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 "警告:接口 %s 比跟踪主机具有更高的可靠性要求(%d)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "警告:接口 %s 在主路由表中没有默认的路由" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "警告:策略 %s 名称超过 15 个字符" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -721,59 +771,55 @@ msgstr "警告:规则 %s 有一个端口配置没有指定或协议不正确 msgid "Waiting for command to complete..." msgstr "正在等待命令完成…" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "比重" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "当所有策略成员都无法使用的时候,对使用该策略的流量使用这个操作" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "是" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "总是" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "黑洞(丢弃)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "默认(使用主路由表)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: 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:222 +#: 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:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "从不" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "不可达(拒绝)" - -#~ msgid "Local source interface" -#~ msgstr "本地源接口" - -#~ msgid "" -#~ "Use the IP address of this interface as source IP address for traffic " -#~ "initiated by the router itself" -#~ msgstr "使用该接口的 IP 地址作为路由器本身发起的流量的源 IP 地址" diff --git a/applications/luci-app-mwan3/po/zh-tw/mwan3.po b/applications/luci-app-mwan3/po/zh-tw/mwan3.po index 1f274fd7b6..a09f5908e3 100644 --- a/applications/luci-app-mwan3/po/zh-tw/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-tw/mwan3.po @@ -1,110 +1,114 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017, 2018. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" -"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-10-01 10:10+0800\n" -"X-Generator: Gtranslator 2.91.7\n" +"PO-Revision-Date: 2019-01-03 22:17+0800\n" +"X-Generator: Poedit 2.2\n" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:153 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:169 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 +#: 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 小時" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:184 +#: 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 分鐘" -#: 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:165 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:166 #: 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:187 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:188 +#: 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 分鐘" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:129 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:142 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:178 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:30 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:130 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:131 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:132 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:133 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:134 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:135 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:137 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:138 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:143 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:144 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:146 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:147 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:159 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:160 +#: 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:182 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:183 +#: 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 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:41 +#: 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 "" "取值範圍:1-100。這個設定項指定了當多少個 IP 位址能夠連通時介面會被認為在線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:30 msgid "Acceptable values: 1-1000. Defaults to 1 if not set" msgstr "取值範圍:1-1000。如果不填寫,預設值為 1" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:26 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "取值範圍:1-256。如果不填寫,預設值為 1" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:32 +msgid "Alert" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:177 msgid "All required IP rules for interface %s found" msgstr "找到介面 %s 的所有必需 IP 規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:57 msgid "Also scan this Routing table for connected networks" -msgstr "" +msgstr "同時掃描此路由表以查詢已連線的網路" #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:73 msgid "Check IP rules" msgstr "檢查 IP 規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:99 msgid "Check link quality" msgstr "檢查連線數量" @@ -112,19 +116,27 @@ msgstr "檢查連線數量" msgid "Check routing table" msgstr "檢查路由表" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:73 +#: 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 "正在收集資料…" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:80 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:33 +msgid "Critical" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 +msgid "Debug" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:81 msgid "Destination address" msgstr "目標位址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:86 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:87 msgid "Destination port" msgstr "目標埠" @@ -142,51 +154,72 @@ msgstr "詳細" msgid "Diagnostics" msgstr "診斷" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:30 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:50 msgid "Disabled" msgstr "已禁用" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:206 +#: 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 "當 Ping 成功次數達到這個數值後,已經被認為離線的介面將會重新上線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:158 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:31 +msgid "Emergency" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:160 msgid "Enabled" msgstr "已啟用" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:63 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +msgid "Enables global firewall logging" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:16 msgid "Enter value in hex, starting with <code>0x</code>" msgstr "輸入十六進位制值,以 <code>0x</code> 開頭" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:34 +msgid "Error" +msgstr "" + #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:81 msgid "Execute" msgstr "執行" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:26 msgid "Expect interface state on up event" msgstr "在 up 事件發生時的預期介面狀態" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:155 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:173 msgid "Failure interval" msgstr "故障檢測間隔" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:29 +msgid "Firewall loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:15 msgid "Firewall mask" msgstr "防火牆掩碼" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:237 msgid "Flush conntrack table" msgstr "重新整理連線跟蹤表" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:220 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:238 msgid "Flush global firewall conntrack table on interface events" -msgstr "在介面事件觸發時重新整理全域性防火牆連線跟蹤表" +msgstr "在介面事件觸發時重新整理全局防火牆連線跟蹤表" #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:45 msgid "Globals" -msgstr "全域性" +msgstr "全局" #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:76 msgid "Hotplug ifdown" @@ -196,9 +229,9 @@ msgstr "Hotplug ifdown" msgid "Hotplug ifup" msgstr "Hotplug ifup" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:45 msgid "How often should rtmon update the interface routing table" -msgstr "" +msgstr "rtmon 應該多久更新一次介面路由表" #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:29 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:56 @@ -206,25 +239,29 @@ msgstr "" msgid "INFO: MWAN not running" msgstr "資訊:MWAN 沒有運行" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:50 +#: 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:27 +#: 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:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:19 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:37 +msgid "Info" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 msgid "Initial state" msgstr "初始狀態" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:148 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:150 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:27 #: 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 @@ -233,17 +270,17 @@ msgstr "初始狀態" msgid "Interface" msgstr "介面" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:206 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:191 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:208 msgid "Interface down" msgstr "介面離線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:217 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:205 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:219 msgid "Interface up" msgstr "介面在線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:210 msgid "Interface will be deemed down after this many failed ping tests" msgstr "當 Ping 失敗次數達到這個數值後,介面會被認為離線" @@ -251,20 +288,20 @@ msgstr "當 Ping 失敗次數達到這個數值後,介面會被認為離線" msgid "Interfaces" msgstr "介面" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 msgid "Internet Protocol" msgstr "網際網路協議" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:171 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:189 msgid "Keep failure interval" msgstr "保持故障檢測間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:172 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:190 msgid "Keep ping failure interval during failure state" msgstr "在故障狀態期間保持的 Ping 故障檢測間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:75 msgid "Last resort" msgstr "備用成員" @@ -273,54 +310,63 @@ msgstr "備用成員" msgid "Load Balancing" msgstr "負載均衡" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:72 +#: 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 "載入中" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:62 +msgid "Logging" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:28 +msgid "Loglevel" +msgstr "" + #: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:8 msgid "MWAN - Globals" msgstr "MWAN - 全局" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:137 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:139 msgid "MWAN - Interfaces" msgstr "MWAN - 介面" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:8 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:9 msgid "MWAN - Members" msgstr "MWAN - 成員" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:10 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:11 msgid "MWAN - Notification" msgstr "MWAN - 通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:37 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:38 msgid "MWAN - Policies" msgstr "MWAN - 策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:41 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:42 msgid "MWAN - Rules" msgstr "MWAN - 規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:15 msgid "MWAN Interface Configuration - %s" msgstr "MWAN 介面配置 - %s" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:70 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:94 msgid "MWAN Interfaces" msgstr "MWAN 介面" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:11 msgid "MWAN Member Configuration - %s" msgstr "MWAN 成員配置 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:11 msgid "MWAN Policy Configuration - %s" msgstr "MWAN 策略配置 - %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:9 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:15 msgid "MWAN Rule Configuration - %s" msgstr "MWAN 規則配置 - %s" @@ -336,7 +382,7 @@ msgstr "MWAN 狀態 - 診斷" msgid "MWAN Status - Troubleshooting" msgstr "MWAN 狀態 - 故障排除" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:141 +#: 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/" @@ -350,20 +396,20 @@ msgstr "" "中的介面名稱匹配。<br />名稱允許包括 A-Z、a-z、0-9、_ 但是不能有空格。<br />" "接口不應該與成員、策略、規則中的任意一個設定項使用相同的名稱" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:87 msgid "Max TTL" -msgstr "" +msgstr "最大 TTL" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:85 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:103 msgid "Max packet latency [ms]" msgstr "最大資料包延遲 [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:97 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:115 msgid "Max packet loss [%]" msgstr "最大資料包丟失率 [%]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:21 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:28 +#: 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" @@ -371,11 +417,11 @@ msgstr "" "可以輸入一個或多個埠(例如“22”或者“80,443”),或者是一個埠範圍(例" "如“1024:2048”),不含引號" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:17 msgid "Member" msgstr "成員" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:18 msgid "Member used" msgstr "使用的成員" @@ -383,7 +429,7 @@ msgstr "使用的成員" msgid "Members" msgstr "成員" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:11 +#: 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 " @@ -393,22 +439,22 @@ msgstr "" "稱允許包括 A-Z、 a-、0-9、_ 但是不能有空格。<br />成員不應該與介面、策略、規" "則中的任意一個設定項使用相同的名稱" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:61 msgid "Members assigned" msgstr "分配的成員" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:228 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:227 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:32 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 msgid "Metric" msgstr "躍點數" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:106 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:124 msgid "Min packet latency [ms]" msgstr "最小資料包延遲 [ms]" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:118 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:136 msgid "Min packet loss [%]" msgstr "最小資料包丟失率 [%]" @@ -416,7 +462,7 @@ msgstr "最小資料包丟失率 [%]" msgid "Missing both IP rules for interface %s" msgstr "缺少介面 %s 的兩個 IP 規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:51 +#: 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\")" @@ -424,12 +470,12 @@ msgstr "" "匹配 IPset 規則列表名稱。需要先配置 /etc/dnsmasq.conf 中的 IPset 規則(例" "如:“ipset=/youtube.com/youtube”)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:164 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:44 +#: 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 "否" -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:52 +#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:76 msgid "No MWAN interfaces found" msgstr "沒有找到 MWAN 介面" @@ -441,17 +487,21 @@ msgstr "沒有找到介面 %s 的閘道器。" msgid "No tracking Hosts for interface %s defined." msgstr "未定義介面 %s 的跟蹤主機。" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:36 +msgid "Notice" +msgstr "" + #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:60 msgid "Notification" msgstr "通知" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:23 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:26 +#: 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 "離線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 -#: applications/luci-app-mwan3/luasrc/view/mwan/overview_status_interface.htm:22 +#: 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 "在線" @@ -460,7 +510,7 @@ msgstr "在線" msgid "Only one IP rules for interface %s found" msgstr "只找到介面 %s 的一個 IP 規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:45 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:63 msgid "Ping count" msgstr "Ping 計數" @@ -468,24 +518,24 @@ msgstr "Ping 計數" msgid "Ping default gateway" msgstr "Ping 預設閘道器" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:190 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:140 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:192 msgid "Ping interval" msgstr "Ping 間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:156 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:174 msgid "Ping interval during failure detection" msgstr "故障檢測期間的 Ping 間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:176 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:194 msgid "Ping interval during failure recovering" msgstr "故障恢復期間的 Ping 間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:71 msgid "Ping size" msgstr "Ping 大小" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:127 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:145 msgid "Ping timeout" msgstr "Ping 超時" @@ -497,7 +547,7 @@ msgstr "Ping 跟蹤 IP" msgid "Policies" msgstr "策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:41 +#: 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 " @@ -513,29 +563,29 @@ msgstr "" "包括 A-Z、a-z、0-9、_ 但是不能有空格。名稱應該在 15 個字元以內<br />策略不應" "該與介面、成員、規則中的任意一個設定項使用相同的名稱" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:50 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:51 msgid "Policy" msgstr "策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:98 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:65 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:99 msgid "Policy assigned" msgstr "分配的策略" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:92 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:93 msgid "Protocol" msgstr "通訊協議" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:175 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:193 msgid "Recovery interval" msgstr "故障恢復間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:39 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:40 +#: 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 "" +msgstr "路由表 %d" #: applications/luci-app-mwan3/luasrc/controller/mwan3.lua:196 msgid "Routing table %s for interface %s found" @@ -545,11 +595,11 @@ msgstr "找到路由表 %s,為介面 %s" msgid "Routing table %s for interface %s not found" msgstr "沒有找到路由表 %s,為介面 %s" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:56 msgid "Routing table lookup" -msgstr "" +msgstr "路由表查詢" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:59 msgid "Rule" msgstr "規則" @@ -557,7 +607,7 @@ msgstr "規則" msgid "Rules" msgstr "規則" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:46 +#: 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 " @@ -575,30 +625,30 @@ msgstr "" "流量符合規則,但該策略的所有 WAN 介面關閉後都會被失效<br />名稱可包含字元 A-" "Z,a-z,0-9,_ 和空格<br />規則不能與配置的介面、成員或策略共享相同的名稱" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:47 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:53 msgid "Seconds. Acceptable values: 1-1000000. Defaults to 600 if not set" msgstr "單位為秒。接受的值:1-1000000。留空則使用預設值 600 秒" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:68 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:16 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:69 msgid "Source address" msgstr "源位址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:74 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:20 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:75 msgid "Source port" msgstr "源埠" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 msgid "Sticky" msgstr "粘滯模式" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:46 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:52 msgid "Sticky timeout" msgstr "粘滯超時" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:17 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:24 +#: 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 "支援 CIDR 記法(例如:\"192.168.100.0/24\")不含引號" @@ -606,22 +656,22 @@ msgstr "支援 CIDR 記法(例如:\"192.168.100.0/24\")不含引號" msgid "Task" msgstr "任務" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:13 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:15 msgid "There are currently %d of %d supported interfaces configured" msgstr "當前已配置 %d 個介面,最大支援 %d 個" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:228 +#: 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 "這裡顯示了這個介面在 /etc/config/network 中配置的躍點數" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:31 +#: 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 "通過 ping 此主機或 IP 位址來確定鏈路是否在線。留空則認為介面始終在線" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/notify.lua:13 +#: 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 " @@ -641,28 +691,28 @@ msgid "" msgstr "" "這裡允許您修改“/etc/mwan3.user”的內容。<br />該檔案在 sysupgrade 期間也會保" "留。<br /><br />注意:<br />該檔案會作為 shell 指令碼解釋。<br />指令碼的第一" -"行必須是 "#!/bin/sh",不帶引號。<br />以 # 開頭的行是註釋,不會執行。" +"行必須是 "#!/bin/sh",不帶引號。<br />以 # 開頭的行是註釋,不會運行。" "<br />將您的自定義 mwan3 動作放在這裡,他們將<br />在啟用 mwan3 的介面上<br /" -">在 netifd hotplug 介面事件時執行。<br /><br />有三個主要的環境變數傳遞給這個" +">在 netifd hotplug 介面事件時運行。<br /><br />有三個主要的環境變數傳遞給這個" "指令碼。<br /><br />$ACTION “ifup”或“ifdown”<br />$INTERFACE 啟動或停止的介面" "名(例如“wan”或“wwan”)<br />$DEVICE 啟動或停止介面的物理裝置名(例" "如“eth0”或“wwan0”)<br /><br />" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:36 msgid "Tracking hostname or IP address" msgstr "跟蹤的主機或 IP 位址" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:168 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:34 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:170 msgid "Tracking method" msgstr "跟蹤方式" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:179 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:181 msgid "Tracking reliability" msgstr "跟蹤可靠性" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:41 +#: 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" @@ -677,41 +727,41 @@ msgstr "" msgid "Troubleshooting" msgstr "故障排除" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:23 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:44 msgid "Update interval" -msgstr "" +msgstr "更新間隔" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:31 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:37 msgid "View the content of /etc/protocols for protocol description" msgstr "檢視協議描述的 /etc/protocols 的內容" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:17 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:19 msgid "WARNING: %d interfaces are configured exceeding the maximum of %d!" msgstr "警告:已配置 %d 個介面,超過最大值 %d!" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:24 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:26 msgid "WARNING: Interface %s are not found in /etc/config/network" msgstr "警告:介面 %s 在 /etc/config/network 中未找到" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:43 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:45 msgid "WARNING: Interface %s has a duplicate metric %s configured" msgstr "警告:介面 %s 的 metric %s 配置重複" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:36 +#: 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 "警告:介面 %s 比跟蹤主機具有更高的可靠性要求(%d)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:30 +#: 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 "警告:介面 %s 在主路由表中沒有預設的路由" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:30 msgid "WARNING: Policy %s has exceeding the maximum name of 15 characters" msgstr "警告:策略 %s 名稱超過 15 個字元" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/rule.lua:33 +#: 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!" @@ -721,59 +771,55 @@ msgstr "警告:規則 %s 有一個埠配置沒有指定或協議不正確!" msgid "Waiting for command to complete..." msgstr "正在等待指令完成…" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:38 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/globalsconfig.lua:35 +msgid "Warning" +msgstr "" + +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:39 msgid "Weight" msgstr "比重" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:24 +#: 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 "當所有策略成員都無法使用的時候,對使用該策略的流量使用這個操作" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interface.lua:162 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:43 +#: 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 "是" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:225 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:243 msgid "always" msgstr "總是" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:79 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:27 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:60 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "blackhole (drop)" msgstr "黑洞(丟棄)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:81 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:61 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "default (use main routing table)" msgstr "預設(使用主路由表)" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 +#: 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:222 +#: 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:224 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:242 msgid "never" msgstr "從不" -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:83 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:26 -#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:59 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:71 msgid "unreachable (reject)" msgstr "不可達(拒絕)" - -#~ msgid "Local source interface" -#~ msgstr "本地源介面" - -#~ msgid "" -#~ "Use the IP address of this interface as source IP address for traffic " -#~ "initiated by the router itself" -#~ msgstr "使用該介面的 IP 位址作為路由器本身發起的流量的源 IP 位址" diff --git a/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po b/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po index ccddb48929..73ce11f5d0 100644 --- a/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po +++ b/applications/luci-app-nft-qos/po/zh-cn/nft-qos.po @@ -1,14 +1,17 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# 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" +"PO-Revision-Date: 2019-01-03 22:28+0800\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.3\n" -"Last-Translator: \n" +"X-Generator: Gtranslator 3.30.1\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: zh_CN\n" @@ -20,7 +23,7 @@ msgstr "字节总数" #: 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 "正在收集数据" +msgstr "正在收集数据…" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 msgid "Comment" @@ -72,7 +75,7 @@ msgstr "上传速率的默认值" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 msgid "Download Bandwidth (Mbps)" -msgstr "下载带宽 (Mbps)" +msgstr "下载带宽(Mbps)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 msgid "Download Rate" @@ -98,17 +101,17 @@ msgstr "主机名" #: 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 "IP地址" +msgstr "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 "" +msgstr "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 "" +msgstr "IP 地址(仅 V4)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 msgid "Limit Enable" @@ -121,7 +124,7 @@ msgstr "限速类型" #: 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 "物理地址(可选)" +msgstr "物理地址(可选)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:48 msgid "MB" @@ -133,15 +136,15 @@ msgstr "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 "流量整形的目标网络接口, 例如, br-lan, eth0.1, eth0, etc" +msgstr "流量整形的目标网络接口,例如br-lan、eth0.1、eth0等" #: 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 "将要应用规则的网络, 例如, 192.168.1.0/24, 10.2.0.0/16, 等等" +msgstr "将要应用规则的网络,例如192.168.1.0/24、10.2.0.0/16等" #: 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 "将要应用规则的网络, 例如, AAAA::BBBB/64, CCCC::1/128, 等等" +msgstr "将要应用规则的网络,例如AAAA::BBBB/64、CCCC::1/128等" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 msgid "No information available" @@ -163,7 +166,7 @@ msgstr "协议" #: 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 Nftables版" +msgstr "QoS 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 @@ -173,7 +176,7 @@ msgstr "速率" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 msgid "Realtime Download Rate" -msgstr "" +msgstr "实时下载速率" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 msgid "Realtime Rate" @@ -181,31 +184,31 @@ msgstr "实时速率显示" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 msgid "Realtime Upload Rate" -msgstr "" +msgstr "实时上传速率" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 msgid "Service" -msgstr "服务/端口" +msgstr "服务" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 msgid "Static QoS-Download Rate" -msgstr "静态QoS-下载速率" +msgstr "静态 QoS-下载速率" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 msgid "Static QoS-Upload Rate" -msgstr "静态QoS-上传速率" +msgstr "静态 QoS-上传速率" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 msgid "Target Network (IPv4/MASK)" -msgstr "目标网络(IPv4地址/掩码)" +msgstr "目标网络(IPv4 地址/掩码)" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 msgid "Target Network6 (IPv6/MASK)" -msgstr "目标网络v6(IPv6地址/掩码)" +msgstr "目标网络 v6(IPv6 地址/掩码)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 msgid "This page gives an overview over currently download/upload rate." -msgstr "该页面提供了当前上传和下载速率的一个总览" +msgstr "该页面提供了当前上传和下载速率的一个总览。" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 msgid "Traffic Priority Settings" @@ -222,7 +225,7 @@ msgstr "单位" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 msgid "Upload Bandwidth (Mbps)" -msgstr "上传带宽 (Mbps)" +msgstr "上传带宽(Mbps)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 msgid "Upload Rate" @@ -234,17 +237,8 @@ msgstr "限速白名单" #: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 msgid "e.g. https, 23, (separator is comma)" -msgstr "例如, https, 23 (用逗号分隔)" +msgstr "例如https, 23(用逗号分隔)" #: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 msgid "kB" msgstr "kB" - -#~ msgid "Dynamic Rate Limit" -#~ msgstr "动态QoS" - -#~ msgid "Rate Limit" -#~ msgstr "速率限制" - -#~ msgid "Traffic Priority" -#~ msgstr "流量优先级" diff --git a/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po b/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po new file mode 100644 index 0000000000..5be9d8abf6 --- /dev/null +++ b/applications/luci-app-nft-qos/po/zh-tw/nft-qos.po @@ -0,0 +1,244 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-03 22:28+0800\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Gtranslator 3.30.1\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"Language: zh_TW\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 "位元組總數" + +#: 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 "正在收集資料…" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:224 +msgid "Comment" +msgstr "註釋" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +msgid "Default Download Rate" +msgstr "預設下載速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +msgid "Default Download Unit" +msgstr "預設下載速率單位" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:107 +msgid "Default Network Interface" +msgstr "預設網路介面" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +msgid "Default Upload Rate" +msgstr "預設上傳速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +msgid "Default Upload Unit" +msgstr "預設上傳速率單位" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:53 +msgid "Default unit for download rate" +msgstr "預設的下載速率單位" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:65 +msgid "Default unit for upload rate" +msgstr "預設的上傳速率單位" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +msgid "Default value for download bandwidth" +msgstr "下載頻寬的預設值" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:48 +msgid "Default value for download rate" +msgstr "下載速率的預設值" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +msgid "Default value for upload bandwidth" +msgstr "上傳頻寬的預設值" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:60 +msgid "Default value for upload rate" +msgstr "上傳速率的預設值" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:75 +msgid "Download Bandwidth (Mbps)" +msgstr "下載頻寬(Mbps)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:135 +msgid "Download Rate" +msgstr "下載速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +msgid "Enable Limit Rate Feature" +msgstr "開啟速率限制功能" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +msgid "Enable Traffic Priority" +msgstr "開啟流量優先順序" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:103 +msgid "Enable this feature" +msgstr "開啟這個功能" + +#: 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 "主機名" + +#: 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 "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 "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 "IP 位址(僅 V4)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:38 +msgid "Limit Enable" +msgstr "限速開啟" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +msgid "Limit Type" +msgstr "限速型別" + +#: 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 "實體位址(可選)" + +#: 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 "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 "流量整形的目標網路介面,例如br-lan、eth0.1、eth0等" + +#: 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 "將要應用規則的網路,例如192.168.1.0/24、10.2.0.0/16等" + +#: 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 "將要應用規則的網路,例如AAAA::BBBB/64、CCCC::1/128等" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:65 +msgid "No information available" +msgstr "沒有更多的資訊" + +#: 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 "資料包總數" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:207 +msgid "Priority" +msgstr "優先順序" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:199 +msgid "Protocol" +msgstr "協議" + +#: 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 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 "速率" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:130 +msgid "Realtime Download Rate" +msgstr "實時下載速率" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:125 +msgid "Realtime Rate" +msgstr "實時速率顯示" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:149 +msgid "Realtime Upload Rate" +msgstr "實時上傳速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +msgid "Service" +msgstr "服務" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:116 +msgid "Static QoS-Download Rate" +msgstr "靜態 QoS-下載速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:153 +msgid "Static QoS-Upload Rate" +msgstr "靜態 QoS-上傳速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:85 +msgid "Target Network (IPv4/MASK)" +msgstr "目標網路(IPv4 位址/掩碼)" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:91 +msgid "Target Network6 (IPv6/MASK)" +msgstr "目標網路 v6(IPv6 位址/掩碼)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:127 +msgid "This page gives an overview over currently download/upload rate." +msgstr "該頁面提供了當前上傳和下載速率的一個總覽。" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:194 +msgid "Traffic Priority Settings" +msgstr "流量優先順序設定" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:42 +msgid "Type of Limit Rate" +msgstr "限速的型別" + +#: 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 "單位" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:80 +msgid "Upload Bandwidth (Mbps)" +msgstr "上傳頻寬(Mbps)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:154 +msgid "Upload Rate" +msgstr "上傳速率" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:96 +msgid "White List for Limit Rate" +msgstr "限速白名單" + +#: applications/luci-app-nft-qos/luasrc/model/cbi/nft-qos/nft-qos.lua:221 +msgid "e.g. https, 23, (separator is comma)" +msgstr "例如https, 23(用逗號分隔)" + +#: applications/luci-app-nft-qos/luasrc/view/nft-qos/rate.htm:44 +msgid "kB" +msgstr "kB" diff --git a/applications/luci-app-nut/po/en/nut.po b/applications/luci-app-nut/po/en/nut.po new file mode 100644 index 0000000000..0f22c26ae0 --- /dev/null +++ b/applications/luci-app-nut/po/en/nut.po @@ -0,0 +1,603 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2019-01-09 06:58-0500\n" +"Last-Translator: Daniel F. Dickinson <cshored@thecshore.com>\n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:216 +msgid "Additional Shutdown Time(s)" +msgstr "Additional Shutdown Time(s)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:37 +msgid "Addresses on which to listen" +msgstr "Addresses on which to listen" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:23 +msgid "Allowed actions" +msgstr "Allowed actions" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "As configured by NUT" +msgstr "As configured by NUT" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Bytes to read from interrupt pipe" +msgstr "Bytes to read from interrupt pipe" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "CA Certificate path" +msgstr "CA Certificate path" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:73 +msgid "Certificate file (SSL)" +msgstr "Certificate file (SSL)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:63 +msgid "Communications lost message" +msgstr "Communications lost message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:60 +msgid "Communications restored message" +msgstr "Communications restored message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:35 +msgid "Control UPS via CGI" +msgstr "Control UPS via CGI" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:43 +msgid "Deadtime" +msgstr "Deadtime" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Default for UPSes without this field." +msgstr "Default for UPSes without this field." + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Delay for kill power command" +msgstr "Delay for kill power command" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "Delay to power on UPS if power returns after kill power" +msgstr "Delay to power on UPS if power returns after kill power" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:129 +msgid "Description (Display)" +msgstr "Description (Display)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:32 +msgid "Display name" +msgstr "Display name" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "Don't lock port when starting driver" +msgstr "Don't lock port when starting driver" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:132 +msgid "Driver" +msgstr "Driver" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:114 +msgid "Driver Configuration" +msgstr "Driver Configuration" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:77 +msgid "Driver Global Settings" +msgstr "Driver Global Settings" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Driver Path" +msgstr "Driver Path" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:212 +msgid "Driver Shutdown Order" +msgstr "Driver Shutdown Order" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Driver waits for data to be consumed by upsd before publishing more." +msgstr "Driver waits for data to be consumed by upsd before publishing more." + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +msgid "Drop privileges to this user" +msgstr "Drop privileges to this user" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:40 +msgid "Enable" +msgstr "Enable" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "" +"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) " +"group read-write as user 'nut'" +msgstr "" +"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) " +"group read-write as user 'nut'" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:93 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:102 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:110 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:118 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:126 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:134 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:142 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:150 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:158 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:166 +msgid "Execute notify command" +msgstr "Execute notify command" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:26 +msgid "Forced Shutdown" +msgstr "Forced Shutdown" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:57 +msgid "Forced shutdown message" +msgstr "Forced shutdown message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:10 +msgid "Global Settings" +msgstr "Global Settings" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:13 +msgid "Go to NUT CGI" +msgstr "Go to NUT CGI" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:16 +msgid "Host" +msgstr "Host" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:23 +msgid "Hostname or IP address" +msgstr "Hostname or IP address" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:191 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:220 +msgid "Hostname or address of UPS" +msgstr "Hostname or address of UPS" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:39 +msgid "Hot Sync" +msgstr "Hot Sync" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:41 +msgid "IP Address" +msgstr "IP Address" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:95 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:104 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:112 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:120 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:128 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:136 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:144 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:152 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:160 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:168 +msgid "Ignore" +msgstr "Ignore" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:142 +msgid "Ignore Low Battery" +msgstr "Ignore Low Battery" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "Instant commands" +msgstr "Instant commands" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:146 +msgid "Interrupt Only" +msgstr "Interrupt Only" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Interrupt Size" +msgstr "Interrupt Size" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:54 +msgid "Low battery message" +msgstr "Low battery message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:163 +msgid "Manufacturer (Display)" +msgstr "Manufacturer (Display)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:34 +msgid "Master" +msgstr "Master" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Max USB HID Length Reported" +msgstr "Max USB HID Length Reported" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Maximum Age of Data" +msgstr "Maximum Age of Data" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Maximum Start Delay" +msgstr "Maximum Start Delay" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:67 +msgid "Maximum connections" +msgstr "Maximum connections" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maximum number of times to try starting a driver." +msgstr "Maximum number of times to try starting a driver." + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Maximum time in seconds between refresh of UPS status" +msgstr "Maximum time in seconds between refresh of UPS status" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maxium Retries" +msgstr "Maxium Retries" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Maxium Start Delay" +msgstr "Maxium Start Delay" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:17 +msgid "Minimum required number or power supplies" +msgstr "Minimum required number or power supplies" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:166 +msgid "Model (Display)" +msgstr "Model (Display)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:9 +msgid "NUT CGI Access" +msgstr "NUT CGI Access" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:12 +msgid "NUT Users" +msgstr "NUT Users" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "Name of UPS" +msgstr "Name of UPS" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:11 +msgid "Network UPS Tools" +msgstr "Network UPS Tools" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:22 +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:6 +msgid "Network UPS Tools (CGI)" +msgstr "Network UPS Tools (CGI)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:18 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:7 +msgid "Network UPS Tools (Monitor)" +msgstr "Network UPS Tools (Monitor)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:9 +msgid "Network UPS Tools (Server)" +msgstr "Network UPS Tools (Server)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:7 +msgid "Network UPS Tools CGI Configuration" +msgstr "Network UPS Tools CGI Configuration" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:8 +msgid "Network UPS Tools Monitoring Configuration" +msgstr "Network UPS Tools Monitoring Configuration" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:10 +msgid "Network UPS Tools Server Configuration" +msgstr "Network UPS Tools Server Configuration" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "No Lock" +msgstr "No Lock" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:72 +msgid "No communications message" +msgstr "No communications message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:173 +msgid "No low/high voltage transfer OIDs" +msgstr "No low/high voltage transfer OIDs" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:75 +msgid "No parent message" +msgstr "No parent message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:90 +msgid "Notification defaults" +msgstr "Notification defaults" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:26 +msgid "Notify command" +msgstr "Notify command" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:99 +msgid "Notify when back online" +msgstr "Notify when back online" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:163 +msgid "Notify when battery needs replacing" +msgstr "Notify when battery needs replacing" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:147 +msgid "Notify when communications lost" +msgstr "Notify when communications lost" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:139 +msgid "Notify when communications restored" +msgstr "Notify when communications restored" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:131 +msgid "Notify when force shutdown" +msgstr "Notify when force shutdown" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:115 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:123 +msgid "Notify when low battery" +msgstr "Notify when low battery" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:107 +msgid "Notify when on battery" +msgstr "Notify when on battery" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:155 +msgid "Notify when shutting down" +msgstr "Notify when shutting down" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Off Delay(s)" +msgstr "Off Delay(s)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "On Delay(s)" +msgstr "On Delay(s)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:51 +msgid "On battery message" +msgstr "On battery message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:48 +msgid "Online message" +msgstr "Online message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:208 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:237 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:19 +msgid "Password" +msgstr "Password" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "Path containing ca certificates to match against host certificate" +msgstr "Path containing ca certificates to match against host certificate" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Path to drivers (instead of default)" +msgstr "Path to drivers (instead of default)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:63 +msgid "Path to state file" +msgstr "Path to state file" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Period after which data is considered stale" +msgstr "Period after which data is considered stale" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Poll Interval" +msgstr "Poll Interval" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:29 +msgid "Poll frequency" +msgstr "Poll frequency" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:34 +msgid "Poll frequency alert" +msgstr "Poll frequency alert" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:197 +msgid "Polling Frequency(s)" +msgstr "Polling Frequency(s)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:27 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:195 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:224 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:46 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:202 +msgid "Port" +msgstr "Port" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:200 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:229 +msgid "Power value" +msgstr "Power value" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:206 +msgid "Product (regex)" +msgstr "Product (regex)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:69 +msgid "Replace battery message" +msgstr "Replace battery message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Require SSL and make sure server CN matches hostname" +msgstr "Require SSL and make sure server CN matches hostname" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Retry Delay" +msgstr "Retry Delay" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:32 +msgid "Role" +msgstr "Role" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "Run drivers in a chroot(2) environment" +msgstr "Run drivers in a chroot(2) environment" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "RunAs User" +msgstr "RunAs User" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:125 +msgid "SNMP Community" +msgstr "SNMP Community" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:222 +msgid "SNMP retries" +msgstr "SNMP retries" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:226 +msgid "SNMP timeout(s)" +msgstr "SNMP timeout(s)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:230 +msgid "SNMP version" +msgstr "SNMP version" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:232 +msgid "SNMPv1" +msgstr "SNMPv1" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:233 +msgid "SNMPv2c" +msgstr "SNMPv2c" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:234 +msgid "SNMPv3" +msgstr "SNMPv3" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:219 +msgid "Serial Number" +msgstr "Serial Number" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "Set USB serial port permissions" +msgstr "Set USB serial port permissions" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:25 +msgid "Set variables" +msgstr "Set variables" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:22 +msgid "Shutdown command" +msgstr "Shutdown command" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:66 +msgid "Shutdown message" +msgstr "Shutdown message" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:33 +msgid "Slave" +msgstr "Slave" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Synchronous Communication" +msgstr "Synchronous Communication" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:115 +msgid "The name of this section will be used as UPS name elsewhere" +msgstr "The name of this section will be used as UPS name elsewhere" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Time in seconds between driver start retry attempts." +msgstr "Time in seconds between driver start retry attempts." + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Time in seconds that upsdrvctl will wait for driver to finish starting" +msgstr "Time in seconds that upsdrvctl will wait for driver to finish starting" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:183 +msgid "UPS Master" +msgstr "UPS Master" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:51 +msgid "UPS Server Global Settings" +msgstr "UPS Server Global Settings" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:212 +msgid "UPS Slave" +msgstr "UPS Slave" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +msgid "UPS name" +msgstr "UPS name" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:121 +msgid "USB Bus(es) (regex)" +msgstr "USB Bus(es) (regex)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:209 +msgid "USB Product Id" +msgstr "USB Product Id" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:241 +msgid "USB Vendor Id" +msgstr "USB Vendor Id" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "" +"Use upscmd -l to see full list which the commands your UPS supports " +"(requires upscmd package)" +msgstr "" +"Use upscmd -l to see full list which the commands your UPS supports " +"(requires upscmd package)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "" +"User as which to execute driver; requires device file accessed by driver to " +"be read-write for that user." +msgstr "" +"User as which to execute driver; requires device file accessed by driver to " +"be read-write for that user." + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:205 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:234 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:16 +msgid "Username" +msgstr "Username" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:238 +msgid "Vendor (regex)" +msgstr "Vendor (regex)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Verify all connection with SSL" +msgstr "Verify all connection with SSL" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Workaround for buggy firmware" +msgstr "Workaround for buggy firmware" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:94 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:103 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:111 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:119 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:127 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:135 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:143 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:151 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:159 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:167 +msgid "Write to syslog" +msgstr "Write to syslog" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "chroot" +msgstr "chroot" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +msgid "upsmon drops privileges to this user" +msgstr "upsmon drops privileges to this user" diff --git a/applications/luci-app-nut/po/zh-cn/nut.po b/applications/luci-app-nut/po/zh-cn/nut.po new file mode 100644 index 0000000000..8d8f71f873 --- /dev/null +++ b/applications/luci-app-nut/po/zh-cn/nut.po @@ -0,0 +1,602 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-04 00:24+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:216 +msgid "Additional Shutdown Time(s)" +msgstr "额外关机时间(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:37 +msgid "Addresses on which to listen" +msgstr "要监听的地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:23 +msgid "Allowed actions" +msgstr "允许的动作" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "As configured by NUT" +msgstr "由 NUT 配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Bytes to read from interrupt pipe" +msgstr "从中断管道读取的字节数" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "CA Certificate path" +msgstr "CA 证书路径" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:73 +msgid "Certificate file (SSL)" +msgstr "证书文件(SSL)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:63 +msgid "Communications lost message" +msgstr "通讯丢失消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:60 +msgid "Communications restored message" +msgstr "通讯恢复消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:35 +msgid "Control UPS via CGI" +msgstr "通过 CGI 控制 UPS" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:43 +msgid "Deadtime" +msgstr "无反应时间" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Default for UPSes without this field." +msgstr "没有此字段的 UPS 的默认值。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Delay for kill power command" +msgstr "断电后执行命令的延时" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "Delay to power on UPS if power returns after kill power" +msgstr "如果断电后电源恢复,则延迟开启 UPS" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:129 +msgid "Description (Display)" +msgstr "说明(显示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:32 +msgid "Display name" +msgstr "显示名称" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "Don't lock port when starting driver" +msgstr "启动驱动程序时不要锁定端口" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:132 +msgid "Driver" +msgstr "驱动程序" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:114 +msgid "Driver Configuration" +msgstr "驱动程序配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:77 +msgid "Driver Global Settings" +msgstr "驱动程序全局设置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Driver Path" +msgstr "驱动程序路径" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:212 +msgid "Driver Shutdown Order" +msgstr "驱动程序关闭顺序" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Driver waits for data to be consumed by upsd before publishing more." +msgstr "在发布更多内容之前,驱动程序会等待 upsd 处理完数据。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +msgid "Drop privileges to this user" +msgstr "降低权限至此用户" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:40 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "" +"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) " +"group read-write as user 'nut'" +msgstr "启用热插拔脚本,使所有 ttyUSB 设备(例如串行 USB)组读写为用户“nut”" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:93 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:102 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:110 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:118 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:126 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:134 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:142 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:150 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:158 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:166 +msgid "Execute notify command" +msgstr "执行 notify 命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:26 +msgid "Forced Shutdown" +msgstr "强制关机" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:57 +msgid "Forced shutdown message" +msgstr "强制关机消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:10 +msgid "Global Settings" +msgstr "全局设置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:13 +msgid "Go to NUT CGI" +msgstr "前往 NUT CGI" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:16 +msgid "Host" +msgstr "主机" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:23 +msgid "Hostname or IP address" +msgstr "主机名或 IP 地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:191 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:220 +msgid "Hostname or address of UPS" +msgstr "UPS 的主机名或地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:39 +msgid "Hot Sync" +msgstr "热同步" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:41 +msgid "IP Address" +msgstr "IP 地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:95 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:104 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:112 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:120 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:128 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:136 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:144 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:152 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:160 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:168 +msgid "Ignore" +msgstr "忽略" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:142 +msgid "Ignore Low Battery" +msgstr "忽略低电量" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "Instant commands" +msgstr "即时命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:146 +msgid "Interrupt Only" +msgstr "仅中断" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Interrupt Size" +msgstr "中断大小" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:54 +msgid "Low battery message" +msgstr "电池电量低" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:163 +msgid "Manufacturer (Display)" +msgstr "制造商(展示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:34 +msgid "Master" +msgstr "主设备" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Max USB HID Length Reported" +msgstr "报告的最大 USB HID 长度" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Maximum Age of Data" +msgstr "最大数据年龄" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Maximum Start Delay" +msgstr "最大启动延迟" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:67 +msgid "Maximum connections" +msgstr "最大连接数" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maximum number of times to try starting a driver." +msgstr "尝试启动驱动程序的最大次数。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Maximum time in seconds between refresh of UPS status" +msgstr "刷新 UPS 状态之间的最长时间(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maxium Retries" +msgstr "最大重试次数" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Maxium Start Delay" +msgstr "最大启动延迟" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:17 +msgid "Minimum required number or power supplies" +msgstr "所需的最低数量或电源" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:166 +msgid "Model (Display)" +msgstr "型号(显示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:9 +msgid "NUT CGI Access" +msgstr "NUT CGI 访问" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:12 +msgid "NUT Users" +msgstr "NUT 用户" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "Name of UPS" +msgstr "UPS 的名称" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:11 +msgid "Network UPS Tools" +msgstr "网络 UPS 工具" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:22 +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:6 +msgid "Network UPS Tools (CGI)" +msgstr "网络 UPS 工具(CGI)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:18 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:7 +msgid "Network UPS Tools (Monitor)" +msgstr "网络 UPS 工具(监控)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:9 +msgid "Network UPS Tools (Server)" +msgstr "网络 UPS 工具(服务器)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:7 +msgid "Network UPS Tools CGI Configuration" +msgstr "网络 UPS 工具 CGI 配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:8 +msgid "Network UPS Tools Monitoring Configuration" +msgstr "网络 UPS 工具监控配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:10 +msgid "Network UPS Tools Server Configuration" +msgstr "网络 UPS 工具服务器配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "No Lock" +msgstr "没有锁" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:72 +msgid "No communications message" +msgstr "没有通讯信息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:173 +msgid "No low/high voltage transfer OIDs" +msgstr "没有低压/高压传输 OID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:75 +msgid "No parent message" +msgstr "没有父信息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:90 +msgid "Notification defaults" +msgstr "通知默认值" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:26 +msgid "Notify command" +msgstr "通知命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:99 +msgid "Notify when back online" +msgstr "重新联机时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:163 +msgid "Notify when battery needs replacing" +msgstr "电池需要更换时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:147 +msgid "Notify when communications lost" +msgstr "通信丢失时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:139 +msgid "Notify when communications restored" +msgstr "通信恢复时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:131 +msgid "Notify when force shutdown" +msgstr "强行关闭时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:115 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:123 +msgid "Notify when low battery" +msgstr "低电量时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:107 +msgid "Notify when on battery" +msgstr "使用电池时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:155 +msgid "Notify when shutting down" +msgstr "关机时通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Off Delay(s)" +msgstr "关闭延迟(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "On Delay(s)" +msgstr "开启延迟(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:51 +msgid "On battery message" +msgstr "开启电池消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:48 +msgid "Online message" +msgstr "在线消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:208 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:237 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:19 +msgid "Password" +msgstr "密码" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "Path containing ca certificates to match against host certificate" +msgstr "匹配主机证书的 ca 证书路径" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Path to drivers (instead of default)" +msgstr "驱动程序的路径(而不是默认)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:63 +msgid "Path to state file" +msgstr "状态文件的路径" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Period after which data is considered stale" +msgstr "数据过期时间" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Poll Interval" +msgstr "轮询间隔" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:29 +msgid "Poll frequency" +msgstr "轮询频率" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:34 +msgid "Poll frequency alert" +msgstr "轮询频率警报" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:197 +msgid "Polling Frequency(s)" +msgstr "轮询频率(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:27 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:195 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:224 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:46 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:202 +msgid "Port" +msgstr "端口" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:200 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:229 +msgid "Power value" +msgstr "功率值" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:206 +msgid "Product (regex)" +msgstr "产品(正则表达式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:69 +msgid "Replace battery message" +msgstr "替换电池消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Require SSL and make sure server CN matches hostname" +msgstr "需要 SSL 并确保服务器 CN 与主机名匹配" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Retry Delay" +msgstr "重试延迟" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:32 +msgid "Role" +msgstr "角色" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "Run drivers in a chroot(2) environment" +msgstr "在 chroot(2) 环境中运行驱动程序" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "RunAs User" +msgstr "RunAs 用户" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:125 +msgid "SNMP Community" +msgstr "SNMP 社区" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:222 +msgid "SNMP retries" +msgstr "SNMP 重试" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:226 +msgid "SNMP timeout(s)" +msgstr "SNMP 超时" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:230 +msgid "SNMP version" +msgstr "SNMP 版本" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:232 +msgid "SNMPv1" +msgstr "SNMPv1" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:233 +msgid "SNMPv2c" +msgstr "SNMPv2c" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:234 +msgid "SNMPv3" +msgstr "SNMPv3" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:219 +msgid "Serial Number" +msgstr "序列号" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "Set USB serial port permissions" +msgstr "设置 USB 串口权限" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:25 +msgid "Set variables" +msgstr "设置变量" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:22 +msgid "Shutdown command" +msgstr "关机命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:66 +msgid "Shutdown message" +msgstr "关机消息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:33 +msgid "Slave" +msgstr "从设备" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Synchronous Communication" +msgstr "同步通信" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:115 +msgid "The name of this section will be used as UPS name elsewhere" +msgstr "此部分的名称将在其他地方用作 UPS 名称" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Time in seconds between driver start retry attempts." +msgstr "驱动程序重试之间的间隔(秒)。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Time in seconds that upsdrvctl will wait for driver to finish starting" +msgstr "upsdrvctl 等待驱动程序完成启动的时间(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:183 +msgid "UPS Master" +msgstr "UPS 主设备" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:51 +msgid "UPS Server Global Settings" +msgstr "UPS 服务器全局设置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:212 +msgid "UPS Slave" +msgstr "UPS 从设备" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +msgid "UPS name" +msgstr "UPS 名称" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:121 +msgid "USB Bus(es) (regex)" +msgstr "USB 总线(正则表达式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:209 +msgid "USB Product Id" +msgstr "USB 产品 ID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:241 +msgid "USB Vendor Id" +msgstr "USB 供应商 ID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "" +"Use upscmd -l to see full list which the commands your UPS supports " +"(requires upscmd package)" +msgstr "使用 upscmd -l 查看 UPS 支持的命令的完整列表(需要 upscmd包)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "" +"User as which to execute driver; requires device file accessed by driver to " +"be read-write for that user." +msgstr "执行驱动程序的用户;要求驱动程序访问的设备文件对该用户是可读写的。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:205 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:234 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:16 +msgid "Username" +msgstr "用户名" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:238 +msgid "Vendor (regex)" +msgstr "供应商(正则表达式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Verify all connection with SSL" +msgstr "验证所有 SSL 连接" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Workaround for buggy firmware" +msgstr "有缺陷的固件的解决方法" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:94 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:103 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:111 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:119 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:127 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:135 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:143 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:151 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:159 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:167 +msgid "Write to syslog" +msgstr "写入 syslog" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "chroot" +msgstr "chroot" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +msgid "upsmon drops privileges to this user" +msgstr "upsmon 删除此用户的权限" diff --git a/applications/luci-app-nut/po/zh-tw/nut.po b/applications/luci-app-nut/po/zh-tw/nut.po new file mode 100644 index 0000000000..6d0e07a5ae --- /dev/null +++ b/applications/luci-app-nut/po/zh-tw/nut.po @@ -0,0 +1,603 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-04 00:24+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Language: zh_CN\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:216 +msgid "Additional Shutdown Time(s)" +msgstr "額外關機時間(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:37 +msgid "Addresses on which to listen" +msgstr "要監聽的地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:23 +msgid "Allowed actions" +msgstr "允許的動作" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "As configured by NUT" +msgstr "由 NUT 配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Bytes to read from interrupt pipe" +msgstr "從中斷管道讀取的位元組數" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "CA Certificate path" +msgstr "CA 證書路徑" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:73 +msgid "Certificate file (SSL)" +msgstr "證書檔案(SSL)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:63 +msgid "Communications lost message" +msgstr "通訊丟失訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:60 +msgid "Communications restored message" +msgstr "通訊恢復訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:35 +msgid "Control UPS via CGI" +msgstr "通過 CGI 控制 UPS" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:43 +msgid "Deadtime" +msgstr "無反應時間" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Default for UPSes without this field." +msgstr "沒有此欄位的 UPS 的預設值。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Delay for kill power command" +msgstr "斷電後執行命令的延時" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "Delay to power on UPS if power returns after kill power" +msgstr "如果斷電後電源恢復,則延遲開啟 UPS" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:129 +msgid "Description (Display)" +msgstr "說明(顯示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:32 +msgid "Display name" +msgstr "顯示名稱" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "Don't lock port when starting driver" +msgstr "啟動驅動程式時不要鎖定埠" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:132 +msgid "Driver" +msgstr "驅動程式" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:114 +msgid "Driver Configuration" +msgstr "驅動程式配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:77 +msgid "Driver Global Settings" +msgstr "驅動程式全域性設定" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Driver Path" +msgstr "驅動程式路徑" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:212 +msgid "Driver Shutdown Order" +msgstr "驅動程式關閉順序" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Driver waits for data to be consumed by upsd before publishing more." +msgstr "在釋出更多內容之前,驅動程式會等待 upsd 處理完資料。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +msgid "Drop privileges to this user" +msgstr "降低許可權至此使用者" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:40 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "" +"Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) " +"group read-write as user 'nut'" +msgstr "" +"啟用熱插拔指令碼,使所有 ttyUSB 裝置(例如序列 USB)組讀寫為使用者“nut”" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:93 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:102 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:110 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:118 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:126 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:134 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:142 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:150 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:158 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:166 +msgid "Execute notify command" +msgstr "執行 notify 命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:26 +msgid "Forced Shutdown" +msgstr "強制關機" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:57 +msgid "Forced shutdown message" +msgstr "強制關機訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:10 +msgid "Global Settings" +msgstr "全域性設定" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:13 +msgid "Go to NUT CGI" +msgstr "前往 NUT CGI" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:16 +msgid "Host" +msgstr "主機" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:23 +msgid "Hostname or IP address" +msgstr "主機名或 IP 地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:191 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:220 +msgid "Hostname or address of UPS" +msgstr "UPS 的主機名或地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:39 +msgid "Hot Sync" +msgstr "熱同步" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:41 +msgid "IP Address" +msgstr "IP 地址" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:95 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:104 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:112 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:120 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:128 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:136 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:144 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:152 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:160 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:168 +msgid "Ignore" +msgstr "忽略" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:142 +msgid "Ignore Low Battery" +msgstr "忽略低電量" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "Instant commands" +msgstr "即時命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:146 +msgid "Interrupt Only" +msgstr "僅中斷" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:150 +msgid "Interrupt Size" +msgstr "中斷大小" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:54 +msgid "Low battery message" +msgstr "電池電量低" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:163 +msgid "Manufacturer (Display)" +msgstr "製造商(展示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:34 +msgid "Master" +msgstr "主裝置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Max USB HID Length Reported" +msgstr "報告的最大 USB HID 長度" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Maximum Age of Data" +msgstr "最大資料年齡" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:87 +msgid "Maximum Start Delay" +msgstr "最大啟動延遲" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:67 +msgid "Maximum connections" +msgstr "最大連線數" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maximum number of times to try starting a driver." +msgstr "嘗試啟動驅動程式的最大次數。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Maximum time in seconds between refresh of UPS status" +msgstr "重新整理 UPS 狀態之間的最長時間(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:91 +msgid "Maxium Retries" +msgstr "最大重試次數" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Maxium Start Delay" +msgstr "最大啟動延遲" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:17 +msgid "Minimum required number or power supplies" +msgstr "所需的最低數量或電源" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:166 +msgid "Model (Display)" +msgstr "型號(顯示)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:9 +msgid "NUT CGI Access" +msgstr "NUT CGI 訪問" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:12 +msgid "NUT Users" +msgstr "NUT 使用者" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:188 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:217 +msgid "Name of UPS" +msgstr "UPS 的名稱" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:11 +msgid "Network UPS Tools" +msgstr "網路 UPS 工具" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:22 +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:6 +msgid "Network UPS Tools (CGI)" +msgstr "網路 UPS 工具(CGI)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:18 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:7 +msgid "Network UPS Tools (Monitor)" +msgstr "網路 UPS 工具(監控)" + +#: applications/luci-app-nut/luasrc/controller/nut.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:9 +msgid "Network UPS Tools (Server)" +msgstr "網路 UPS 工具(伺服器)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:7 +msgid "Network UPS Tools CGI Configuration" +msgstr "網路 UPS 工具 CGI 配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:8 +msgid "Network UPS Tools Monitoring Configuration" +msgstr "網路 UPS 工具監控配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:10 +msgid "Network UPS Tools Server Configuration" +msgstr "網路 UPS 工具伺服器配置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:169 +msgid "No Lock" +msgstr "沒有鎖" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:72 +msgid "No communications message" +msgstr "沒有通訊資訊" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:173 +msgid "No low/high voltage transfer OIDs" +msgstr "沒有低壓/高壓傳輸 OID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:75 +msgid "No parent message" +msgstr "沒有父資訊" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:90 +msgid "Notification defaults" +msgstr "通知預設值" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:26 +msgid "Notify command" +msgstr "通知命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:99 +msgid "Notify when back online" +msgstr "重新聯機時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:163 +msgid "Notify when battery needs replacing" +msgstr "電池需要更換時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:147 +msgid "Notify when communications lost" +msgstr "通訊丟失時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:139 +msgid "Notify when communications restored" +msgstr "通訊恢復時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:131 +msgid "Notify when force shutdown" +msgstr "強行關閉時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:115 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:123 +msgid "Notify when low battery" +msgstr "低電量時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:107 +msgid "Notify when on battery" +msgstr "使用電池時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:155 +msgid "Notify when shutting down" +msgstr "關機時通知" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:177 +msgid "Off Delay(s)" +msgstr "關閉延遲(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:181 +msgid "On Delay(s)" +msgstr "開啟延遲(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:51 +msgid "On battery message" +msgstr "開啟電池訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:48 +msgid "Online message" +msgstr "在線訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:208 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:237 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:19 +msgid "Password" +msgstr "密碼" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:174 +msgid "Path containing ca certificates to match against host certificate" +msgstr "匹配主機證書的 ca 證書路徑" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:83 +msgid "Path to drivers (instead of default)" +msgstr "驅動程式的路徑(而不是預設)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:63 +msgid "Path to state file" +msgstr "狀態檔案的路徑" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:54 +msgid "Period after which data is considered stale" +msgstr "資料過期時間" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:101 +msgid "Poll Interval" +msgstr "輪詢間隔" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:29 +msgid "Poll frequency" +msgstr "輪詢頻率" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:34 +msgid "Poll frequency alert" +msgstr "輪詢頻率警報" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:197 +msgid "Polling Frequency(s)" +msgstr "輪詢頻率(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:27 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:195 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:224 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:46 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:202 +msgid "Port" +msgstr "埠" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:200 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:229 +msgid "Power value" +msgstr "功率值" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:206 +msgid "Product (regex)" +msgstr "產品(正則表示式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:69 +msgid "Replace battery message" +msgstr "替換電池訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Require SSL and make sure server CN matches hostname" +msgstr "需要 SSL 並確保伺服器 CN 與主機名匹配" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Retry Delay" +msgstr "重試延遲" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:32 +msgid "Role" +msgstr "角色" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "Run drivers in a chroot(2) environment" +msgstr "在 chroot(2) 環境中執行驅動程式" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:59 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "RunAs User" +msgstr "RunAs 使用者" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:125 +msgid "SNMP Community" +msgstr "SNMP 社群" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:222 +msgid "SNMP retries" +msgstr "SNMP 重試" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:226 +msgid "SNMP timeout(s)" +msgstr "SNMP 超時" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:230 +msgid "SNMP version" +msgstr "SNMP 版本" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:232 +msgid "SNMPv1" +msgstr "SNMPv1" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:233 +msgid "SNMPv2c" +msgstr "SNMPv2c" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:234 +msgid "SNMPv3" +msgstr "SNMPv3" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:219 +msgid "Serial Number" +msgstr "序列號" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:138 +msgid "Set USB serial port permissions" +msgstr "設定 USB 串列埠許可權" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:25 +msgid "Set variables" +msgstr "設定變數" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:22 +msgid "Shutdown command" +msgstr "關機命令" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:66 +msgid "Shutdown message" +msgstr "關機訊息" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:33 +msgid "Slave" +msgstr "從裝置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:106 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:244 +msgid "Synchronous Communication" +msgstr "同步通訊" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:115 +msgid "The name of this section will be used as UPS name elsewhere" +msgstr "此部分的名稱將在其他地方用作 UPS 名稱" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:96 +msgid "Time in seconds between driver start retry attempts." +msgstr "驅動程式重試之間的間隔(秒)。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:158 +msgid "Time in seconds that upsdrvctl will wait for driver to finish starting" +msgstr "upsdrvctl 等待驅動程式完成啟動的時間(秒)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:183 +msgid "UPS Master" +msgstr "UPS 主裝置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:51 +msgid "UPS Server Global Settings" +msgstr "UPS 伺服器全域性設定" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:212 +msgid "UPS Slave" +msgstr "UPS 從裝置" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_cgi.lua:20 +msgid "UPS name" +msgstr "UPS 名稱" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:121 +msgid "USB Bus(es) (regex)" +msgstr "USB 匯流排(正則表示式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:209 +msgid "USB Product Id" +msgstr "USB 產品 ID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:241 +msgid "USB Vendor Id" +msgstr "USB 供應商 ID" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:29 +msgid "" +"Use upscmd -l to see full list which the commands your UPS supports " +"(requires upscmd package)" +msgstr "使用 upscmd -l 檢視 UPS 支援的命令的完整列表(需要 upscmd包)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:110 +msgid "" +"User as which to execute driver; requires device file accessed by driver to " +"be read-write for that user." +msgstr "執行驅動程式的使用者;要求驅動程式訪問的裝置檔案對該使用者是可讀寫的。" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:205 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:234 +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:16 +msgid "Username" +msgstr "使用者名稱" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:238 +msgid "Vendor (regex)" +msgstr "供應商(正則表示式)" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:178 +msgid "Verify all connection with SSL" +msgstr "驗證所有 SSL 連線" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:154 +msgid "Workaround for buggy firmware" +msgstr "有缺陷的韌體的解決方法" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:94 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:103 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:111 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:119 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:127 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:135 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:143 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:151 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:159 +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:167 +msgid "Write to syslog" +msgstr "寫入 syslog" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_server.lua:80 +msgid "chroot" +msgstr "chroot" + +#: applications/luci-app-nut/luasrc/model/cbi/nut_monitor.lua:14 +msgid "upsmon drops privileges to this user" +msgstr "upsmon 刪除此使用者的許可權" diff --git a/applications/luci-app-olsr/po/ca/olsr.po b/applications/luci-app-olsr/po/ca/olsr.po index 4de94e1e04..ceaab4e0bb 100644 --- a/applications/luci-app-olsr/po/ca/olsr.po +++ b/applications/luci-app-olsr/po/ca/olsr.po @@ -27,23 +27,23 @@ msgstr "Nodes OLSR actius" msgid "Active host net announcements" msgstr "Anuncis de xarxa de màquines actives" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Ajusts avançats" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Permet els passarel·les amb NAT " -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -70,8 +70,8 @@ msgstr "" msgid "Broadcast address" msgstr "Adreça de difusió" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -113,31 +113,31 @@ msgstr "" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Habilita" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Habilita aquesta interfície." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Habilitat" @@ -145,13 +145,13 @@ msgstr "Habilitat" msgid "Expected retransmission count" msgstr "Compte de retransmissió previst" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Mètrica FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -161,8 +161,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -171,17 +171,17 @@ msgstr "" msgid "Gateway" msgstr "Passarel·la" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Ajusts generals" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Ajusts generals" @@ -199,8 +199,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -209,17 +209,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "Anuncis HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Interval HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Temps de validesa HNA" @@ -228,22 +228,22 @@ msgstr "Temps de validesa HNA" msgid "HNA6 Announcements" msgstr "Anuncis HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Interval Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Temps de validesa Hello" @@ -261,8 +261,8 @@ msgstr "" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -288,18 +288,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Adreces IP" @@ -314,26 +314,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Difusió IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -344,52 +344,52 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "Difusió selectiva IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -398,14 +398,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -414,10 +414,10 @@ msgstr "" msgid "Interface" msgstr "Interfície" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -425,15 +425,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfícies" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -441,24 +441,24 @@ msgstr "" msgid "Internet protocol" msgstr "Protocol d'Internet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -472,30 +472,30 @@ msgstr "Rutes OLSR conegudes" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "Envelliment LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "Algoritme LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "Nivell LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -509,28 +509,28 @@ msgstr "Últim salt" msgid "Legend" msgstr "Llegenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Biblioteca" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Ajusts de qualitat d'enllaç" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -540,18 +540,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "Multiplicador de qualitat d'enllaç" @@ -569,22 +569,22 @@ msgid "Local interface IP" msgstr "IP d'interfície local" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Interval MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Temps de validesa MID" @@ -592,8 +592,8 @@ msgstr "Temps de validesa MID" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "IP principal" @@ -608,17 +608,17 @@ msgstr "" msgid "Metric" msgstr "Mètric" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Mode" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -635,8 +635,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "Llindar NAT" @@ -662,22 +662,22 @@ msgstr "Veïns" msgid "Netmask" msgstr "Màscara de xarxa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Xarxa" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Adreça de xarxa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -702,21 +702,21 @@ msgstr "Anuncis OLSR - HNA" msgid "OLSR - HNA6-Announcements" msgstr "Anuncis OLSR - HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Connectors" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "Dimoni OLSR" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "Dimoni OLSR - Interfície" @@ -773,35 +773,35 @@ msgstr "Visió de conjunt d'anuncis d'interfície múltiple coneguts" msgid "Overview of smart gateways in this network" msgstr "Visió de conjunt de les passarel·les intel·ligents en aquesta xarxa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Configuració de connector" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Connectors" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Taxa de sondeig" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Port" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -863,8 +863,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -880,15 +880,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -912,34 +912,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Interval TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Temps de validesa TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "Valor TOS" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -948,27 +948,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -976,10 +976,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "Sincronització i validitat" @@ -987,8 +987,8 @@ msgstr "Sincronització i validitat" msgid "Topology" msgstr "Topologia" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1003,13 +1003,13 @@ msgstr "No s'ha pogut connectar al dimoni OLSR" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Utilitza histèresi" @@ -1034,24 +1034,24 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Pes" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1076,8 +1076,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Voluntat" diff --git a/applications/luci-app-olsr/po/cs/olsr.po b/applications/luci-app-olsr/po/cs/olsr.po index fe7e41eee5..93e3715f94 100644 --- a/applications/luci-app-olsr/po/cs/olsr.po +++ b/applications/luci-app-olsr/po/cs/olsr.po @@ -23,23 +23,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Pokročilé nastavení" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -66,8 +66,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -109,31 +109,31 @@ msgstr "" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Povolit" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Povolit toto rozhraní." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Povoleno" @@ -141,13 +141,13 @@ msgstr "Povoleno" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -157,8 +157,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -167,17 +167,17 @@ msgstr "" msgid "Gateway" msgstr "Gateway" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Obecné nastavení" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Obecné nastavení" @@ -195,8 +195,8 @@ msgid "Green" msgstr "Zelený" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -205,17 +205,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -223,22 +223,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -256,8 +256,8 @@ msgstr "Skrýt IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -283,18 +283,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP adresy" @@ -309,26 +309,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -339,52 +339,52 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 multicast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -393,14 +393,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -409,10 +409,10 @@ msgstr "" msgid "Interface" msgstr "Rozhraní" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -420,15 +420,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Rozhraní" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -436,24 +436,24 @@ msgstr "" msgid "Internet protocol" msgstr "Internet protokol" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -467,30 +467,30 @@ msgstr "" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ algoritmus" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -504,28 +504,28 @@ msgstr "Poslední skok (hop)" msgid "Legend" msgstr "Legenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Knihovna" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -535,18 +535,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -564,22 +564,22 @@ msgid "Local interface IP" msgstr "IP lokálního rozhraní" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -587,8 +587,8 @@ msgstr "" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "Hlavní IP" @@ -603,17 +603,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -630,8 +630,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -657,22 +657,22 @@ msgstr "Sousedé" msgid "Netmask" msgstr "Maska sítě" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Síť" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -696,21 +696,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - pluginy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -767,35 +767,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Konfigurace pluginu" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Pluginy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Port" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -857,8 +857,8 @@ msgid "Signal Noise Ratio in dB" msgstr "Úroveň šumu v dB" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -874,15 +874,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -906,34 +906,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS hodnota" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -942,27 +942,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -970,10 +970,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -981,8 +981,8 @@ msgstr "" msgid "Topology" msgstr "Topologie" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -997,13 +997,13 @@ msgstr "" msgid "Uplink" msgstr "Uplink" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1028,24 +1028,24 @@ msgstr "Velmi dobré (SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Váha" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1070,8 +1070,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/de/olsr.po b/applications/luci-app-olsr/po/de/olsr.po index 51cc1a84c4..d3271ff856 100644 --- a/applications/luci-app-olsr/po/de/olsr.po +++ b/applications/luci-app-olsr/po/de/olsr.po @@ -25,23 +25,23 @@ msgstr "Aktive OLSR-Knoten" msgid "Active host net announcements" msgstr "Aktive HNA-Ankündigungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Erweiterte Einstellungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Gateways mit NAT erlauben" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Auswahl von IPv4-Gateways erlauben, die zum Internet hin NAT verwenden" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Uplink ankündigen" @@ -69,8 +69,8 @@ msgstr "" msgid "Broadcast address" msgstr "Broadcast-Adresse" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -112,19 +112,19 @@ msgstr "Konfiguration herunterladen" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Aktivieren" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -132,13 +132,13 @@ msgstr "" "SmartGateway aktivieren. Ist diese Option deaktiviert, dann werden alle " "folgenden SmartGateway Einstellungen ignoriert. Der Defaultwert ist \"no\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Dieses Interface benutzen." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Aktiviert" @@ -146,13 +146,13 @@ msgstr "Aktiviert" msgid "Expected retransmission count" msgstr "Zu erwartende Sendeversuche pro Paket" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB-Metrik" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -168,8 +168,8 @@ msgstr "" "aber nur, wenn sich auch der Nexthop verändert hat. Der Defaultwert ist " "\"flat\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" "Fisheye Mechanismus für TC-Nachrichten (ausgewählt entspricht ein). Der " @@ -180,17 +180,17 @@ msgstr "" msgid "Gateway" msgstr "Gateway" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Allgemeine Einstellungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Allgemeine Einstellungen" @@ -208,8 +208,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -218,17 +218,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "HNA-Ankündigungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA-Intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "HNA-Gültigkeit" @@ -237,22 +237,22 @@ msgstr "HNA-Gültigkeit" msgid "HNA6 Announcements" msgstr "HNA-Ankündigungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hello-Intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Hello-Gültigkeit" @@ -270,8 +270,8 @@ msgstr "" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -302,8 +302,8 @@ msgstr "" "Rechner in einem OLSR-geroutetem Netzwerk können Konnektivität zu externen " "Netzwerken mittels HNA-Nachrichten ankündigen." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -314,10 +314,10 @@ msgstr "" "aber das Registrieren von Nachbarknoten. Der Defaultwert ist \"eingeschaltet" "\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP-Adressen" @@ -334,13 +334,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 Broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -350,13 +350,13 @@ msgstr "" "Beispiel ist 255.255.255.255. Der Defaultwert ist \"0.0.0.0\". Dies " "verwendet die Broadcastadresse des Interfaces." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 Quell-IP" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -369,17 +369,17 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 Multicast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -387,25 +387,25 @@ msgstr "" "IPv6 Multicast-Adresse. Der Defaultwert ist \"FF02::6D\", die linklocal " "Multicastadresse für MANETs." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "IPv6 Netzwerk muss in 'full notation', der Prefix in CIDR Schreibweise " "eingegeben werden." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 Quell-IP" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -415,13 +415,13 @@ msgstr "" "angegebenen Prefix liegt. Der Defaultwert ist \"0::/0\", damit wird eine " "IPv6-Adresse des Interfaces verwendet die nicht linklocal ist." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "IPv6-Präfix des Uplinks" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -436,16 +436,16 @@ msgstr "" "><b>ACHTUNG:</b> Diese Einstellung darf nicht zusammen mit der etx_ffeth " "Metrik verwendet werden!<br />Der Defaultwert ist \"1.0\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" "Benutzt dieser Knoten NAT für die Verbindung zum Internet? Der Defaultwert " "ist \"yes\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -454,10 +454,10 @@ msgstr "" msgid "Interface" msgstr "Schnittstelle" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -468,15 +468,15 @@ msgstr "" "\"ether\". Der Defaultwert ist \"mesh\"." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Schnittstellen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Schnittstellen-Standards" @@ -484,8 +484,8 @@ msgstr "Schnittstellen-Standards" msgid "Internet protocol" msgstr "Internet Protokoll" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." @@ -493,17 +493,17 @@ msgstr "" "Intervall mit dem Netzwerkschnittstellen auf Änderungen in ihrer " "Konfiguration überprüft werden (in Sekunden). Der Defaultwert ist \"2.5\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -517,30 +517,30 @@ msgstr "Bekannte OLSR-Routen" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ-Alterung" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ-Algorithmus" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ-Fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ-Level" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -554,20 +554,20 @@ msgstr "letzter Hop" msgid "Legend" msgstr "Legende" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Bibliothek" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Linkqualitätseinstellungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -577,8 +577,8 @@ msgstr "" "verwendet werden. Kleinere Werte bedeuten, dass ETX-Werte sich langsamer " "verändern. Erlaubte Werte sind 0.01 bis 1.0." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -595,8 +595,8 @@ msgstr "" "Variante von etx_ff die Ethernetlinks mit ETX 0.1 erlaubt<br />Der Default " "ist \"etx_ff\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -606,10 +606,10 @@ msgstr "" "><b>0</b> = Linkquality nicht benutzen<br /><b>2</b> = Linkquality für die " "Wahl von MPRs und fürs Routing benutzen.<br />Der Defaultwert ist \"2\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "LQ-Multiplikator" @@ -627,22 +627,22 @@ msgid "Local interface IP" msgstr "Lokale Interface-IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID-Intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "MID-Gültigkeit" @@ -650,8 +650,8 @@ msgstr "MID-Gültigkeit" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "Haupt-IP" @@ -666,17 +666,17 @@ msgstr "" msgid "Metric" msgstr "Metrik" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Modus" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -698,8 +698,8 @@ msgstr "" "zu 192.168.0.1: 192.168.0.1 0.5<br />reduziere die LQ für alle Nodes die mit " "diesem Interface kommunizieren um 20%: default 0.8" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "NAT-Schwellenwert" @@ -725,22 +725,22 @@ msgstr "Nachbarn" msgid "Netmask" msgstr "Netzmaske" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Netzwerk" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Netzwerk-Adresse" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Abfrageintervall für Schnittstellenänderungen" @@ -765,21 +765,21 @@ msgstr "OLSR - HNA-Ankündigungen" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA-Ankündigungen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR Daemon" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR Daemon - Schnittstelle" @@ -836,35 +836,35 @@ msgstr "Übersicht über bekannte Mehrfachschnittstellenmeldungen" msgid "Overview of smart gateways in this network" msgstr "Übersicht über Smart Gateways in diesem Netzwerk." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Pluginkonfiguration" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "Abfragerate für OLSRd-Sockets in Sekunden. Der Defaultwert ist 0.05." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Abfragerate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Port" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -937,8 +937,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "Smart Gateway" @@ -954,8 +954,8 @@ msgstr "Smart Gateway ist auf diesem System nicht konfiguriert." msgid "Source address" msgstr "Quell-IP" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -964,8 +964,8 @@ msgstr "" "Der erste Wert ist die Upload-, der zweite Wert die Downloadgeschwindigkeit. " "Der Defaultwert ist \"128 1024\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "Geschwindigkeit des Uplinks" @@ -989,34 +989,34 @@ msgstr "Erfolgsquote vom Nachbarn empfangener Pakete" msgid "Success rate of packages sent to the neighbour" msgstr "Erfolgsquote zum Nachbarn gesendeter Pakete" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC-Intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "TC-Gültigkeit" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS-Wert" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -1028,8 +1028,8 @@ msgstr "" "erlaubt damit Mesh-Routing für jegliche Netzwerkgeräte. Besuche <a " "href='http://www.olsr.org'>olsrd.org</a> für Hilfe und Dokumentation." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1038,13 +1038,13 @@ msgstr "" "dann wird der Bereitschaftswert automatisch anhand von Akkukapazität und " "Stromversorgung berechnet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "Interface das OLSRd verwenden soll." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1052,8 +1052,8 @@ msgstr "" "Port, den OLSRd benutzt. Dieser sollte in der Regel auf dem Defaultwert 698 " "bleiben, was dem von IANA zugewiesenen Port für OLSRd entspricht." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1065,10 +1065,10 @@ msgstr "" "Übersetzung der IPv6-Adresse zu benutzen. Die maximale erlaubte Länge des " "Präfix ist 64 bit. Der Defaultwert ist \"::/0\" (kein Präfix)." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "Taktung und Validität" @@ -1076,8 +1076,8 @@ msgstr "Taktung und Validität" msgid "Topology" msgstr "Topologie" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1093,13 +1093,13 @@ msgstr "Es konnte keine Verbindung zum OLSR-Daemon hergestellt werden!" msgid "Uplink" msgstr "Upload-Bandbreite" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "Der Uplink benutzt NAT." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Hysterese aktivieren" @@ -1124,8 +1124,8 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1133,17 +1133,17 @@ msgstr "" "WARNUNG: kmod-ipip ist nicht installiert. Ohne kmod-ipip wird SmartGateway " "nicht funktionieren!" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Gewichtung" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1184,8 +1184,8 @@ msgstr "" "2000::/3). Der Defaultwert ist \"both\" (sowohl IPv4 als auch IPv6 Uplink " "ankündigen sofern verfügbar)." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Bereitschaft" diff --git a/applications/luci-app-olsr/po/el/olsr.po b/applications/luci-app-olsr/po/el/olsr.po index de62fa4fcb..65850e30c0 100644 --- a/applications/luci-app-olsr/po/el/olsr.po +++ b/applications/luci-app-olsr/po/el/olsr.po @@ -25,23 +25,23 @@ msgstr "Ενεργοί κόμβοι OLSR" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Προχωρημένες Ρυθμίσεις" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -68,8 +68,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -111,31 +111,31 @@ msgstr "" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Ενεργοποίηση" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Ενεργοποίηση αυτής της διεπαφής." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -143,13 +143,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -159,8 +159,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -169,17 +169,17 @@ msgstr "" msgid "Gateway" msgstr "Πύλη" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Γενικές Ρυθμίσεις" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Γενικές ρυθμίσεις" @@ -197,8 +197,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -207,17 +207,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -225,22 +225,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -258,8 +258,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -285,18 +285,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Διευθύνσεις IP" @@ -311,26 +311,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -341,52 +341,52 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -395,14 +395,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -411,10 +411,10 @@ msgstr "" msgid "Interface" msgstr "Διεπαφή" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -422,15 +422,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Διεπαφές" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -438,24 +438,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -469,30 +469,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -506,28 +506,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -537,18 +537,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -566,22 +566,22 @@ msgid "Local interface IP" msgstr "IP τοπικής διεπαφής" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -589,8 +589,8 @@ msgstr "" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -605,17 +605,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -632,8 +632,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -659,22 +659,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Δίκτυο" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Διεύθυνση δικτύου" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -698,21 +698,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR Δαίμονας" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR Δαίμονας - Διεπαφή" @@ -769,35 +769,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Πόρτα" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -859,8 +859,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -876,15 +876,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -908,34 +908,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -944,27 +944,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -972,10 +972,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -983,8 +983,8 @@ msgstr "" msgid "Topology" msgstr "Τοπολογία" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -999,13 +999,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1030,24 +1030,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1072,8 +1072,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/en/olsr.po b/applications/luci-app-olsr/po/en/olsr.po index ee68cdf692..5d4bde36be 100644 --- a/applications/luci-app-olsr/po/en/olsr.po +++ b/applications/luci-app-olsr/po/en/olsr.po @@ -25,23 +25,23 @@ msgstr "Active OLSR nodes" msgid "Active host net announcements" msgstr "Active host net announcements" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -68,8 +68,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -111,31 +111,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -143,13 +143,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "Expected retransmission count" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB metric" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -159,8 +159,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -169,17 +169,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "General settings" @@ -197,8 +197,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -207,17 +207,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "HNA validity time" @@ -226,22 +226,22 @@ msgstr "HNA validity time" msgid "HNA6 Announcements" msgstr "OLSR - HNA-Announcements" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hello interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Hello validity time" @@ -259,8 +259,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -286,18 +286,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -312,26 +312,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -342,52 +342,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -396,14 +396,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -412,10 +412,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -423,15 +423,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -439,24 +439,24 @@ msgstr "" msgid "Internet protocol" msgstr "Internet protocol" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -470,30 +470,30 @@ msgstr "Known OLSR routes" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ aging" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ algorithm" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ level" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -507,28 +507,28 @@ msgstr "Last hop" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Library" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -538,18 +538,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -567,22 +567,22 @@ msgid "Local interface IP" msgstr "Local interface IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "MID validity time" @@ -590,8 +590,8 @@ msgstr "MID validity time" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -606,17 +606,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -633,8 +633,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -660,22 +660,22 @@ msgstr "" msgid "Netmask" msgstr "Netmask" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -700,21 +700,21 @@ msgstr "OLSR - HNA-Announcements" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA-Announcements" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR Daemon" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -771,35 +771,35 @@ msgstr "Overview of known multiple interface announcements" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Plugin configuration" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Pollrate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -861,8 +861,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -878,15 +878,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -910,34 +910,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC interval" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "TC validity time" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -946,27 +946,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -974,10 +974,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -985,8 +985,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1001,13 +1001,13 @@ msgstr "Unable to connect to the OLSR daemon!" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Use hysteresis" @@ -1032,24 +1032,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1074,8 +1074,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Willingness" diff --git a/applications/luci-app-olsr/po/es/olsr.po b/applications/luci-app-olsr/po/es/olsr.po index 5251e9dba2..a94ee70673 100644 --- a/applications/luci-app-olsr/po/es/olsr.po +++ b/applications/luci-app-olsr/po/es/olsr.po @@ -25,23 +25,23 @@ msgstr "Nodos OLSR activos" msgid "Active host net announcements" msgstr "Declaraciones activas de máquinas 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 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" 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 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Permitir pasarelas con NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Permitir seleccionar una pasarela IPv4 con NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Declarar enlace de subida" @@ -68,8 +68,8 @@ msgstr "Ambos valores en notación decimal con punto." msgid "Broadcast address" msgstr "Dirección de propagación" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "Sólo puede ser una dirección IPv4 o IPv6 válidas o \"por defecto\"" @@ -114,19 +114,19 @@ msgstr "Configuración de descarga" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Activar" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -134,13 +134,13 @@ msgstr "" "Activar SmartGateway. Si se desactiva 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 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Activar esta interfaz." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Activado" @@ -148,13 +148,13 @@ msgstr "Activado" msgid "Expected retransmission count" msgstr "Contador de retransmisión esperado" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Métrica FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -170,8 +170,8 @@ msgstr "" "también, pero solo la actualiza si cambia el siguiente salto también. Por " "defecto \"flat\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "Mecanismo Fisheye para TCs (marcado = activado). Activado por defecto" @@ -180,17 +180,17 @@ msgstr "Mecanismo Fisheye para TCs (marcado = activado). Activado por defecto" msgid "Gateway" msgstr "Pasarela" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Configuración general" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Configuración general" @@ -208,8 +208,8 @@ msgid "Green" msgstr "Verde" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -218,17 +218,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "Declaraciones HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Intervalo HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Tiempo de validez de HNA" @@ -237,22 +237,22 @@ msgstr "Tiempo de validez de HNA" msgid "HNA6 Announcements" msgstr "Declaraciones HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Saludo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Intervalo de saludo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Tiempo de validez del saludo" @@ -270,8 +270,8 @@ msgstr "Ocultar IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -302,8 +302,8 @@ msgstr "" "Las máquinas de una red OLSR pueden declarar conectividad con redes externas " "usando mensajes HNA." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -313,10 +313,10 @@ msgstr "" "histéresis da más robustez a la sensibilidad de enlace pero retrasa el " "registro de vecinos. \"Sí\" por defecto" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Direcciones IP" @@ -333,13 +333,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Propagar IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -349,13 +349,13 @@ msgstr "" "\"255.255.255.255\". Por defecto es \"0.0.0.0\" que hace que se use la " "interfaz de propagación IP." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 origen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -368,17 +368,17 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "Multidifusión IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -386,25 +386,25 @@ msgstr "" "Dirección IPv6 de multidifusión. Por defecto es \"FF02::6D\", la dirección " "de multidifusión local en routers MANET." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "La red IPv6 debe escribirse en notación completa y el prefijo debe estar en " "notación CIDR." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 origen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -414,13 +414,13 @@ msgstr "" "de este parámetro. Por defecto es \"0::/0\" que provoca el uso de un " "interfaz IP no local." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "Prefijo IPv6 para el enlace de subida" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -433,14 +433,14 @@ msgstr "" "1.0, pero debería aproximarse a 1.0 si se cambia.<br /><b>AVISO:</b> No debe " "usarse junto con la métrica etx_ffeth!<br />Por defecto es 1.0." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "Este nodo usa NAT para conectar a internet. \"Sí\" por defecto." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -449,10 +449,10 @@ msgstr "Este nodo usa NAT para conectar a internet. \"Sí\" por defecto." msgid "Interface" msgstr "Interfaz" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -463,15 +463,15 @@ msgstr "" "Por defecto es \"mesh\"." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Valores por defecto de los interfaces" @@ -479,8 +479,8 @@ msgstr "Valores por defecto de los interfaces" msgid "Internet protocol" msgstr "Protocolo de Internet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." @@ -488,17 +488,17 @@ msgstr "" "Intervalo de sondeo de cambios de configuración a interfaces de red (en " "segundos). Por defecto es \"2.5\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "Valor no válido para LQMult-Value. Debe ser entre 0,01 y 1,0." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -514,30 +514,30 @@ msgstr "Rutas OLSR conocidas" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ - Envejecimiento" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ - Algoritmo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ - Ojo de pez" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ - Nivel" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -553,20 +553,20 @@ msgstr "Último salto" msgid "Legend" msgstr "Leyenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Biblioteca" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Configuración de calidad de enlace" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -577,8 +577,8 @@ msgstr "" "cambios más lentos en el valor ETX. (los valores permitidos están entre 0.01 " "y 1.0)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -595,8 +595,8 @@ msgstr "" "incompatible de etx_ff que permite enlaces ethernet con ETX 0.1.<br />Por " "defecto \"etx_ff\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -607,10 +607,10 @@ msgstr "" "calidad del enlace<br /><b>2</b> = use calidad del enlace para selección de " "MPR y enrutado<br />Por defecto es 2" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "Multilplicador de calidad de enlace" @@ -628,22 +628,22 @@ msgid "Local interface IP" msgstr "IP de la interfaz local" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Intervalo de MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Tiempo de validez de MID" @@ -651,8 +651,8 @@ msgstr "Tiempo de validez de MID" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "IP principal" @@ -670,17 +670,17 @@ msgstr "" msgid "Metric" msgstr "Métrica" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Modo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -706,8 +706,8 @@ msgstr "" "<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" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "Umbral NAT" @@ -733,22 +733,22 @@ msgstr "Vecinos" msgid "Netmask" msgstr "Máscara de red" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Red" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Dirección de red" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Intervalo de muestreo de cambios de nic" @@ -773,21 +773,21 @@ msgstr "OLSR - Declaraciones HNA" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - Declaraciones HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "Demonio OLSR" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "Demonio OLSR - Interfaz" @@ -844,35 +844,35 @@ msgstr "Declaraciones de múltiples interfaces conocidas" msgid "Overview of smart gateways in this network" msgstr "Pasarelas inteligentes en esta red" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Configuración del plugin" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "Ratio de muestreo de paquetes OLSR en segundos. Por defecto es 0.05." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Tasa de muestreo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Puerto" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -944,8 +944,8 @@ msgid "Signal Noise Ratio in dB" msgstr "Ratio señal / ruido en dB" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -961,8 +961,8 @@ msgstr "SmartGateway no está configurado." msgid "Source address" msgstr "Dirección origen" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -970,8 +970,8 @@ msgstr "" "Especifica la velocidad del enlace en kilobits/s. El primer parámetro es la " "subida y el segundo la bajada. Por defecto es \"128 1024\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "Velocidad de subida" @@ -995,34 +995,34 @@ msgstr "Ratio de éxito de paquetes recibidos de la vecindad" msgid "Success rate of packages sent to the neighbour" msgstr "Ratio de éxito de paquetes enviados a la vecindad" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Intervalo TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Validez de TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -1036,8 +1036,8 @@ msgstr "" "ethernet. Puede visitar <a href='http://www.olsr.org'>olsrd.org</a> para " "ayuda y documentación." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1045,13 +1045,13 @@ msgstr "" "Willingness fija a usar. Si no se establece se calculará dinámicamente " "basándose en el estado de la batería y la corriente. Por defecto es 3." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "Interfaz a usar por OLSRD." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1059,8 +1059,8 @@ msgstr "" "Puerto a usar por OLSR. Debería ser 698 tal y como asigna IANA. Puede tener " "un valor entre 1 y 65535." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1072,10 +1072,10 @@ msgstr "" "de dirección. La longitud máxima del prefijo es 64 bits. Por defecto es " "\"::/0\" (sin prefijo)." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "Tiempo y validez" @@ -1083,8 +1083,8 @@ msgstr "Tiempo y validez" msgid "Topology" msgstr "Topología" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1101,13 +1101,13 @@ msgstr "¡No puedo conectar con el demonio OLSR!" msgid "Uplink" msgstr "Enlace saliente" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "El enlace saliente usa NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Usar histéresis" @@ -1132,25 +1132,25 @@ msgstr "Muy bien (SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" "Aviso: kmod-ipip no está instalado. Sin kmod-ipip SmartGateway no funcionará." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Peso" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1188,8 +1188,8 @@ msgstr "" "buscando una HNA local de 0.0.0.0/0, ::ffff:0:0/96 o 2000::/3. Por defecto " "\"both\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Willingness" diff --git a/applications/luci-app-olsr/po/fr/olsr.po b/applications/luci-app-olsr/po/fr/olsr.po index a906f451f5..54b2c1023e 100644 --- a/applications/luci-app-olsr/po/fr/olsr.po +++ b/applications/luci-app-olsr/po/fr/olsr.po @@ -25,23 +25,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -68,8 +68,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -111,31 +111,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -143,13 +143,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -159,8 +159,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -169,17 +169,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -197,8 +197,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -207,17 +207,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -225,22 +225,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -258,8 +258,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -285,18 +285,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -311,26 +311,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -341,52 +341,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 multidiffusion" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -395,14 +395,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -411,10 +411,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -422,15 +422,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -438,24 +438,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -469,30 +469,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -506,28 +506,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -537,18 +537,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -566,22 +566,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -589,8 +589,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -605,17 +605,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -632,8 +632,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -659,22 +659,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -698,21 +698,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -769,35 +769,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -859,8 +859,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -876,15 +876,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -908,34 +908,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -944,27 +944,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -972,10 +972,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -983,8 +983,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -999,13 +999,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1030,24 +1030,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1072,8 +1072,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/he/olsr.po b/applications/luci-app-olsr/po/he/olsr.po index 5d34821121..bdc15444f0 100644 --- a/applications/luci-app-olsr/po/he/olsr.po +++ b/applications/luci-app-olsr/po/he/olsr.po @@ -20,23 +20,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -63,8 +63,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -106,31 +106,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -138,13 +138,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -154,8 +154,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -164,17 +164,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -192,8 +192,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -202,17 +202,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -220,22 +220,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -253,8 +253,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -280,18 +280,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -306,26 +306,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -336,52 +336,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -390,14 +390,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -406,10 +406,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -417,15 +417,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -464,30 +464,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -501,28 +501,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -532,18 +532,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -561,22 +561,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -584,8 +584,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -600,17 +600,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -627,8 +627,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -654,22 +654,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -693,21 +693,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -764,35 +764,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -854,8 +854,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -871,15 +871,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -903,34 +903,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -939,27 +939,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -967,10 +967,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -978,8 +978,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -994,13 +994,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1025,24 +1025,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1067,8 +1067,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/hu/olsr.po b/applications/luci-app-olsr/po/hu/olsr.po index 5d34821121..bdc15444f0 100644 --- a/applications/luci-app-olsr/po/hu/olsr.po +++ b/applications/luci-app-olsr/po/hu/olsr.po @@ -20,23 +20,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -63,8 +63,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -106,31 +106,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -138,13 +138,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -154,8 +154,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -164,17 +164,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -192,8 +192,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -202,17 +202,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -220,22 +220,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -253,8 +253,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -280,18 +280,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -306,26 +306,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -336,52 +336,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -390,14 +390,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -406,10 +406,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -417,15 +417,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -464,30 +464,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -501,28 +501,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -532,18 +532,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -561,22 +561,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -584,8 +584,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -600,17 +600,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -627,8 +627,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -654,22 +654,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -693,21 +693,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -764,35 +764,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -854,8 +854,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -871,15 +871,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -903,34 +903,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -939,27 +939,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -967,10 +967,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -978,8 +978,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -994,13 +994,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1025,24 +1025,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1067,8 +1067,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/it/olsr.po b/applications/luci-app-olsr/po/it/olsr.po index da23849091..43aeb17c3c 100644 --- a/applications/luci-app-olsr/po/it/olsr.po +++ b/applications/luci-app-olsr/po/it/olsr.po @@ -25,23 +25,23 @@ msgstr "Nodi OLSR attivi" msgid "Active host net announcements" msgstr "Annunci rete host attiva" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Opzioni avanzate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Permetti gateway con NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Permetti l'uso di gateway in uscita con NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Annuncia uplink" @@ -68,8 +68,8 @@ msgstr "Entrambi i valori devono essere nella notazione decimale puntata" msgid "Broadcast address" msgstr "Indirizzo di broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -111,19 +111,19 @@ msgstr "Configurazione Download" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Attiva" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -131,13 +131,13 @@ msgstr "" "Abitita SmartGateway. Se è disattivata, tutti gli altri parametri " "SmartGateway verrano ignorati. Predefinito è \"no\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Attiva questa interfaccia." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Attivato" @@ -145,13 +145,13 @@ msgstr "Attivato" msgid "Expected retransmission count" msgstr "Expected retransmission count" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Metrica FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -161,8 +161,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -171,17 +171,17 @@ msgstr "" msgid "Gateway" msgstr "Gateway" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Impostazioni Generali" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Impostazioni Generali" @@ -199,8 +199,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -209,17 +209,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "Annuncio di HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Intervallo HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Durata di validità HNA" @@ -228,22 +228,22 @@ msgstr "Durata di validità HNA" msgid "HNA6 Announcements" msgstr "Annuncio di HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Ciao" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Intervallo Saluto" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Durata validità Saluto" @@ -261,8 +261,8 @@ msgstr "" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -288,8 +288,8 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -299,10 +299,10 @@ msgstr "" "robustezza alla sensibilità del link ma rallenta la registrazione dei " "vicini. Default è \"si\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Indirizzi IP" @@ -319,13 +319,13 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -335,13 +335,13 @@ msgstr "" "255.255.255.255. Default is 0.0.0.0, il che abilita l'uso dell'ip di " "broadcast di default." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 source" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -354,41 +354,41 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 multicast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "IPv6 network deve essere specificata in full notation, il prefisso deve " "essere in CIDR notation." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 source" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -398,13 +398,13 @@ msgstr "" "questo parametro. Predefinito è \"0::/0\", il che abilita l'uso di un IP non-" "linklocal." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "IPv6-Prefix dell' uplink" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -418,15 +418,15 @@ msgstr "" "valore vicino a 1.0. <br /><b>ATTENZIONE:</b> Questo valore non deve essere " "utilizzato insieme con la metrica etx_ffeth!<br />Defaults a \"1.0\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" "Se questo nodo usa un NAT per connettersi a Internet. Predefinito è \"si\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -435,10 +435,10 @@ msgstr "" msgid "Interface" msgstr "Interfaccia" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -446,15 +446,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -462,24 +462,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -493,30 +493,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -530,28 +530,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -561,18 +561,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -590,22 +590,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -613,8 +613,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -629,17 +629,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -656,8 +656,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -683,22 +683,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -723,21 +723,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "Annuncio di HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -794,35 +794,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -884,8 +884,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -901,15 +901,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -933,34 +933,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -969,27 +969,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -997,10 +997,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -1008,8 +1008,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1024,13 +1024,13 @@ msgstr "Impossibile connetersi al demone OLSR!" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "L'uplink usa il NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Usa l'isteresi" @@ -1055,24 +1055,24 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Peso" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1110,8 +1110,8 @@ msgstr "" "cercando un HNA del tipo 0.0.0.0/0, ::ffff:0:0/96 or 2000::/3. Default " "setting is \"both\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/ja/olsr.po b/applications/luci-app-olsr/po/ja/olsr.po index 31de79d870..4b8176d781 100644 --- a/applications/luci-app-olsr/po/ja/olsr.po +++ b/applications/luci-app-olsr/po/ja/olsr.po @@ -25,23 +25,23 @@ msgstr "アクティブなOLSRノード" msgid "Active host net announcements" msgstr "アクティブなホストネットワーク通知" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "詳細設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "NATを使用するゲートウェイを選択可能にする" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "NATを介してパケットを送信するIPv4 ゲートウェイを選択可能にします" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "通知するアップリンク" @@ -68,8 +68,8 @@ msgstr "どちらの値もドット付き十進数の形式で入力してくだ msgid "Broadcast address" msgstr "ブロードキャストアドレス" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -111,19 +111,19 @@ msgstr "設定ダウンロード" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "有効" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -131,13 +131,13 @@ msgstr "" "スマートゲートウェイを有効にします。無効の場合、その他全てのスマートゲート" "ウェイの設定値は無視されます。標準設定は\"無効\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "このインターフェースを有効にします。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "有効" @@ -145,13 +145,13 @@ msgstr "有効" msgid "Expected retransmission count" msgstr "再送数の期待値" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB メトリック" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -167,8 +167,8 @@ msgstr "" "リック値として使用しますが、次ホップが変更した場合のみ更新を行います。標準設" "定は\"flat\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "TCsのfisheyeメカニズムを使用します。標準設定は\"有効\"です。" @@ -177,17 +177,17 @@ msgstr "TCsのfisheyeメカニズムを使用します。標準設定は\"有効 msgid "Gateway" msgstr "ゲートウェイ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "一般設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "一般設定" @@ -205,8 +205,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -215,17 +215,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "HNA 通知" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA 送信間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "HNA 有効時間" @@ -234,22 +234,22 @@ msgstr "HNA 有効時間" msgid "HNA6 Announcements" msgstr "HNA 通知" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hello 送信間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Hello 有効時間" @@ -267,8 +267,8 @@ msgstr "" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -294,8 +294,8 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -305,10 +305,10 @@ msgstr "" "効)。ヒステリシスはリンク検出に対するロバスト性を向上させますが、隣接ノードの" "登録が遅くなります。標準設定は\"有効\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IPアドレス" @@ -325,13 +325,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 ブロードキャスト" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -341,13 +341,13 @@ msgstr "" "255.255.255.255が挙げられます。標準設定は\"0.0.0.0\"であり、インターフェース" "のブロードキャストIPを使用します。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 送信元" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -360,17 +360,17 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 マルチキャスト" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -378,25 +378,25 @@ msgstr "" "IPv6 マルチキャストアドレスを設定します。標準はMANETルーターが使用するリンク" "ローカル・マルチキャストである\"FF02::6D\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "IPv6 ネットワークアドレスは省略せずに入力してください。プレフィクスはCIDR形式" "で入力してください。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 送信元" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -406,13 +406,13 @@ msgstr "" "フィクス値に一致するものを選択します。標準設定は\"0::/0\"であり、リンクローカ" "ルIPでないインターフェースIPを使用します。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "アップリンクIPv6 プレフィクス" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -426,16 +426,16 @@ msgstr "" "<br /><b>警告:</b>このパラメータはetx_ffeth メトリックと同時に使用しないでく" "ださい!<br />標準設定は\"1.0\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" "このノードがNATを使用してインターネットに接続する場合、有効にしてください。標" "準設定は\"有効\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -444,10 +444,10 @@ msgstr "" msgid "Interface" msgstr "インターフェース" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -458,15 +458,15 @@ msgstr "" "\"です。標準設定は\"mesh\"です。" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "インターフェース" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "インターフェース デフォルト設定" @@ -474,8 +474,8 @@ msgstr "インターフェース デフォルト設定" msgid "Internet protocol" msgstr "インターネットプロトコル" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." @@ -483,17 +483,17 @@ msgstr "" "ネットワーク・インターフェースの設定が変更されたかをチェックするポーリング間" "隔を秒単位で設定します。標準設定は\"2.5\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -507,30 +507,30 @@ msgstr "OLSR ルーティング" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ エイジング" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ アルゴリズム" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ レベル" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -544,20 +544,20 @@ msgstr "最終ホップ" msgid "Legend" msgstr "凡例" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "ライブラリ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "リンク品質 (LQ) 設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -567,8 +567,8 @@ msgstr "" "効)。etx_float及びetx_fpmの値の調整を行います。値が小さくなると、ETX値の変化" "が遅くなります。設定可能な値は0.01-1.0です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -585,8 +585,8 @@ msgstr "" "す。イーサネットのリンクにETX 0.1を設定することができます<br />標準設定は" "\"etx_ff\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -597,10 +597,10 @@ msgstr "" "<br /><b>2</b> = MPR集合及びルーティングにリンク品質を加味する<br />標準設定" "は\"2\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "リンク品質 (LQ) マルチプリケーター" @@ -618,22 +618,22 @@ msgid "Local interface IP" msgstr "ローカルインターフェース IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID 送信間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "MID 有効時間" @@ -641,8 +641,8 @@ msgstr "MID 有効時間" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "メインIP" @@ -657,17 +657,17 @@ msgstr "" msgid "Metric" msgstr "メトリック" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "モード" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -689,8 +689,8 @@ msgstr "" "192.168.0.1 0.5<br />このインターフェースから全てのノードへ対して20%減らす場" "合: default 0.8" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "NAT しきい値" @@ -716,22 +716,22 @@ msgstr "隣接ノード" msgid "Netmask" msgstr "ネットマスク" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "ネットワーク" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "ネットワークアドレス" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "NIC変更ポーリング間隔" @@ -756,21 +756,21 @@ msgstr "OLSR - HNA (Host and Network Association) 通知" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA (Host and Network Association) 通知" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - プラグイン" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR デーモン" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR デーモン - インターフェース" @@ -827,35 +827,35 @@ msgstr "通知されているマルチ・インターフェースの一覧" msgid "Overview of smart gateways in this network" msgstr "ネットワーク内のスマート・ゲートウェイ一覧" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "プラグイン設定" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "プラグイン" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "OLSRソケットのポーリング間隔を秒単位で設定します。標準は0.05です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "ポーリング間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "ポート" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -928,8 +928,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -945,8 +945,8 @@ msgstr "スマート・ゲートウェイ(SmartGW)は設定されていません msgid "Source address" msgstr "送信元アドレス" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -954,8 +954,8 @@ msgstr "" "アップリンク速度をキロビット/秒で設定してください。1つ目のパラメータは上り、2" "つ目のパラメータは下りのストリームです。標準は\"128 1024\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "アップリンク速度" @@ -979,34 +979,34 @@ msgstr "隣接ノードから受信したパケットの受信成功率" msgid "Success rate of packages sent to the neighbour" msgstr "隣接ノードへ送信したパケットの送信成功率" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC 送信間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "TC 有効時間" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS値" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -1020,8 +1020,8 @@ msgstr "" "ん全てのイーサネットデバイスでも使用可能です。<a href='http://www.olsr." "org'>olsrd.org</a>にアクセスして、ヘルプ及びドキュメントを参照してください。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1029,13 +1029,13 @@ msgstr "" "willingnessを固定する場合に使用します。willingnessが設定されていない場合、" "バッテリや電源のステータスによって動的に計算されます。標準は\"3\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "OLSRdが使用するインターフェースです。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1043,8 +1043,8 @@ msgstr "" "OLSRが使用するポート番号です。通常、このポート番号はIANAがアサインした698番で" "あるべきです。1-65535の間で設定可能です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1052,10 +1052,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "送信間隔及び有効時間" @@ -1063,8 +1063,8 @@ msgstr "送信間隔及び有効時間" msgid "Topology" msgstr "トポロジー" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1081,13 +1081,13 @@ msgstr "OLSRデーモンに接続できません!" msgid "Uplink" msgstr "アップリンク" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "NATを使用して上位ネットワークに接続する" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "ヒステリシスを使用する" @@ -1112,8 +1112,8 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1121,17 +1121,17 @@ msgstr "" "警告: kmod-ipipがインストールされていません。スマートゲートウェイはkmod-ipip" "なしでは動作しません。まず初めにインストールを行なってください。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Weight" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1169,8 +1169,8 @@ msgstr "" "ローカルのHNAである0.0.0.0/0、::ffff:0:0/96、2000::/3を探索することで検出しま" "す。標準設定は、\"both\"です。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Willingness" diff --git a/applications/luci-app-olsr/po/ms/olsr.po b/applications/luci-app-olsr/po/ms/olsr.po index f02ff69a90..00a3e7af8d 100644 --- a/applications/luci-app-olsr/po/ms/olsr.po +++ b/applications/luci-app-olsr/po/ms/olsr.po @@ -19,23 +19,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -62,8 +62,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -105,31 +105,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -137,13 +137,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -153,8 +153,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -163,17 +163,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -191,8 +191,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -201,17 +201,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -219,22 +219,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -252,8 +252,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -279,18 +279,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -305,26 +305,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -335,52 +335,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -389,14 +389,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -405,10 +405,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -416,15 +416,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -432,24 +432,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -463,30 +463,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -500,28 +500,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -531,18 +531,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -560,22 +560,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -583,8 +583,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -599,17 +599,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -626,8 +626,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -653,22 +653,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -692,21 +692,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -763,35 +763,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -853,8 +853,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -870,15 +870,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -902,34 +902,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -938,27 +938,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -966,10 +966,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -977,8 +977,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -993,13 +993,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1024,24 +1024,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1066,8 +1066,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/no/olsr.po b/applications/luci-app-olsr/po/no/olsr.po index 5d34821121..bdc15444f0 100644 --- a/applications/luci-app-olsr/po/no/olsr.po +++ b/applications/luci-app-olsr/po/no/olsr.po @@ -20,23 +20,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -63,8 +63,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -106,31 +106,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -138,13 +138,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -154,8 +154,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -164,17 +164,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -192,8 +192,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -202,17 +202,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -220,22 +220,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -253,8 +253,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -280,18 +280,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -306,26 +306,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -336,52 +336,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -390,14 +390,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -406,10 +406,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -417,15 +417,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -464,30 +464,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -501,28 +501,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -532,18 +532,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -561,22 +561,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -584,8 +584,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -600,17 +600,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -627,8 +627,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -654,22 +654,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -693,21 +693,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -764,35 +764,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -854,8 +854,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -871,15 +871,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -903,34 +903,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -939,27 +939,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -967,10 +967,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -978,8 +978,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -994,13 +994,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1025,24 +1025,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1067,8 +1067,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/pl/olsr.po b/applications/luci-app-olsr/po/pl/olsr.po index e2790e44f5..fd1ebdf4da 100644 --- a/applications/luci-app-olsr/po/pl/olsr.po +++ b/applications/luci-app-olsr/po/pl/olsr.po @@ -24,23 +24,23 @@ msgstr "Aktywne węzły OLSR" msgid "Active host net announcements" msgstr "Aktywne ogłoszenia hostnet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Ustawienia zaawansowane" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Zezwól na bramy z NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Zezwól na wybieranie wychodzącej bramy IPv4 przez NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Ogłaszaj uplink" @@ -69,8 +69,8 @@ msgstr "" msgid "Broadcast address" msgstr "Adres rozgłoszeniowy (broadcast)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -112,19 +112,19 @@ msgstr "Ustawienia pobierania" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Włącz" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -132,13 +132,13 @@ msgstr "" "Włącz SmartGateway. Jeśli wyłączone, wszystkie inne parametry SmartGateway " "są ignorowane. Domyślnie jest wyłączone." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Włącz ten interfejs." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Włączone" @@ -146,13 +146,13 @@ msgstr "Włączone" msgid "Expected retransmission count" msgstr "Oczekiwana wartość retransmisji" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Metryka FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -163,8 +163,8 @@ msgid "" msgstr "" # skorzystałem z niemieckiego tłumaczenia -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" "Mechanizm Fisheye dla TCs (zaznaczone oznacza \"włączone\"). Domyślnie jest " @@ -175,17 +175,17 @@ msgstr "" msgid "Gateway" msgstr "Brama" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Ustawienia ogólne" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Ustawienia ogólne" @@ -203,8 +203,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -213,17 +213,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "Ogłoszenia HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Interwał HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Czas poprawności HNA" @@ -232,22 +232,22 @@ msgstr "Czas poprawności HNA" msgid "HNA6 Announcements" msgstr "Ogłoszenia HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Interwał Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Czas poprawności Hello" @@ -265,8 +265,8 @@ msgstr "" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -297,18 +297,18 @@ msgstr "" "Hosty w sieci OLSR mogą ogłaszać połączenia z zewnętrznymi sieciami poprzez " "wiadomości HNA." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Adresy IP" @@ -325,13 +325,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Rozgłaszanie IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -341,13 +341,13 @@ msgstr "" "Przydatnym przykładem byłoby 255.255.255.255. Domyślna wartość to " "\"0.0.0.0\" - jest wtedy używany adres rozgłoszeniowy interfejsu." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "Źródło IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -360,18 +360,18 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "Multicast IPv6" # Nie mam pojęcia, jak to lepiej przetłumaczyć, ale w moich tłumaczeniach kieruję się zasadą "release early, release often". -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -379,24 +379,24 @@ msgstr "" "Adres multicast IPv6. Domyślna wartość to \"FF02::6D\", multicast lokalnego " "routera." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "Sieć IPv6 musi być podana w pełnej notacji, prefiks musi być w notacji CIDR." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "Źródło IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -406,13 +406,13 @@ msgstr "" "będzie pasował do tego prefiksu. Domyślna wartość to \"0::/0\" - jest wtedy " "używany adres IP interfejsu." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -421,14 +421,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "Czy węzeł korzysta z NAT do połączenia z Internetem. Domyślnie \"Tak\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -437,10 +437,10 @@ msgstr "Czy węzeł korzysta z NAT do połączenia z Internetem. Domyślnie \"Ta msgid "Interface" msgstr "Interfejs" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -451,16 +451,16 @@ msgstr "" "\"mesh\"." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfejsy" # by Google :D po części -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Standardy interfejsów" @@ -468,24 +468,24 @@ msgstr "Standardy interfejsów" msgid "Internet protocol" msgstr "Protokół internetowy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -499,30 +499,30 @@ msgstr "Znane ścieżki OLSR" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "Starzenie się LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "Algorytm LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ-Fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "Poziom LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -536,29 +536,29 @@ msgstr "Ostatni skok (hop)" msgid "Legend" msgstr "Legenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Biblioteka" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #, fuzzy msgid "Link Quality Settings" msgstr "Ustawienia jakości linków" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -568,18 +568,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "Mnożnik LinkQuality" @@ -597,22 +597,22 @@ msgid "Local interface IP" msgstr "IP lokalnego interfejsu" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Interwał MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Czas poprawności MID" @@ -620,8 +620,8 @@ msgstr "Czas poprawności MID" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "Główny IP" @@ -637,17 +637,17 @@ msgstr "" msgid "Metric" msgstr "Miara" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Tryb" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -664,8 +664,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "Próg NAT" @@ -691,22 +691,22 @@ msgstr "Sąsiedzi" msgid "Netmask" msgstr "Maska sieciowa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Sieć" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Adres sieci" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -731,21 +731,21 @@ msgstr "OLSR - ogłoszenia HNA" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - ogłoszenia HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - pluginy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "Demon OLSR" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "Demon OLSR - interfejs" @@ -802,35 +802,35 @@ msgstr "Przegląd znanych wielointerfejsowych ogłoszeń" msgid "Overview of smart gateways in this network" msgstr "Przegląd bram SmartGateway w tej sieci" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Ustawienia pluginu" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Pluginy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Port" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -892,8 +892,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -909,15 +909,15 @@ msgstr "SmartGateway jest nieskonfigurowane." msgid "Source address" msgstr "Adres źródłowy" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -943,34 +943,34 @@ msgstr "Wartość poprawnie otrzymanych od sąsiada pakietów" msgid "Success rate of packages sent to the neighbour" msgstr "Wartość poprawnie wysłanych pakietów do sąsiada" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Interwał TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Czas poprawności TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "Wartość TOS" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -979,20 +979,20 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "Interfejs, który powinien oferować OLSRd." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1000,8 +1000,8 @@ msgstr "" "Port używany przez OLSR. Zwykle powinien pozostać na przydzielonym przez " "IANA porcie 698. Może mieć wartość pomiędzy 1 a 65535." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1009,10 +1009,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -1020,8 +1020,8 @@ msgstr "" msgid "Topology" msgstr "Topologia" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1036,13 +1036,13 @@ msgstr "Połączenie z demonem OLSR nieudane!" msgid "Uplink" msgstr "Uplink" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "Uplink używa NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Używaj histerezy" @@ -1067,8 +1067,8 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1076,17 +1076,17 @@ msgstr "" "Uwaga: kmod-ipip nie jest zainstalowany. Bez kmod-ipip bramy SmartGateway " "nie będą działać. Proszę go zainstalować." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Waga" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1118,8 +1118,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Gotowość" diff --git a/applications/luci-app-olsr/po/pt-br/olsr.po b/applications/luci-app-olsr/po/pt-br/olsr.po index c88fad453c..8918bc0bde 100644 --- a/applications/luci-app-olsr/po/pt-br/olsr.po +++ b/applications/luci-app-olsr/po/pt-br/olsr.po @@ -27,23 +27,23 @@ msgstr "Nós OLSR ativos" msgid "Active host net announcements" msgstr "Anúncios ativos de equipamentos" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Configurações Avançadas" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Permitir rotadores com NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Permitir a seleção de rotador de saída IPv4 com NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Anunciar enlace superior (uplink)" @@ -73,8 +73,8 @@ msgid "Broadcast address" msgstr "Endereço de broadcast" # 20140621: edersg: tradução -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" "Somente pode ser um endereço IPv4 ou IPv6 válidos ou um endereço 'padrão'" @@ -124,19 +124,19 @@ msgstr "Configuração do Recebimento de Dados " msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Habilitar" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -144,13 +144,13 @@ msgstr "" "Habilita o SmartGateway. Se isto está desabilitado, então todos os demais " "parâmetros do SmartGateway são ignorados. Padrão é \"não\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Habilita esta interface." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Habilitado" @@ -158,13 +158,13 @@ msgstr "Habilitado" msgid "Expected retransmission count" msgstr "Contagem esperada de retransmissões" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Métrica FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -181,8 +181,8 @@ msgstr "" "atualiza a contagem de saltos se o próximo salto também mudar. O padrão é " "\"flat\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" "Mecanismo Fisheye para <abbr title=\"Topology Control, Controle de Topologia" @@ -193,17 +193,17 @@ msgstr "" msgid "Gateway" msgstr "Roteador" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Configurações Gerais" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Configurações gerais" @@ -224,8 +224,8 @@ msgid "Green" msgstr "Verde" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -238,19 +238,19 @@ msgstr "" "Anúncios do <abbr title=\"Host and network association, Associação de " "equipamentos e redes\">HNA</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" "Intervalo entre <abbr title=\"Host and network association, Associação de " "equipamentos e redes\">HNA</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" "Validade do <abbr title=\"Host and network association, Associação de " @@ -262,22 +262,22 @@ msgstr "" "Anúncios do <abbr title=\"Host and network association, Associação de " "equipamentos e redes\">HNA</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Saudação (Hello)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Intervalo entre Saudações (Hello)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Validade da Saudação (Hello)" @@ -297,8 +297,8 @@ msgstr "Ocultar IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -329,8 +329,8 @@ msgstr "" "redes externas usando mensagens HNA." # Hysteresis é Histerese que significa "retardo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -340,10 +340,10 @@ msgstr "" "de saltos), Retardo incrementa a robustez da sensibilidade do enlace mas " "atrasa o registro dos vizinhos. O padrão é \"sim\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Endereços IP" @@ -360,13 +360,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Endereço IPv4 de Broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -376,13 +376,13 @@ msgstr "" "seria 255.255.255.255. O padrão é \"0.0.0.0\", que indica o uso do endereço " "IP de broadcast da interface." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "Origem IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -396,17 +396,17 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "Multicast IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -414,25 +414,25 @@ msgstr "" "Endereço de multicast IPv6. O padrão é \"FF02::6D\", o multicast do enlace " "local do roteador MANET." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "A rede IPv6 deve ser informada em notação completa. O prefixo deve ser em " "notação CIDR." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "Origem IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -442,13 +442,13 @@ msgstr "" "com o prefixo do parâmetro. O padrão é \"0::/0\", que faz com que seja usado " "um endereço IP não local da interface." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "Prefixo IPv6 do enlace superior (uplink)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -462,14 +462,14 @@ msgstr "" "1.0 se alterado..<br /><b>CUIDADO:</b> Este parâmetro não deve ser usado em " "conjunto com a métrica etx_ffeth!<br />O padrão é \"1.0\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "Se este Nó usa NAT para conexões com a internet. Padrão é \"sim\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -478,10 +478,10 @@ msgstr "Se este Nó usa NAT para conexões com a internet. Padrão é \"sim\"." msgid "Interface" msgstr "Interface" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -492,15 +492,15 @@ msgstr "" "\"ether\". O padrão é \"mesh\"." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Padrões da Interface" @@ -508,8 +508,8 @@ msgstr "Padrões da Interface" msgid "Internet protocol" msgstr "Protocolo internet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." @@ -518,18 +518,18 @@ msgstr "" "configurações (em segundos). O padrão é \"2.5\"." # 20140621: edersg: tradução -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "Valor inválido para LQMult-Value. Deve estar entre 0.01 e 1.0." # 20140621: edersg: tradução -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -545,32 +545,32 @@ msgstr "Rotas OLSR conhecidas" msgid "LQ" msgstr "<abbr title=\"Link Quality, Qualidade do Enlace\">LQ</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" "Envelhecimento do <abbr title=\"Link Quality, Qualidade do Enlace\">LQ</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "Algoritmo <abbr title=\"Link Quality, Qualidade do Enlace\">LQ</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "Fisheye <abbr title=\"Link Quality, Qualidade do Enlace\">LQ</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "Nível <abbr title=\"Link Quality, Qualidade do Enlace\">LQ</abbr>" # 20140621: edersg: tradução -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -586,20 +586,20 @@ msgstr "Último salto" msgid "Legend" msgstr "Legenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Biblioteca" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Configurações da Qualidade do Enlace" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -610,8 +610,8 @@ msgstr "" "para etx_float e etx_fpm, Valores menores significam mudanças mais lentas do " "valor ETX. (permitido valores entre 0.01 e 1.0)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -628,8 +628,8 @@ msgstr "" "para o cálculo do ETX<br /><b>etx_ffeth</b>: variação incompatível do etx_ff " "que permite enlaces ethernet com ETX 0.1.<br />O padrão é \"etx_ff\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -640,10 +640,10 @@ msgstr "" "b> = não use a qualidade do enlace<br /><b>2</b> = use a qualidade do enlace " "para a seleção do MPR e roteamento<br />O padrão é \"2\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "Multiplicador da Qualidade do Enlace" @@ -661,26 +661,26 @@ msgid "Local interface IP" msgstr "Endereço IP da interface local" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" "<abbr title=\"Multiple interface declaration,Declaração de interface múltipla" "\">MID</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" "Intervalo do <abbr title=\"Multiple interface declaration,Declaração de " "interface múltipla\">MID</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" "Validade do <abbr title=\"Multiple interface declaration,Declaração de " @@ -690,8 +690,8 @@ msgstr "" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "IP Principal" @@ -710,18 +710,18 @@ msgstr "" msgid "Metric" msgstr "Métrica" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Modo" # 20140621: edersg: tradução -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -747,8 +747,8 @@ msgstr "" "Exemplos: <br />reduzir LQ para 192.168.0.1 pela metade: 192.168.0.1 0.5<br /" "> reduzir LQ para todos os nós nesta interface em 20%: padrão 0.8" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "Limiar do NAT" @@ -776,22 +776,22 @@ msgstr "Vizinhos" msgid "Netmask" msgstr "Máscara de rede" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Rede" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Endereço de rede" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Intervalo de consulta de mudanças na placa de rede" @@ -819,21 +819,21 @@ msgstr "" "OLSR - Anúncios <abbr title=\"Host and network association, Associação de " "equipamentos e redes\">HNA</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "Servidor OLSR" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "Servidor OLSR - Interface" @@ -891,36 +891,36 @@ msgstr "Visão geral de anúncios de nós com múltiplas interfaces conhecidas" msgid "Overview of smart gateways in this network" msgstr "Visão geral dos SmartGateways na rede" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Configuração do Plugin" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Plugins" # Que socket? -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "Taxa de consulta por conexões OLSR, em segundos. Padrão é 0.05." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Taxa de consulta" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Porta" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -996,8 +996,8 @@ msgid "Signal Noise Ratio in dB" msgstr "Relação do ruído do sinal em dB" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -1013,8 +1013,8 @@ msgstr "SmartGateway não está configurado no seu sistema." msgid "Source address" msgstr "Endereço de origem" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -1023,8 +1023,8 @@ msgstr "" "primeiro parâmetro é a taxa de envio (upstream) e o segundo parâmetro é a " "taxa de recebimento (downstream). O padrão é \"128 1024\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "Velocidade do enlace superior" @@ -1050,37 +1050,37 @@ msgstr "Taxa de sucesso de pacotes recebidos de vizinhos" msgid "Success rate of packages sent to the neighbour" msgstr "Taxa de sucesso de pacotes enviados a vizinhos" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "<abbr title=\"Topology Control, Controle de Topologia\">TC</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" "Intervalo do <abbr title=\"Topology Control, Controle de Topologia\">TC</" "abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" "Validade do <abbr title=\"Topology Control, Controle de Topologia\">TC</abbr>" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "Valor do TOS" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -1094,8 +1094,8 @@ msgstr "" "suporte o modo ad-hoc e, é claro, em qualquer dispositivo ethernet. Visite " "<a href='http://www.olsr.org'>olsrd.org</a> para ajuda e documentação." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1104,13 +1104,13 @@ msgstr "" "definida, ela será dinamicamente calculada baseada no estado da energia/" "bateria, O padrão é \"3\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "A interface onde o OLSRd deve servir." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1118,8 +1118,8 @@ msgstr "" "A porta que o OLSR usa. Isto geralmente deve ficar na porta 698, designada " "pela IANA. Pode ter qualquer valor entre 1 e 65535." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1131,10 +1131,10 @@ msgstr "" "IPv6 local para usar o roteador IPv6 sem qualquer tradução de endereços. O " "tamanho máximo do prefixo é 64 bits. O padrão é \"::/0\" (nenhum prefixo)." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "Temporização e Validade" @@ -1142,8 +1142,8 @@ msgstr "Temporização e Validade" msgid "Topology" msgstr "Topologia" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1160,13 +1160,13 @@ msgstr "Não foi possível conectar ao servidor OLSR!" msgid "Uplink" msgstr "Enlace superior (uplink)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "Enlace superior (uplink) usa NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Usar retardo" @@ -1194,8 +1194,8 @@ msgstr "Muito bom (SNR > 30)" msgid "WLAN" msgstr "Rede sem fio (WLAN)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1203,17 +1203,17 @@ msgstr "" "Atenção: o kmod-ipip não está instalado. Sem o kmod-ipip, o SmartGateway não " "irá funcionar. Por favor, instale-o." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Peso" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1254,8 +1254,8 @@ msgstr "" "and network association, Associação de equipamentos e redes\">HNA</abbr> " "local de 0.0.0.0/0, ::ffff:0:0/96 ou 2000::/3. O padrão é \"ambos\"." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Disponibilidade" diff --git a/applications/luci-app-olsr/po/pt/olsr.po b/applications/luci-app-olsr/po/pt/olsr.po index 4a6cf490fc..52158475b7 100644 --- a/applications/luci-app-olsr/po/pt/olsr.po +++ b/applications/luci-app-olsr/po/pt/olsr.po @@ -26,23 +26,23 @@ msgstr "Nós OLSR ativos" msgid "Active host net announcements" msgstr "Anuncios activos de hosts" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Definições Avançadas" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Permitir gateways com NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Permitir a selecção de uma gateway IPv4 para saída com NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Anunciar uplink" @@ -69,8 +69,8 @@ msgstr "Os valores tem de usar a dotação decimal." msgid "Broadcast address" msgstr "Endereço de broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -112,19 +112,19 @@ msgstr "Descarregar Configuração" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Ativar" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -132,13 +132,13 @@ msgstr "" "Ativar SmartGateway. Se estiver desativado, então todos os outros parâmetros " "SmartGateway são ignorados. Por defeito é \"não\"" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Ativar esta interface." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Ativado" @@ -146,13 +146,13 @@ msgstr "Ativado" msgid "Expected retransmission count" msgstr "Contagem de retransmissões esperada" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "métrica FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -162,8 +162,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -172,17 +172,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Definições gerais" @@ -200,8 +200,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -210,17 +210,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Intervalo entre HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Validade de HNA" @@ -229,22 +229,22 @@ msgstr "Validade de HNA" msgid "HNA6 Announcements" msgstr "OLSR - Anuncios HNA4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Intervalo entre Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Validade de Hello" @@ -262,8 +262,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -289,18 +289,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Endereços IP" @@ -315,26 +315,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Endereço IPv4 de Broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -345,54 +345,54 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "Multicast IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "A rede IPv6 deve ser fornecido em dotação completa, o prefixo deve estar na " "notação CIDR." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "Origem IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -401,14 +401,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -417,10 +417,10 @@ msgstr "" msgid "Interface" msgstr "Interface" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -431,15 +431,15 @@ msgstr "" "são \"mesh\" e \"ether\". Por defeito é \"mesh\"." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfaces" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Predefinições das Interfaces" @@ -447,24 +447,24 @@ msgstr "Predefinições das Interfaces" msgid "Internet protocol" msgstr "Protocolo de Internet" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -478,31 +478,31 @@ msgstr "Rotas OLSR conhecidas" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "Envelhecimento LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "Algoritmo LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #, fuzzy msgid "LQ fisheye" msgstr "LQ Fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "Nível LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -516,28 +516,28 @@ msgstr "Ultimo salto" msgid "Legend" msgstr "Legenda" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Biblioteca" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Definições de Qualidade do Link" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -547,18 +547,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -576,22 +576,22 @@ msgid "Local interface IP" msgstr "Endereço IP do interface local" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Intervalo de MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Validade de MID" @@ -599,8 +599,8 @@ msgstr "Validade de MID" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "IP Principal" @@ -615,17 +615,17 @@ msgstr "" msgid "Metric" msgstr "Métrica" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Modo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -642,8 +642,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -669,22 +669,22 @@ msgstr "Vizinhos" msgid "Netmask" msgstr "Máscara de rede" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Rede" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Endereço de rede" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -709,21 +709,21 @@ msgstr "OLSR - Anuncios HNA4" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - Anuncios HNA4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "Servidor OLSR" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -781,35 +781,35 @@ msgstr "Resumo de anuncios de nós com multiplos interfaces activos" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Configuração de Plugin" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Pollrate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Porta" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -871,8 +871,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -888,15 +888,15 @@ msgstr "" msgid "Source address" msgstr "Endereço de origem" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "Velocidade do uplink" @@ -920,34 +920,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Intervalo de TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Validade de TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -956,27 +956,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -984,10 +984,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -995,8 +995,8 @@ msgstr "" msgid "Topology" msgstr "Topologia" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1011,13 +1011,13 @@ msgstr "Não foi possivel ligar ao servidor OLSR!" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "O uplink usa NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Usar histerese" @@ -1042,24 +1042,24 @@ msgstr "" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1084,8 +1084,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Disponibilidade" diff --git a/applications/luci-app-olsr/po/ro/olsr.po b/applications/luci-app-olsr/po/ro/olsr.po index 8c28bb2615..151fd39fed 100644 --- a/applications/luci-app-olsr/po/ro/olsr.po +++ b/applications/luci-app-olsr/po/ro/olsr.po @@ -24,23 +24,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Setări avansate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -67,8 +67,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -110,31 +110,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Activare" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Activează această interfaţă" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Activat" @@ -142,13 +142,13 @@ msgstr "Activat" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -158,8 +158,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -168,17 +168,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Setări generale" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Setări generale" @@ -196,8 +196,8 @@ msgid "Green" msgstr "Verde" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -206,17 +206,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -224,22 +224,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -257,8 +257,8 @@ msgstr "Ascunde IPv6" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -284,18 +284,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "Adrese IP" @@ -310,26 +310,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -340,52 +340,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -394,14 +394,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -410,10 +410,10 @@ msgstr "" msgid "Interface" msgstr "Interfaţă" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -421,15 +421,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Interfeţe" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Interfeţe implicite" @@ -437,24 +437,24 @@ msgstr "Interfeţe implicite" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -468,30 +468,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "Algoritm LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "Nivel LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -505,28 +505,28 @@ msgstr "" msgid "Legend" msgstr "Legendă" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -536,18 +536,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -565,22 +565,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -588,8 +588,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -604,17 +604,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -631,8 +631,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -658,22 +658,22 @@ msgstr "Vecini" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -697,21 +697,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -768,35 +768,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Pluginuri" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -858,8 +858,8 @@ msgid "Signal Noise Ratio in dB" msgstr "Raport zgomot semnal în dB" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -875,15 +875,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -907,34 +907,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -943,27 +943,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -971,10 +971,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -982,8 +982,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -998,13 +998,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1029,24 +1029,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Greutate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1071,8 +1071,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/ru/olsr.po b/applications/luci-app-olsr/po/ru/olsr.po index 6c17998945..b5a7d878b6 100644 --- a/applications/luci-app-olsr/po/ru/olsr.po +++ b/applications/luci-app-olsr/po/ru/olsr.po @@ -27,23 +27,23 @@ msgstr "Активные OLSR узлы" msgid "Active host net announcements" msgstr "Активные объявления хост-сети (HNA)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Дополнительные настройки" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "Разрешить шлюзы с NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "Разрешить выбор исходящего IPv4 шлюза с NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Объявить внешнее соединение" @@ -72,8 +72,8 @@ msgstr "" msgid "Broadcast address" msgstr "Широковещательный адрес" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "Допускается только IPv4 или IPv6 адрес или 'по умолчанию'" @@ -117,19 +117,19 @@ msgstr "Загрузить config файл" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Включить" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -137,13 +137,13 @@ msgstr "" "Включить SmartGW (смарт-шлюз).<br />Если выключено, все остальные параметры " "SmartGW игнорируются. По умолчанию 'нет'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Использовать этот интерфейс." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Включено" @@ -151,13 +151,13 @@ msgstr "Включено" msgid "Expected retransmission count" msgstr "Ожидаемое количество повторных передач" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "Метрика FIB" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -174,8 +174,8 @@ msgstr "" "происходит только при изменении следующего перехода.<br />По умолчанию " "используется 'flat'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" "Механизм 'fisheye' для TC-ов (средство проверки). По умолчанию 'включено'." @@ -185,17 +185,17 @@ msgstr "" msgid "Gateway" msgstr "Шлюз" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Основные настройки" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Основные настройки" @@ -213,8 +213,8 @@ msgid "Green" msgstr "Зеленый" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -223,17 +223,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "Объявления HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Интервал HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Время действия HNA" @@ -241,22 +241,22 @@ msgstr "Время действия HNA" msgid "HNA6 Announcements" msgstr "Объявления HNA6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Приветствие" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Интервал приветствия" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Время действия приветствия" @@ -274,8 +274,8 @@ msgstr "Скрыть IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -305,8 +305,8 @@ msgstr "" "Хосты в маршрутизируемой сети OLSR могут извещать о подключении к внешним " "сетям с помощью сообщений HNA6." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -316,10 +316,10 @@ msgstr "" "переходов). Гистерезис увеличивает надёжность канала, но вносит задержку в " "регистрацию соседних устройств. По умолчанию 'да'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP-Адреса" @@ -336,13 +336,13 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "Широковещательный<br />IPv4-адрес" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -352,13 +352,13 @@ msgstr "" "255.255.255.255. По умолчанию используется значение \"0.0.0.0\", которое " "запускает использование широковещательного IP-адреса интерфейса." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 источник" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -371,17 +371,17 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 мультивещание" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." @@ -389,25 +389,25 @@ msgstr "" "IPv6-адрес мультивещания. По умолчанию 'FF02::6D', MANET маршрутизатор " "локальной сети мультивещания." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" "IPv6 сеть должна быть указана в полной нотации, префикс должен быть в " "нотации CIDR." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 источник" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -418,13 +418,13 @@ msgstr "" "'0::/0', которое запускает использование IP интерфейса не локального " "соединения." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "IPv6 Префикс внешнего соединения" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -438,15 +438,15 @@ msgstr "" "изменении должно быть ближе к '1.0'.<br /><b>Внимание:</b> Не используйте " "данный параметр вместе с метрикой etx_ffeth!<br />По умолчанию '1.0'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" "Использует ли данный узел NAT для подключения к Интернету. По умолчанию 'да'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -455,10 +455,10 @@ msgstr "" msgid "Interface" msgstr "Интерфейс" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -469,15 +469,15 @@ msgstr "" "'ether'. По умолчанию 'mesh'." #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Интерфейсы" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Значения по умолчанию для интерфейсов" @@ -485,8 +485,8 @@ msgstr "Значения по умолчанию для интерфейсов" msgid "Internet protocol" msgstr "Интернет протокол" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." @@ -494,18 +494,18 @@ msgstr "" "Интервал опроса сетевых интерфейсов на наличие изменений в config файле " "(сек.). По умолчанию '2.5'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" "Недопустимое значение для LQMult-Value. Должно быть между '0,01' и '1,0'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -521,30 +521,30 @@ msgstr "Известные маршруты OLSR" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ старение" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ алгоритм" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ частота" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -560,20 +560,20 @@ msgstr "Последний переход" msgid "Legend" msgstr "События" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Библиотека" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Настройки качества соединений (LQ)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -583,8 +583,8 @@ msgstr "" "подстройки для etx_float и etx_fpm.<br />Чем меньше значение, тем меньше " "изменения значения ETX.<br />Диапазон допустимых значений от '0.0' до '1.0'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -600,8 +600,8 @@ msgstr "" "b>: несовместимый вариант etx_ff, разрешающий Ethernet-соединения с ETX 0.1." "<br />По умолчанию 'etx_ff'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -611,10 +611,10 @@ msgstr "" "><b>0</b> = не использовать LQ<br /><b>2</b> = использовать LQ для выбора " "MPR и маршрутизации<br />По умолчанию '2'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "Мультипликатор качества соединения (LQ)" @@ -632,22 +632,22 @@ msgid "Local interface IP" msgstr "IP-адрес локального интерфейса" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Интервал MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Время действия MID" @@ -655,8 +655,8 @@ msgstr "Время действия MID" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "Основной IP-адрес" @@ -673,17 +673,17 @@ msgstr "" msgid "Metric" msgstr "Метрика" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Режим" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -709,8 +709,8 @@ msgstr "" "fd91:662e:3c58::1 '0.5'.<br />уменьшить LQ для всех узлов на данном " "интерфейсе на 20%: default '0.8'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "Порог NAT" @@ -736,22 +736,22 @@ msgstr "Соседние узлы" msgid "Netmask" msgstr "Маска сети" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Сеть" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Сетевой адрес" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Сетевой адаптер изменяет интервал опроса" @@ -775,21 +775,21 @@ msgstr "OLSR - HNA-объявления" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA6-объявления" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Плагины" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR демон" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR демон - Интерфейс" @@ -846,35 +846,35 @@ msgstr "Обзор известных объявлений с нескольки msgid "Overview of smart gateways in this network" msgstr "Обзор смарт шлюзов в этой сети" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Настройка плагинов" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Плагины" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "Частота опроса для сокетов OLSR в секундах. По умолчанию '0,05'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Частота опроса" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Порт" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -947,8 +947,8 @@ msgid "Signal Noise Ratio in dB" msgstr "Коэффициент шума сигнала в дБ" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -964,8 +964,8 @@ msgstr "SmartGW (смарт-шлюз) не настроен на этой сис msgid "Source address" msgstr "Адрес источника" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -974,8 +974,8 @@ msgstr "" "внешняя сеть, второй параметр - внутренняя сеть. Значение по умолчанию '128 " "1024'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "Скорость внешнего соединения" @@ -1000,34 +1000,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "Показатель успешности прохождения пакетов, отправляемых соседнему узлу" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Интервал TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Время действия TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "Значение TOS" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -1041,8 +1041,8 @@ msgstr "" "Ethernet с поддержкой режима ad-hoc.<br />Более подробную информацию можно " "найти на <a href='http://www.olsr.org'>olsrd.org</a>." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1051,13 +1051,13 @@ msgstr "" "рассчитываться динамически на основе состояния батареи/питания. По умолчанию " "'3'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "Интерфейс, обслуживаемый OLSRd." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." @@ -1065,8 +1065,8 @@ msgstr "" "Порт, используемый для OLSR. Рекомендуется использовать присвоенный IANA " "порт 698.<br />Допустимо любое значение в диапазоне от 1 до 65535." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1078,10 +1078,10 @@ msgstr "" "для использования IPv6-шлюза без какой-либо трансляции адресов. Максимальная " "длина префикса - 64 бита. По умолчанию '::/0' (без префикса)." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "Время и срок действия" @@ -1089,8 +1089,8 @@ msgstr "Время и срок действия" msgid "Topology" msgstr "Топология" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1107,13 +1107,13 @@ msgstr "Не удалось подключиться к демону OLSR!" msgid "Uplink" msgstr "Внешнее соединение" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "Внешнее соединение использует NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Использовать гистерезис" @@ -1138,8 +1138,8 @@ msgstr "Очень хорошо (SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1147,17 +1147,17 @@ msgstr "" "<b>Внимание:</b> 'kmod-ipip' не установлен. Без пакета модуля ядра kmod-" "ipip, SmartGW (смарт-шлюз) не будет работать, установите его." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Вес" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1195,8 +1195,8 @@ msgstr "" "Определение внешнего соединения происходит при наличии в локальном HNA6 ::" "ffff:0:0/96 или 2000::/3. Значение по умолчанию 'оба'." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Готовность" diff --git a/applications/luci-app-olsr/po/sk/olsr.po b/applications/luci-app-olsr/po/sk/olsr.po index 74df7ec6df..0a2d4f7a55 100644 --- a/applications/luci-app-olsr/po/sk/olsr.po +++ b/applications/luci-app-olsr/po/sk/olsr.po @@ -20,23 +20,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -63,8 +63,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -106,31 +106,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -138,13 +138,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -154,8 +154,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -164,17 +164,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -192,8 +192,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -202,17 +202,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -220,22 +220,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -253,8 +253,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -280,18 +280,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -306,26 +306,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -336,52 +336,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -390,14 +390,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -406,10 +406,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -417,15 +417,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -464,30 +464,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -501,28 +501,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -532,18 +532,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -561,22 +561,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -584,8 +584,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -600,17 +600,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -627,8 +627,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -654,22 +654,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -693,21 +693,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -764,35 +764,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -854,8 +854,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -871,15 +871,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -903,34 +903,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -939,27 +939,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -967,10 +967,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -978,8 +978,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -994,13 +994,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1025,24 +1025,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1067,8 +1067,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/sv/olsr.po b/applications/luci-app-olsr/po/sv/olsr.po index 1ee56ec34f..4d35fc4684 100644 --- a/applications/luci-app-olsr/po/sv/olsr.po +++ b/applications/luci-app-olsr/po/sv/olsr.po @@ -21,23 +21,23 @@ msgstr "Aktiva OLSR-noder" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "Avancerade inställningar" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "Tillkännage upplänk" @@ -64,8 +64,8 @@ msgstr "" msgid "Broadcast address" msgstr "Sändningsadress" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "Kan endast vara en giltig IPv4 eller IPv6-adress eller 'standard'" @@ -109,31 +109,31 @@ msgstr "" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "Aktivera" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "Aktivera det här gränssnittet." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "Aktivera" @@ -141,13 +141,13 @@ msgstr "Aktivera" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -157,8 +157,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -167,17 +167,17 @@ msgstr "" msgid "Gateway" msgstr "Gateway" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "Generella inställningar" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Generella inställningar" @@ -195,8 +195,8 @@ msgid "Green" msgstr "Grön" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -205,17 +205,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Giltighetstid för HNA" @@ -223,22 +223,22 @@ msgstr "Giltighetstid för HNA" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hallå" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hallå-intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Giltighetstid för Hallå" @@ -256,8 +256,8 @@ msgstr "Göm IPv6" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -283,18 +283,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP-adresser" @@ -309,26 +309,26 @@ msgstr "" msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4-källa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -339,52 +339,52 @@ msgstr "" msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6-källa" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -393,14 +393,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -409,10 +409,10 @@ msgstr "" msgid "Interface" msgstr "Gränssnitt" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -420,15 +420,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "Gränssnitten" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "Standard-gränssnitten" @@ -436,24 +436,24 @@ msgstr "Standard-gränssnitten" msgid "Internet protocol" msgstr "Internet-protokoll" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -467,30 +467,30 @@ msgstr "Kända OLSR-rutter" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ-algoritm" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ-nivå" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -504,28 +504,28 @@ msgstr "Senaste hopp" msgid "Legend" msgstr "Legend" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Bibliotek" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "Inställningar för länkkvalité" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -535,18 +535,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -564,22 +564,22 @@ msgid "Local interface IP" msgstr "IP-adress för lokalt gränssnitt" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID-intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -587,8 +587,8 @@ msgstr "" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "Huvudsaklig IP-adress" @@ -603,17 +603,17 @@ msgstr "" msgid "Metric" msgstr "Metrisk" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "Läge" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -630,8 +630,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -657,22 +657,22 @@ msgstr "Grannar" msgid "Netmask" msgstr "Nätmask" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "Nätverk" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "Nätverksadress" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -696,21 +696,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Insticksprogram" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR-demon" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR-demon - Gränssnitt" @@ -767,35 +767,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Konfiguration av insticksprogram" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "Insticksprogram" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "Port" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -857,8 +857,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -874,15 +874,15 @@ msgstr "" msgid "Source address" msgstr "Adress för källkod" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -906,34 +906,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC-intervall" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Giltighetstid för TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS-värde" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -942,27 +942,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -970,10 +970,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -981,8 +981,8 @@ msgstr "" msgid "Topology" msgstr "Topologi" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -997,13 +997,13 @@ msgstr "Kunde inte ansluta till OLSR-demonen!" msgid "Uplink" msgstr "Upplänk" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "Upplänken använder NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1028,8 +1028,8 @@ msgstr "Jättebra (SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1037,17 +1037,17 @@ msgstr "" "Varning: kmod-ipip är inte installerat. SmartGateway kommer inte att " "fungerautan kmod-ipip, vänligen installera det." -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "Vikt" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1072,8 +1072,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Frivillighet" diff --git a/applications/luci-app-olsr/po/templates/olsr.pot b/applications/luci-app-olsr/po/templates/olsr.pot index 91b5830657..3cdba5afa1 100644 --- a/applications/luci-app-olsr/po/templates/olsr.pot +++ b/applications/luci-app-olsr/po/templates/olsr.pot @@ -13,23 +13,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -56,8 +56,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -99,31 +99,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -131,13 +131,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -147,8 +147,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -157,17 +157,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -185,8 +185,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -195,17 +195,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -213,22 +213,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -246,8 +246,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -273,18 +273,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -299,26 +299,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -329,52 +329,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -383,14 +383,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -399,10 +399,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -410,15 +410,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -426,24 +426,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -457,30 +457,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -494,28 +494,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -525,18 +525,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -554,22 +554,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -577,8 +577,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -593,17 +593,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -620,8 +620,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -647,22 +647,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -686,21 +686,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -757,35 +757,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -847,8 +847,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -864,15 +864,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -896,34 +896,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -932,27 +932,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -960,10 +960,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -971,8 +971,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -987,13 +987,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1018,24 +1018,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1060,8 +1060,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/tr/olsr.po b/applications/luci-app-olsr/po/tr/olsr.po index 3385fa6541..0b875f4549 100644 --- a/applications/luci-app-olsr/po/tr/olsr.po +++ b/applications/luci-app-olsr/po/tr/olsr.po @@ -20,23 +20,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -63,8 +63,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -106,31 +106,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -138,13 +138,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -154,8 +154,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -164,17 +164,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -192,8 +192,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -202,17 +202,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -220,22 +220,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -253,8 +253,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -280,18 +280,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -306,26 +306,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -336,52 +336,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -390,14 +390,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -406,10 +406,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -417,15 +417,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -433,24 +433,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -464,30 +464,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -501,28 +501,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -532,18 +532,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -561,22 +561,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -584,8 +584,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -600,17 +600,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -627,8 +627,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -654,22 +654,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -693,21 +693,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -764,35 +764,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -854,8 +854,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -871,15 +871,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -903,34 +903,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -939,27 +939,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -967,10 +967,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -978,8 +978,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -994,13 +994,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1025,24 +1025,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1067,8 +1067,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/uk/olsr.po b/applications/luci-app-olsr/po/uk/olsr.po index 9d6e8b1db5..850d3bdaa7 100644 --- a/applications/luci-app-olsr/po/uk/olsr.po +++ b/applications/luci-app-olsr/po/uk/olsr.po @@ -21,23 +21,23 @@ msgstr "" msgid "Active host net announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -64,8 +64,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -107,31 +107,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -139,13 +139,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -155,8 +155,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -165,17 +165,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "" @@ -193,8 +193,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -203,17 +203,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "" @@ -221,22 +221,22 @@ msgstr "" msgid "HNA6 Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "" @@ -254,8 +254,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -281,18 +281,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -307,26 +307,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -337,52 +337,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -391,14 +391,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -407,10 +407,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -418,15 +418,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -434,24 +434,24 @@ msgstr "" msgid "Internet protocol" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -465,30 +465,30 @@ msgstr "" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -502,28 +502,28 @@ msgstr "" msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -533,18 +533,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -562,22 +562,22 @@ msgid "Local interface IP" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "" @@ -585,8 +585,8 @@ msgstr "" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -601,17 +601,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -628,8 +628,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -655,22 +655,22 @@ msgstr "" msgid "Netmask" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -694,21 +694,21 @@ msgstr "" msgid "OLSR - HNA6-Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -765,35 +765,35 @@ msgstr "" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -855,8 +855,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -872,15 +872,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -904,34 +904,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -940,27 +940,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -968,10 +968,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -979,8 +979,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -995,13 +995,13 @@ msgstr "" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "" @@ -1026,24 +1026,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1068,8 +1068,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "" diff --git a/applications/luci-app-olsr/po/vi/olsr.po b/applications/luci-app-olsr/po/vi/olsr.po index ae73fafc66..887d56ec7d 100644 --- a/applications/luci-app-olsr/po/vi/olsr.po +++ b/applications/luci-app-olsr/po/vi/olsr.po @@ -26,23 +26,23 @@ msgstr "Những OLSR nodes đang hoạt động" msgid "Active host net announcements" msgstr "Thông báo của mạng host đang hoạt động" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "" @@ -69,8 +69,8 @@ msgstr "" msgid "Broadcast address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "" @@ -112,31 +112,31 @@ msgstr "" msgid "ETX" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "" @@ -144,13 +144,13 @@ msgstr "" msgid "Expected retransmission count" msgstr "Expected retransmission count" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB metric" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -160,8 +160,8 @@ msgid "" "Default is \"flat\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "" @@ -170,17 +170,17 @@ msgstr "" msgid "Gateway" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "Cài đặt tổng quát" @@ -198,8 +198,8 @@ msgid "Green" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "" @@ -208,17 +208,17 @@ msgstr "" msgid "HNA Announcements" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "Khoảng HNA" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "Thời gian hợp lệ hóa HNA " @@ -227,22 +227,22 @@ msgstr "Thời gian hợp lệ hóa HNA " msgid "HNA6 Announcements" msgstr "OLSR - HNA - Thông báo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Vùng xin chào" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Thời gian hợp lệ hóa lời chào" @@ -260,8 +260,8 @@ msgstr "" msgid "Hna4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "" @@ -287,18 +287,18 @@ msgid "" "networks using HNA6 messages." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " "\"yes\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "" @@ -313,26 +313,26 @@ msgstr "" msgid "IPv4" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 broadcast" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " "interface broadcast IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -343,52 +343,52 @@ msgstr "" msgid "IPv6" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " "of a not-linklocal interface IP." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -397,14 +397,14 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -413,10 +413,10 @@ msgstr "" msgid "Interface" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -424,15 +424,15 @@ msgid "" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "" @@ -440,24 +440,24 @@ msgstr "" msgid "Internet protocol" msgstr "Internet protocol" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -471,30 +471,30 @@ msgstr "Tuyến OLRS đã biết" msgid "LQ" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ aging" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ algorithm" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ fisheye" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ level" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -508,28 +508,28 @@ msgstr "Hop cuối " msgid "Legend" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "Thư viện " -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -539,18 +539,18 @@ msgid "" "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " "quality for MPR selection and routing<br />Default is \"2\"" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "" @@ -568,22 +568,22 @@ msgid "Local interface IP" msgstr "Giao diện địa phương IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "Khoảng MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "Thời gian hợp lệ hóa MID" @@ -591,8 +591,8 @@ msgstr "Thời gian hợp lệ hóa MID" msgid "MTU" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "" @@ -607,17 +607,17 @@ msgstr "" msgid "Metric" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -634,8 +634,8 @@ msgid "" "LQ to all nodes on this interface by 20%: default 0.8" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "" @@ -661,22 +661,22 @@ msgstr "" msgid "Netmask" msgstr "Netmask" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "" @@ -701,21 +701,21 @@ msgstr "OLSR - HNA - Thông báo" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA - Thông báo" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - Plugins" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR Daemon" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "" @@ -772,35 +772,35 @@ msgstr "Tổng quát về thông báo của nhiều giao diện đã biết" msgid "Overview of smart gateways in this network" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "Cấu hình Plugin" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "Pollrate" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -862,8 +862,8 @@ msgid "Signal Noise Ratio in dB" msgstr "" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "" @@ -879,15 +879,15 @@ msgstr "" msgid "Source address" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "" @@ -911,34 +911,34 @@ msgstr "" msgid "Success rate of packages sent to the neighbour" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "Khoảng TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "Thời gian hợp lệ hóa TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -947,27 +947,27 @@ msgid "" "documentation." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -975,10 +975,10 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "" @@ -986,8 +986,8 @@ msgstr "" msgid "Topology" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1002,13 +1002,13 @@ msgstr "Không thể kết nối với OLSR daemon!" msgid "Uplink" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "Dùng hysteresis" @@ -1033,24 +1033,24 @@ msgstr "" msgid "WLAN" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1075,8 +1075,8 @@ msgid "" "setting is \"both\"." msgstr "" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "Sẵn sàng" diff --git a/applications/luci-app-olsr/po/zh-cn/olsr.po b/applications/luci-app-olsr/po/zh-cn/olsr.po index 60e4b3cd67..4d6d3561c4 100644 --- a/applications/luci-app-olsr/po/zh-cn/olsr.po +++ b/applications/luci-app-olsr/po/zh-cn/olsr.po @@ -1,10 +1,10 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. +# Yangfl <mmyangfl@gmail.com>, 2018, 2019. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2018-10-01 11:10+0800\n" +"PO-Revision-Date: 2019-01-15 11:21+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: zh_CN\n" @@ -26,23 +26,23 @@ msgstr "活动的 OLSR 节点" msgid "Active host net announcements" msgstr "活动的主机网络通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "高级设置" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "允许带 NAT 的网关" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "允许选择有 NAT 的 IPv4 网关" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "通告上行链接" @@ -69,8 +69,8 @@ msgstr "两个值必须使用点分十进制表示法。" msgid "Broadcast address" msgstr "广播地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "必须是有效的 IPv4 或 IPv6 地址,或“默认”" @@ -113,19 +113,19 @@ msgstr "下载配置" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "启用" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -133,13 +133,13 @@ msgstr "" "启用 SmartGateway。如果禁用,则将忽略 SmartGateway 的其他所有参数。缺省" "值:“no”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." -msgstr "启用这个端口" +msgstr "启用这个接口" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "已启用" @@ -147,13 +147,13 @@ msgstr "已启用" msgid "Expected retransmission count" msgstr "预期重发数" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB 度量" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -162,13 +162,13 @@ msgid "" "value too, but does only update the hopcount if the nexthop changes too. " "Default is \"flat\"." msgstr "" -"FIBMetric 控制主机路由 OLSRd 集的度量标准值。“flat”表示度量值始终为2。这是首" +"FIBMetric 控制主机路由 OLSRd 集的度量标准值。“flat”表示度量值始终为 2。这是首" "选值,因为它有助于 linux 内核清理旧路由。“correct”使用 hopcount 作为度量" "值。“approx”也使用 hopcount 作为度量值,但只有在下一次更改时才更新 hopcount。" "默认为“flat”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "TC 的鱼眼机制(校验和开启)。默认为“开启”" @@ -177,17 +177,17 @@ msgstr "TC 的鱼眼机制(校验和开启)。默认为“开启”" msgid "Gateway" msgstr "网关" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "一般设置" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "一般设置" @@ -205,8 +205,8 @@ msgid "Green" msgstr "绿" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -215,17 +215,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "HNA 通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA 间隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "HNA 有效时长" @@ -233,22 +233,22 @@ msgstr "HNA 有效时长" msgid "HNA6 Announcements" msgstr "HNA 通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hello 间隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Hello 有效时长" @@ -266,8 +266,8 @@ msgstr "隐藏 IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -293,8 +293,8 @@ msgid "" "networks using HNA6 messages." msgstr "OLSR 路由网络中的主机可以使用 HNA6 消息通告与外部网络的连接。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -303,10 +303,10 @@ msgstr "" "滞后链路检测(仅适用于 hopcount 度量)。滞后增加了链路感测的健壮性,但延迟了" "邻居注册过程。默认值为“是”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP 地址" @@ -321,13 +321,13 @@ msgstr "要使用的 IP 版本。如果选择 6and4,则为每个协议启动 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 广播地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -336,13 +336,13 @@ msgstr "" "传出 OLSR 数据包的 IPv4 广播地址。一个有用的例子是 255.255.255.255。默认" "为“0.0.0.0”,将触发使用接口的 IP 广播地址。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 源地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -353,39 +353,39 @@ msgstr "传出 OLSR 包的 IPv4 源地址。默认为“0.0.0.0”,将触发 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 组播地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "IPv6 组播地址。默认为“FF02::6D”,即 manet-router 链路本地组播地址。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "IPv6 网络必须完整表出,前缀必须是 CIDR 表示法。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 源地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -394,13 +394,13 @@ msgstr "" "IPv6 源前缀。OLSRd 将选择一个与此参数前缀匹配的接口 IP。默认为“0::/0”,触发使" "用接口的非链路本地 IP。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "IPv6 上行链路前缀" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -409,17 +409,17 @@ msgid "" "with the etx_ffeth metric!<br />Defaults to \"1.0\"." msgstr "" "如果要更改到当前网关的路由,则在将该网关与新网关进行比较之前,将该网关的ETX值" -"乘以该值。参数可以是介于0.1和1.0之间的值,但如果更改则应接近1.0。<br /><b>警" -"告:</b>此参数不应与etx_ffeth指标一起使用!<br />默认值到“1.0”。" +"乘以该值。参数可以是介于 0.1 和 1.0 之间的值,但如果更改则应接近 1.0。<br /" +"><b>警告:</b>此参数不应与 etx_ffeth 指标一起使用!<br />默认值到“1.0”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "如果此节点使用 NAT 连接到互联网。默认为“是”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -428,10 +428,10 @@ msgstr "如果此节点使用 NAT 连接到互联网。默认为“是”。" msgid "Interface" msgstr "接口" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -441,15 +441,15 @@ msgstr "" "是“mesh”和“ether”。默认为“mesh”。" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "接口" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "接口默认值" @@ -457,28 +457,29 @@ msgstr "接口默认值" msgid "Internet protocol" msgstr "互联网协议" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "轮询网络接口以进行配置更改的间隔(秒)。默认值为“2.5”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." -msgstr "LQMult-Value 的值无效。必须介于0.01和1.0之间。" +msgstr "LQMult-Value 的值无效。必须介于 0.01 和 1.0 之间。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." -msgstr "LQMult-Value 的值无效。您必须在此处使用介于0.01和1.0之间的十进制数。" +msgstr "" +"LQMult-Value 的值无效。您必须在此处使用介于 0.01 和 1.0 之间的十进制数。" #: applications/luci-app-olsr/luasrc/view/status-olsr/routes.htm:98 msgid "Known OLSR routes" @@ -488,30 +489,30 @@ msgstr "已知的 OLSR 路由" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ 老化" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ 算法" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ 鱼眼" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ 级别" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -525,30 +526,30 @@ msgstr "最后一跳" msgid "Legend" msgstr "Legend" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "库" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "链接质量设置" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " "(allowed values are between 0.01 and 1.0)" msgstr "" -"链路质量老化因子(仅适用于 lq 级别2)。调整 etx_float 和 etx_fpm 的参数,值越" -"小意味着 ETX 值的变化越慢。(允许值介于0.01和1.0之间)" +"链路质量老化因子(仅适用于 lq 级别 2)。调整 etx_float 和 etx_fpm 的参数,值" +"越小意味着 ETX 值的变化越慢。(允许值介于 0.01 和 1.0 之间)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -557,14 +558,14 @@ msgid "" "calculation<br /><b>etx_ffeth</b>: incompatible variant of etx_ff that " "allows ethernet links with ETX 0.1.<br />Defaults to \"etx_ff\"" msgstr "" -"链路质量算法(仅适用于 lq 级别2)。<br /><b>etx_float</b>:浮点数 ETX,按指数" -"函数老化<br /><b>etx_fpm</b>:与etx_float 相同,但按整数算术<br /><b>etx_ff</" -"b>:ETX freifunk,一种使用所有 OLSR 流量(而不仅仅是 hello)进行 ETX 计算的 " -"etx 变体<br /><b>etx_ffeth</b>:不兼容的变体 etx_ff,允许以太网链接使用 ETX " -"0.1。<br />默认为“etx_ff”" +"链路质量算法(仅适用于 lq 级别 2)。<br /><b>etx_float</b>:浮点数 ETX,按指" +"数函数老化<br /><b>etx_fpm</b>:与 etx_float 相同,但按整数运算<br /" +"><b>etx_ff</b>:ETX freifunk,一种使用所有 OLSR 流量(而不仅仅是 hello)进行 " +"ETX 计算的 etx 变体<br /><b>etx_ffeth</b>:不兼容的变体 etx_ff,允许以太网链" +"接使用 ETX 0.1。<br />默认为“etx_ff”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -574,10 +575,10 @@ msgstr "" "= 不使用链接质量<br /><b>2</b> = 使用链接质量进行 MPR 选择和路由<br />默认" "为“2”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "LinkQuality 乘数" @@ -595,22 +596,22 @@ msgid "Local interface IP" msgstr "本地接口 IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID 间隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "MID 有效期" @@ -618,8 +619,8 @@ msgstr "MID 有效期" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "主要 IP" @@ -628,7 +629,7 @@ msgid "" "Make sure that OLSRd is running, the \"jsoninfo\" plugin is loaded, " "configured on port 9090 and accepts connections from \"127.0.0.1\"." msgstr "" -"确保 OLSRd 正在运行,加载了“jsoninfo”插件,在端口9090上配置接受来" +"确保 OLSRd 正在运行,加载了“jsoninfo”插件,在端口 9090 上配置接受来" "自“127.0.0.1”的连接。" #: applications/luci-app-olsr/luasrc/view/status-olsr/routes.htm:50 @@ -636,26 +637,26 @@ msgstr "" msgid "Metric" msgstr "度量" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "模式" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 192.168.0.1 by half: 192.168.0.1 0.5<br />reduce LQ to all " "nodes on this interface by 20%: default 0.8" msgstr "" -"使用此处给出的因子放大路由 LQ。允许值介于0.01和1.0之间。它仅在 LQ-Level 大于0" -"时使用。示例:<br />将到 192.168.0.1 的 LQ 减半:192.168.0.1 0.5<br />将此接" -"口到所有节点的 LQ 减少20%:default 0.8" +"使用此处给出的因子放大路由 LQ。允许值介于 0.01 和 1.0 之间。它仅在 LQ-Level " +"大于 0 时使用。示例:<br />将到 192.168.0.1 的 LQ 减半:192.168.0.1 0.5<br />" +"将此接口到所有节点的 LQ 减少 20%:默认 0.8" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:71 @@ -665,12 +666,12 @@ msgid "" ">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 "" -"使用此处给出的因子放大路由 LQ。允许值介于0.01和1.0之间。它仅在 LQ-Level 大于0" -"时使用。示例:<br />将到 fd91:662e:3c58::1 的 LQ 减半:fd91:662e:3c58::1 " -"0.5<br />将此接口到所有节点的 LQ 减少20%:default 0.8" +"使用此处给出的因子放大路由 LQ。允许值介于 0.01 和 1.0 之间。它仅在 LQ-Level " +"大于 0 时使用。示例:<br />将到 fd91:662e:3c58::1 的 LQ 减半:" +"fd91:662e:3c58::1 0.5<br />将此接口到所有节点的 LQ 减少 20%:默认 0.8" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "NAT 阈值" @@ -696,22 +697,22 @@ msgstr "邻居" msgid "Netmask" msgstr "子网掩码" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "网络" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "网络地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Nic 更改轮询间隔" @@ -725,7 +726,7 @@ msgstr "OLSR" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrddisplay.lua:4 msgid "OLSR - Display Options" -msgstr "OLSR - 显示选项" +msgstr "OLSR - 显示选项" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:8 msgid "OLSR - HNA-Announcements" @@ -735,21 +736,21 @@ msgstr "OLSR - HNA-通告" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA6-通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - 插件" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR 守护进程" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR 守护进程 - 接口" @@ -806,35 +807,35 @@ msgstr "已知的多接口通告概览" msgid "Overview of smart gateways in this network" msgstr "此网络中的智能网关概览" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "插件配置" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "插件" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." -msgstr "OLSR 套接字的轮询速率,以秒为单位。默认值为0.05。" +msgstr "OLSR 套接字的轮询速率,以秒为单位。默认值为 0.05。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "轮询速率" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "端口" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -869,7 +870,7 @@ msgstr "辅助 OLSR 接口" #: 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 "已选择" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:133 msgid "" @@ -902,8 +903,8 @@ msgid "Signal Noise Ratio in dB" msgstr "信噪比(dB)" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -919,8 +920,8 @@ msgstr "此系统上未配置 SmartGateway。" msgid "Source address" msgstr "源地址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -928,8 +929,8 @@ msgstr "" "以千比特/秒为单位指定上行链路的速度。第一个参数是上传,第二个参数是下载。默认" "值为“128 1024”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "上行链路的速度" @@ -953,34 +954,34 @@ msgstr "从邻居收包的成功率" msgid "Success rate of packages sent to the neighbour" msgstr "向邻居发包的成功率" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC 间隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "TC 有效时间" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS 值" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -993,8 +994,8 @@ msgstr "" "卡上运行,当然也可以在任何以太网设备上运行。访问 <a href='http://www.olsr." "org'>olsrd.org</a> 获取帮助和文档。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1002,22 +1003,22 @@ msgstr "" "固定的使用意愿值。如果未设置,则将根据电池/电源状态动态计算意愿值。默认值" "为“3”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "OLSRd 应该服务的接口。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" -"OLSR 使用的端口。通常应使用 IANA 分配的保留端口698。它的值可以在1到65535之" -"间。" +"OLSR 使用的端口。通常应使用 IANA 分配的保留端口 698。它的值可以在 1 到 65535 " +"之间。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1025,13 +1026,13 @@ msgid "" "length is 64 bits. Default is \"::/0\" (no prefix)." msgstr "" "这可用于向客户端通知上行链路的外部 IPv6 前缀。这可能可使客户端更改其本地 " -"IPv6 地址,以使用 IPv6 网关,而无需任何类型的地址转换。前缀长度最大为64位。默" -"认为“::/0”(无前缀)。" +"IPv6 地址,以使用 IPv6 网关,而无需任何类型的地址转换。前缀长度最大为 64 位。" +"默认为“::/0”(无前缀)。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "时间和有效性" @@ -1039,8 +1040,8 @@ msgstr "时间和有效性" msgid "Topology" msgstr "拓扑" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1055,13 +1056,13 @@ msgstr "无法连接到 OLSR 守护程序!" msgid "Uplink" msgstr "上行链接" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "上行链接使用 NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "使用滞后" @@ -1086,8 +1087,8 @@ msgstr "非常好(SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1095,17 +1096,17 @@ msgstr "" "警告:未安装 kmod-ipip。没有 kmod-ipip,SmartGateway 将无法正常工作,请安装" "它。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" -msgstr "体重" +msgstr "权重" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1117,7 +1118,7 @@ msgid "" msgstr "" "当主机之间存在多个链路时,接口权重用于确定要使用的链路。通常,权重由 olsrd 根" "据接口的特性自动计算,但您可以在此处指定固定值。Olsrd 将选择值最低的链接。" -"<br /><b>注意:</b>仅当 LinkQualityLevel 设置为0时才使用接口权重。" +"<br /><b>注意:</b>仅当 LinkQualityLevel 设置为 0 时才使用接口权重。" "LinkQualityLevel 的任何其他值都将使用接口的 ETX 值。" #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 @@ -1138,8 +1139,8 @@ msgstr "" "将导出哪种上行链路到其他网状节点。通过查找本地 HNA6 ::ffff:0:0/96 或 " "2000::/3 来检测上行链路。默认设置为“两者”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "意愿值" @@ -1150,7 +1151,7 @@ msgstr "黄色" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:38 msgid "down" -msgstr "" +msgstr "未连接" #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:30 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:134 @@ -1169,7 +1170,7 @@ msgstr "否" #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:38 msgid "up" -msgstr "" +msgstr "连接" #: 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-olsr/po/zh-tw/olsr.po b/applications/luci-app-olsr/po/zh-tw/olsr.po index 007612a62b..da4972078c 100644 --- a/applications/luci-app-olsr/po/zh-tw/olsr.po +++ b/applications/luci-app-olsr/po/zh-tw/olsr.po @@ -26,23 +26,23 @@ msgstr "活動的 OLSR 節點" msgid "Active host net announcements" msgstr "活動的主機網路通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:45 msgid "Advanced Settings" msgstr "進階設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow gateways with NAT" msgstr "允許帶 NAT 的閘道器" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:147 msgid "Allow the selection of an outgoing ipv4 gateway with NAT" msgstr "允許選擇有 NAT 的 IPv4 閘道器" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:149 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:155 msgid "Announce uplink" msgstr "通告上行連結" @@ -69,8 +69,8 @@ msgstr "兩個值必須使用點分十進位制表示法。" msgid "Broadcast address" msgstr "廣播位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:265 msgid "Can only be a valid IPv4 or IPv6 address or 'default'" msgstr "必須是有效的 IPv4 或 IPv6 位址,或“預設”" @@ -113,19 +113,19 @@ msgstr "下載配置" msgid "ETX" msgstr "ETX" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:346 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:35 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:35 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:365 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:15 msgid "Enable" msgstr "啟用" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:140 msgid "" "Enable SmartGateway. If it is disabled, then all other SmartGateway " "parameters are ignored. Default is \"no\"." @@ -133,13 +133,13 @@ msgstr "" "啟用 SmartGateway。如果禁用,則將忽略 SmartGateway 的其他所有引數。預設" "值:“no”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:36 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:36 msgid "Enable this interface." msgstr "啟用這個埠" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:249 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:249 msgid "Enabled" msgstr "已啟用" @@ -147,13 +147,13 @@ msgstr "已啟用" msgid "Expected retransmission count" msgstr "預期重發數" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:65 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:71 msgid "FIB metric" msgstr "FIB 度量" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:66 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:72 msgid "" "FIBMetric controls the metric value of the host-routes OLSRd sets. \"flat\" " "means that the metric value is always 2. This is the preferred value because " @@ -167,8 +167,8 @@ msgstr "" "值。“approx”也使用 hopcount 作為度量值,但只有在下一次更改時才更新 hopcount。" "預設為“flat”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:106 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:112 msgid "Fisheye mechanism for TCs (checked means on). Default is \"on\"" msgstr "TC 的魚眼機制(校驗和開啟)。預設為“開啟”" @@ -177,17 +177,17 @@ msgstr "TC 的魚眼機制(校驗和開啟)。預設為“開啟”" msgid "Gateway" msgstr "閘道器" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:42 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:216 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:31 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:42 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:222 msgid "General Settings" msgstr "一般設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:39 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:39 msgid "General settings" msgstr "一般設定" @@ -205,8 +205,8 @@ msgid "Green" msgstr "綠" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:53 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:383 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:402 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:178 msgid "HNA" msgstr "HNA" @@ -215,17 +215,17 @@ msgstr "HNA" msgid "HNA Announcements" msgstr "HNA 通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:322 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:152 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:165 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:341 msgid "HNA interval" msgstr "HNA 間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:328 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:158 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:171 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:347 msgid "HNA validity time" msgstr "HNA 有效時長" @@ -233,22 +233,22 @@ msgstr "HNA 有效時長" msgid "HNA6 Announcements" msgstr "HNA 通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:362 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:381 msgid "Hello" msgstr "Hello" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:286 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:129 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:305 msgid "Hello interval" msgstr "Hello 間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:292 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:135 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:311 msgid "Hello validity time" msgstr "Hello 有效時長" @@ -266,8 +266,8 @@ msgstr "隱藏 IPv6" msgid "Hna4" msgstr "Hna4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "Hna6" msgstr "Hna6" @@ -293,8 +293,8 @@ msgid "" "networks using HNA6 messages." msgstr "OLSR 路由網路中的主機可以使用 HNA6 訊息通告與外部網路的連線。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:117 msgid "" "Hysteresis for link sensing (only for hopcount metric). Hysteresis adds more " "robustness to the link sensing but delays neighbor registration. Defaults is " @@ -303,10 +303,10 @@ msgstr "" "滯後鏈路檢測(僅適用於 hopcount 度量)。滯後增加了鏈路感測的健壯性,但延遲了" "鄰居註冊過程。預設值為“是”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:217 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:32 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:223 msgid "IP Addresses" msgstr "IP 位址" @@ -321,13 +321,13 @@ msgstr "要使用的 IP 版本。如果選擇 6and4,則為每個協議啟動 msgid "IPv4" msgstr "IPv4" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:278 msgid "IPv4 broadcast" msgstr "IPv4 廣播位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:279 msgid "" "IPv4 broadcast address for outgoing OLSR packets. One useful example would " "be 255.255.255.255. Default is \"0.0.0.0\", which triggers the usage of the " @@ -336,13 +336,13 @@ msgstr "" "傳出 OLSR 資料包的 IPv4 廣播位址。一個有用的例子是 255.255.255.255。預設" "為“0.0.0.0”,將觸發使用介面的 IP 廣播位址。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:116 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:291 msgid "IPv4 source" msgstr "IPv4 源位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:117 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:292 msgid "" "IPv4 src address for outgoing OLSR packages. Default is \"0.0.0.0\", which " "triggers usage of the interface IP." @@ -353,39 +353,39 @@ msgstr "傳出 OLSR 包的 IPv4 源位址。預設為“0.0.0.0”,將觸發 msgid "IPv6" msgstr "IPv6" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:272 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:103 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:285 msgid "IPv6 multicast" msgstr "IPv6 組播位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:273 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:104 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:111 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:286 msgid "" "IPv6 multicast address. Default is \"FF02::6D\", the manet-router linklocal " "multicast." msgstr "IPv6 組播位址。預設為“FF02::6D”,即 manet-router 鏈路本地組播位址。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:10 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:28 msgid "" "IPv6 network must be given in full notation, prefix must be in CIDR notation." msgstr "IPv6 網路必須完整表出,字首必須是 CIDR 表示法。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:278 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:109 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:122 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:297 msgid "IPv6 source" msgstr "IPv6 源位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:279 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:123 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:298 msgid "" "IPv6 src prefix. OLSRd will choose one of the interface IPs which matches " "the prefix of this parameter. Default is \"0::/0\", which triggers the usage " @@ -394,13 +394,13 @@ msgstr "" "IPv6 源字首。OLSRd 將選擇一個與此引數字首匹配的介面 IP。預設為“0::/0”,觸發使" "用介面的非鏈路本地 IP。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "IPv6-Prefix of the uplink" msgstr "IPv6 上行鏈路字首" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:196 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:202 msgid "" "If the route to the current gateway is to be changed, the ETX value of this " "gateway is multiplied with this value before it is compared to the new one. " @@ -412,14 +412,14 @@ msgstr "" "器的ETX值乘以該值。引數可以是介於0.1和1.0之間的值,但如果更改則應接近1.0。" "<br /><b>警告:</b>此引數不應與etx_ffeth指標一起使用!<br />預設值到“1.0”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "" "If this Node uses NAT for connections to the internet. Default is \"yes\"." msgstr "如果此節點使用 NAT 連線到網際網路。預設為“是”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:27 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:27 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:23 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:62 #: applications/luci-app-olsr/luasrc/view/status-olsr/neighbors.htm:128 @@ -428,10 +428,10 @@ msgstr "如果此節點使用 NAT 連線到網際網路。預設為“是”。" msgid "Interface" msgstr "介面" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:221 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:52 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:227 msgid "" "Interface Mode is used to prevent unnecessary packet forwarding on switched " "ethernet interfaces. valid Modes are \"mesh\" and \"ether\". Default is " @@ -441,15 +441,15 @@ msgstr "" "是“mesh”和“ether”。預設為“mesh”。" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:70 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:335 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:354 #: applications/luci-app-olsr/luasrc/view/status-olsr/interfaces.htm:14 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:163 msgid "Interfaces" msgstr "介面" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:212 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:218 msgid "Interfaces Defaults" msgstr "介面預設值" @@ -457,24 +457,24 @@ msgstr "介面預設值" msgid "Internet protocol" msgstr "網際網路協議" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:54 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:60 msgid "" "Interval to poll network interfaces for configuration changes (in seconds). " "Default is \"2.5\"." msgstr "輪詢網路介面以進行配置更改的間隔(秒)。預設值為“2.5”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:262 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:93 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:268 msgid "Invalid Value for LQMult-Value. Must be between 0.01 and 1.0." msgstr "LQMult-Value 的值無效。必須介於0.01和1.0之間。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:265 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:96 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:271 msgid "" "Invalid Value for LQMult-Value. You must use a decimal number between 0.01 " "and 1.0 here." @@ -488,30 +488,30 @@ msgstr "已知的 OLSR 路由" msgid "LQ" msgstr "LQ" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:84 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:90 msgid "LQ aging" msgstr "LQ 老化" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:90 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:96 msgid "LQ algorithm" msgstr "LQ 演算法" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:105 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:111 msgid "LQ fisheye" msgstr "LQ 魚眼" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:76 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:82 msgid "LQ level" msgstr "LQ 級別" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:256 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:87 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:262 msgid "" "LQMult requires two values (IP address or 'default' and multiplicator) " "separated by space." @@ -525,20 +525,20 @@ msgstr "最後一跳" msgid "Legend" msgstr "Legend" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:23 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:257 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:23 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:257 msgid "Library" msgstr "庫" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:43 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:43 msgid "Link Quality Settings" msgstr "連結質量設定" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:85 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:91 msgid "" "Link quality aging factor (only for lq level 2). Tuning parameter for " "etx_float and etx_fpm, smaller values mean slower changes of ETX value. " @@ -547,8 +547,8 @@ msgstr "" "鏈路質量老化因子(僅適用於 lq 級別2)。調整 etx_float 和 etx_fpm 的引數,值越" "小意味著 ETX 值的變化越慢。(允許值介於0.01和1.0之間)" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:91 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:97 msgid "" "Link quality algorithm (only for lq level 2).<br /><b>etx_float</b>: " "floating point ETX with exponential aging<br /><b>etx_fpm</b> : same as " @@ -563,8 +563,8 @@ msgstr "" "ETX 計算的 etx 變體<br /><b>etx_ffeth</b>:不相容的變體 etx_ff,允許乙太網連" "結使用 ETX 0.1。<br />預設為“etx_ff”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:77 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:83 msgid "" "Link quality level switch between hopcount and cost-based (mostly ETX) " "routing.<br /><b>0</b> = do not use link quality<br /><b>2</b> = use link " @@ -574,10 +574,10 @@ msgstr "" "= 不使用連結質量<br /><b>2</b> = 使用連結質量進行 MPR 選擇和路由<br />預設" "為“2”" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:239 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:70 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:245 msgid "LinkQuality Multiplicator" msgstr "LinkQuality 乘數" @@ -595,22 +595,22 @@ msgid "Local interface IP" msgstr "本地介面 IP" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:58 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:376 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:395 msgid "MID" msgstr "MID" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:310 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:140 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:153 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:329 msgid "MID interval" msgstr "MID 間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:316 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:146 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:159 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:335 msgid "MID validity time" msgstr "MID 有效期" @@ -618,8 +618,8 @@ msgstr "MID 有效期" msgid "MTU" msgstr "MTU" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:126 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:132 msgid "Main IP" msgstr "主要 IP" @@ -636,17 +636,17 @@ msgstr "" msgid "Metric" msgstr "度量" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:220 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:357 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:51 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:226 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:376 msgid "Mode" msgstr "模式" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:71 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:246 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 /" @@ -669,8 +669,8 @@ msgstr "" "時使用。示例:<br />將到 fd91:662e:3c58::1 的 LQ 減半:fd91:662e:3c58::1 " "0.5<br />將此介面到所有節點的 LQ 減少20%:default 0.8" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:195 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:201 msgid "NAT threshold" msgstr "NAT 閾值" @@ -696,22 +696,22 @@ msgstr "鄰居" msgid "Netmask" msgstr "子網掩碼" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:354 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:373 #: applications/luci-app-olsr/luasrc/view/status-olsr/overview.htm:160 msgid "Network" msgstr "網路" +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:17 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:34 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:16 msgid "Network address" msgstr "網路位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:53 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:59 msgid "Nic changes poll interval" msgstr "Nic 更改輪詢間隔" @@ -735,21 +735,21 @@ msgstr "OLSR - HNA-通告" msgid "OLSR - HNA6-Announcements" msgstr "OLSR - HNA6-通告" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:9 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:216 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:9 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:216 msgid "OLSR - Plugins" msgstr "OLSR - 外掛" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:12 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:12 #: applications/luci-app-olsr/luasrc/view/status-olsr/error_olsr.htm:8 msgid "OLSR Daemon" msgstr "OLSR 守護程序" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:14 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:14 msgid "OLSR Daemon - Interface" msgstr "OLSR 守護程序 - 介面" @@ -806,35 +806,35 @@ msgstr "已知的多介面通告概覽" msgid "Overview of smart gateways in this network" msgstr "此網路中的智慧閘道器概覽" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:11 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:11 msgid "Plugin configuration" msgstr "外掛配置" #: applications/luci-app-olsr/luasrc/controller/olsr4.lua:29 #: applications/luci-app-olsr/luasrc/controller/olsr6.lua:29 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins6.lua:240 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdplugins.lua:240 msgid "Plugins" msgstr "外掛" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:48 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:54 msgid "Polling rate for OLSR sockets in seconds. Default is 0.05." msgstr "OLSR 套接字的輪詢速率,以秒為單位。預設值為0.05。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:47 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:53 msgid "Pollrate" msgstr "輪詢速率" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:120 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:126 msgid "Port" msgstr "埠" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna6.lua:20 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdhna.lua:38 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:63 #: applications/luci-app-olsr/luasrc/view/status-olsr/smartgw.htm:115 msgid "Prefix" @@ -902,8 +902,8 @@ msgid "Signal Noise Ratio in dB" msgstr "信噪比(dB)" #: applications/luci-app-olsr/luasrc/controller/olsr.lua:64 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "SmartGW" msgstr "SmartGW" @@ -919,8 +919,8 @@ msgstr "此係統上未配置 SmartGateway。" msgid "Source address" msgstr "源位址" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "" "Specifies the speed of the uplink in kilobits/s. First parameter is " "upstream, second parameter is downstream. Default is \"128 1024\"." @@ -928,8 +928,8 @@ msgstr "" "以千位元/秒為單位指定上行鏈路的速度。第一個引數是上傳,第二個引數是下載。預設" "值為“128 1024”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:170 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:176 msgid "Speed of the uplink" msgstr "上行鏈路的速度" @@ -953,34 +953,34 @@ msgstr "從鄰居收包的成功率" msgid "Success rate of packages sent to the neighbour" msgstr "向鄰居發包的成功率" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:369 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:388 msgid "TC" msgstr "TC" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:298 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:128 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:141 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:317 msgid "TC interval" msgstr "TC 間隔" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:304 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:134 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:147 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:323 msgid "TC validity time" msgstr "TC 有效時間" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:59 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:65 msgid "TOS value" msgstr "TOS 值" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:13 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:15 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:13 msgid "" "The OLSR daemon is an implementation of the Optimized Link State Routing " "protocol. As such it allows mesh routing for any network equipment. It runs " @@ -993,8 +993,8 @@ msgstr "" "卡上執行,當然也可以在任何乙太網裝置上執行。訪問 <a href='http://www.olsr." "org'>olsrd.org</a> 獲取幫助和文件。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:188 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:194 msgid "" "The fixed willingness to use. If not set willingness will be calculated " "dynamically based on battery/power status. Default is \"3\"." @@ -1002,21 +1002,21 @@ msgstr "" "固定的使用意願值。如果未設定,則將根據電池/電源狀態動態計算意願值。預設值" "為“3”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:45 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:45 msgid "The interface OLSRd should serve." msgstr "OLSRd 應該服務的介面。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:121 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:127 msgid "" "The port OLSR uses. This should usually stay at the IANA assigned port 698. " "It can have a value between 1 and 65535." msgstr "" "OLSR 使用的埠。通常應使用 IANA 分配的保留埠698。它的值可以在1到65535之間。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:178 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:184 msgid "" "This can be used to signal the external IPv6 prefix of the uplink to the " "clients. This might allow a client to change it's local IPv6 address to use " @@ -1027,10 +1027,10 @@ msgstr "" "IPv6 位址,以使用 IPv6 閘道器,而無需任何型別的位址轉換。字首長度最大為64位。" "默認為“::/0”(無字首)。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:218 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:33 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:224 msgid "Timing and Validity" msgstr "時間和有效性" @@ -1038,8 +1038,8 @@ msgstr "時間和有效性" msgid "Topology" msgstr "拓撲" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:66 msgid "" "Type of service value for the IP header of control traffic. Default is " "\"16\"." @@ -1054,13 +1054,13 @@ msgstr "無法連線到 OLSR 守護程式!" msgid "Uplink" msgstr "上行連結" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:160 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:166 msgid "Uplink uses NAT" msgstr "上行連結使用 NAT" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:110 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:116 msgid "Use hysteresis" msgstr "使用滯後" @@ -1085,8 +1085,8 @@ msgstr "非常好(SNR > 30)" msgid "WLAN" msgstr "WLAN" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:44 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:44 msgid "" "Warning: kmod-ipip is not installed. Without kmod-ipip SmartGateway will not " "work, please install it." @@ -1094,17 +1094,17 @@ msgstr "" "警告:未安裝 kmod-ipip。沒有 kmod-ipip,SmartGateway 將無法正常工作,請安裝" "它。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:229 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:60 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:235 msgid "Weight" msgstr "體重" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:230 -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface6.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrdiface.lua:61 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:236 msgid "" "When multiple links exist between hosts the weight of interface is used to " "determine the link to use. Normally the weight is automatically calculated " @@ -1137,8 +1137,8 @@ msgstr "" "將匯出哪種上行鏈路到其他網狀節點。通過查詢本地 HNA6 ::ffff:0:0/96 或 " "2000::/3 來檢測上行鏈路。預設設定為“兩者”。" -#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 #: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd6.lua:187 +#: applications/luci-app-olsr/luasrc/model/cbi/olsr/olsrd.lua:193 msgid "Willingness" msgstr "意願值" diff --git a/applications/luci-app-openvpn/po/ru/openvpn.po b/applications/luci-app-openvpn/po/ru/openvpn.po index 401e41186f..64139efb32 100644 --- a/applications/luci-app-openvpn/po/ru/openvpn.po +++ b/applications/luci-app-openvpn/po/ru/openvpn.po @@ -3,12 +3,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: LuCI: openvpn\n" "POT-Creation-Date: 2013-09-06 10:01+0200\n" -"PO-Revision-Date: 2018-01-31 12:42+0300\n" +"PO-Revision-Date: 2019-01-15 07:16+0300\n" "Language-Team: http://cyber-place.ru\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n" +"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" "Language: ru\n" @@ -18,7 +18,7 @@ msgstr "" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:794 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:797 msgid "%s" -msgstr "%ы" +msgstr "%s" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:363 msgid "'net30', 'p2p', or 'subnet'" @@ -26,7 +26,7 @@ msgstr "'net30', 'p2p' или 'subnet'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:480 msgid "Accept options pushed from server" -msgstr "Принять параметры, переданные с сервера." +msgstr "Принимать параметры, переданные с сервера" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:92 msgid "Add" @@ -34,69 +34,68 @@ msgstr "Добавить" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:224 msgid "Add route after establishing connection" -msgstr "Добавить маршрут после установки соединения." +msgstr "Добавить маршрут после установки соединения" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:92 msgid "Add template based configuration" -msgstr "" +msgstr "Добавить конфигурацию на основе шаблона" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:718 msgid "Additional authentication over TLS" -msgstr "Дополнительная аутентификация используя TLS." +msgstr "Дополнительная аутентификация используя TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:416 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:61 msgid "Allow client-to-client traffic" -msgstr "Разрешить трафик между клиентами." +msgstr "Разрешить трафик между клиентами" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:421 msgid "Allow multiple clients with same certificate" msgstr "" -"Разрешить одновременное подключение нескольких клиентов с одним сертификатом." +"Разрешить одновременное подключение нескольких клиентов с одним сертификатом" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:710 msgid "Allow only one session" -msgstr "Разрешить только одну сессию." +msgstr "Разрешить только одну сессию" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:192 msgid "Allow remote to change its IP or port" -msgstr "Разрешить удаленное изменение IP-адреса или порта." +msgstr "Разрешить удаленное изменение IP-адреса или порта" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:456 msgid "Allowed maximum of connected clients" -msgstr "Разрешено максимальное количество подключенных клиентов." +msgstr "Разрешено максимальное количество подключенных клиентов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:461 msgid "Allowed maximum of internal" msgstr "" -"Разрешено максимальное кол-во внутренних маршрутов клиенту (по " -"умолчанию=256)." +"Разрешено максимальное кол-во внутренних маршрутов клиенту (по умолчанию 256)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:466 msgid "Allowed maximum of new connections" -msgstr "Разрешено максимальное кол-во новых соединений." +msgstr "Разрешено максимальное кол-во новых соединений" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:67 msgid "Append log to file" -msgstr "Добавить запись в файл журнала." +msgstr "Добавить запись в файл журнала" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:485 msgid "Authenticate using username/password" -msgstr "Аутентификация используя имя пользователя и пароль." +msgstr "Аутентификация используя имя пользователя и пароль" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:556 msgid "Automatically redirect default route" -msgstr "Автоматически перенаправлять маршруты по умолчанию." +msgstr "Автоматически перенаправлять маршруты по умолчанию" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:11 msgid "Below is a list of configured OpenVPN instances and their current state" -msgstr "Список настроенных экземпляров OpenVPN и их текущее состояние." +msgstr "Список настроенных экземпляров OpenVPN и их текущее состояние" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:119 msgid "Call down cmd/script before TUN/TAP close" msgstr "" "Команда/скрипт для командной строки, запускаемая(ый) перед отключением TUN/" -"TAP." +"TAP" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:658 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:81 @@ -106,21 +105,21 @@ msgstr "Центр сертификации" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:79 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:17 msgid "Change process priority" -msgstr "Изменить приоритет процесса после инициализации." +msgstr "Изменить приоритет процесса после инициализации" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:39 msgid "Change to directory before initialization" -msgstr "Перейти в указанную папку перед инициализацией." +msgstr "Перейти в указанную папку перед инициализацией" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:746 msgid "Check peer certificate against a CRL" -msgstr "Проверить сертификат узла на соответствие файлу CRL в формате PEM." +msgstr "Проверить сертификат узла на соответствие файлу CRL в формате PEM" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:43 msgid "Chroot to directory after initialization" msgstr "" "Корневой каталог после инициализации. OpenVPN не сможет получить доступ к " -"файлам за его пределами." +"файлам за его пределами" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:391 msgid "Client is disabled" @@ -133,37 +132,37 @@ msgstr "Категория настройки" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:476 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:57 msgid "Configure client mode" -msgstr "Настроить режим клиента." +msgstr "Настроить режим клиента" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:376 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:37 msgid "Configure server bridge" -msgstr "Настроить мост сервера." +msgstr "Настроить мост сервера" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:371 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:33 msgid "Configure server mode" -msgstr "Настроить режим сервера." +msgstr "Настроить режим сервера" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:540 msgid "Connect through Socks5 proxy" -msgstr "Соединяться используя Socks5 прокси." +msgstr "Соединяться используя Socks5 прокси" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:520 msgid "Connect to remote host through an HTTP proxy" -msgstr "Подключиться к удалённому хосту используя HTTP прокси." +msgstr "Подключиться к удалённому хосту используя HTTP прокси" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:515 msgid "Connection retry interval" -msgstr "Интервал между попытками подключения." +msgstr "Интервал между попытками подключения" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:47 msgid "Daemonize after initialization" -msgstr "Запустить в режиме демона после инициализации." +msgstr "Запустить в режиме демона после инициализации" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:232 msgid "Delay n seconds after connection" -msgstr "Задержка n секунд после подключения." +msgstr "Задержка n секунд после подключения" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:111 msgid "Delay tun/tap open and up script execution" @@ -172,61 +171,62 @@ msgstr "Использовать задержку запуска tun/tap до в #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:662 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:85 msgid "Diffie Hellman parameters" -msgstr "Файл параметров Диффи Хелмана." +msgstr "Файл параметров Диффи Хелмана" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:426 msgid "Directory for custom client config files" -msgstr "Папка для пользовательских config файлов клиента." +msgstr "Папка для пользовательских config файлов клиента" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:23 msgid "Disable Paging" msgstr "" -"Отключите пейджинг, вызвав функцию 'POSIX mlockall'.<br />Требуется, чтобы " +"Отключить пейджинг, путём вызвова функции 'POSIX mlockall'. Требуется, чтобы " "OpenVPN был первоначально запущен от root.<br />Хотя OpenVPN может " -"впоследствии понизить свой UID с помощью опции '-user'." +"впоследствии понизить свой UID с помощью опции '-user'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:27 msgid "Disable options consistency check" -msgstr "Выключить проверку согласованности параметров." +msgstr "Выключить проверку согласованности параметров" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:196 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:41 msgid "Do not bind to local address and port" msgstr "" -"Не выполнять привязку к локальному адресу и порту.<br />Используется " -"динамический порт, подключение только с параметром 'remote'." +"Не выполнять привязку к локальному адресу и порту. Используется динамический " +"порт, подключение только с параметром 'remote'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:216 msgid "Don't actually execute ifconfig" msgstr "" -"На самом деле не выполнять команды 'ifconfig/netsh'.<br />Вместо этого " -"передавать параметры '-ifconfig' сценариям с использованием переменных " -"окружения." +"На самом деле не выполнять команды 'ifconfig/netsh'. Вместо этого передавать " +"параметры '-ifconfig' сценариям с использованием переменных окружения" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:236 msgid "Don't add routes automatically" msgstr "" -"Не добавлять маршруты автоматически.<br />Вместо этого передавать маршруты в " -"'-route-up' скрипт используя переменные окружения." +"Не добавлять маршруты автоматически. Вместо этого передавать маршруты в '-" +"route-up' скрипт используя переменные окружения" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:730 msgid "Don't cache --askpass or --auth-user-pass passwords" msgstr "" -"Не кэшировать пароли '-askpass' или '-auth-user-pass' в виртуальной памяти." +"Не кэшировать пароли '-askpass' или '-auth-user-pass' в виртуальной памяти" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:244 msgid "Don't drop incoming tun packets with same destination as host" msgstr "" +"Не отбрасывать входящие tun пакеты с таким же адресом назначения, как и у " +"хоста" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:386 msgid "Don't inherit global push options" msgstr "" "Не наследовать общие параметры 'Push Options' для конкретного клиента. Это " -"позволит игнорировать 'Push Options' на уровне конфиг файла." +"позволит игнорировать 'Push Options' на уровне конфиг файла" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:71 msgid "Don't log timestamps" -msgstr "Не записывать метки времени в системный журнал." +msgstr "Не записывать метки времени в системный журнал" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:240 msgid "Don't pull routes automatically" @@ -236,71 +236,71 @@ msgstr "" ">Когда используется на клиенте, эта опция эффективно 'затыкает' сервер от " "попытки добавить маршруты в таблицу маршрутизации клиента. <br />Хотя имейте " "ввиду что эта опция по прежнему позволяет серверу устанавливать свойства TCP/" -"IP для клиентского TUN/TAP интерфейса." +"IP для клиентского TUN/TAP интерфейса" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:331 msgid "Don't re-read key on restart" msgstr "" "Не перечитывайте файлы ключей при перезапуске (выполнении 'SIGUSR1' или " -"'ping-restart')." +"'ping-restart')" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:260 msgid "Don't use adaptive lzo compression" -msgstr "Не использовать адаптивное сжатие 'lzo'." +msgstr "Не использовать адаптивное сжатие 'lzo'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:220 msgid "Don't warn on ifconfig inconsistencies" msgstr "" "Не выводить предупреждение проверки согласованности параметров, если " "параметр 'ifconfig' с этой стороны соединения не совпадает с удаленной " -"стороной." +"стороной" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:87 msgid "Echo parameters to log" -msgstr "Записывать параметры эхо-ответов в системный журнал." +msgstr "Записывать параметры эхо-ответов в системный журнал" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:252 msgid "Empirically measure MTU" -msgstr "Эмпирически измерять MTU." +msgstr "Эмпирически измерять MTU" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:632 msgid "Enable OpenSSL hardware crypto engines" -msgstr "Включить поддержку аппаратного шифрования OpenSSL." +msgstr "Включить поддержку аппаратного шифрования OpenSSL" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:248 msgid "Enable Path MTU discovery" -msgstr "Включить обнаружение пути MTU (PMTUD)." +msgstr "Включить обнаружение пути MTU (PMTUD)" #: 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 "" "Включить режим шифрования с использованием Статического ключа (не TLS). " -"Использовать общий секретный файл, который был сгенерирован 'genkey'." +"Использовать общий секретный файл, который был сгенерирован 'genkey'" #: 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 "Включить TLS и выступить в роли клиента во время подтверждения TLS." +msgstr "Включить TLS и выступить в роли клиента во время подтверждения TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:648 msgid "Enable TLS and assume server role" -msgstr "Включить в режиме сервера протокол TLS." +msgstr "Включить в режиме сервера протокол TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:164 msgid "Enable a compression algorithm" -msgstr "" +msgstr "Включить алгоритм сжатия" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:277 msgid "Enable internal datagram fragmentation" msgstr "" "Включить внутреннюю фрагментацию датаграмм, чтобы не отправлялись UDP-" -"датаграммы, размер которых превышает максимальное число байтов." +"датаграммы, размер которых превышает максимальное число байтов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:344 msgid "Enable management interface on <em>IP</em> <em>port</em>" msgstr "" -"Включить интерфейс управления, назначив ему <em>IP-адрес</em> <em>порт</em>." +"Включить интерфейс управления, назначив ему <em>IP-адрес</em> <em>порт</em>" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:104 msgid "Enabled" @@ -314,15 +314,15 @@ msgstr "" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:622 msgid "Encryption cipher for packets" -msgstr "Алгоритм шифрования для пакетов." +msgstr "Алгоритм шифрования для пакетов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:127 msgid "Execute shell cmd after routes are added" -msgstr "Выполнить shell команду после добавления маршрутов." +msgstr "Выполнить shell команду после добавления маршрутов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:131 msgid "Execute shell command on remote ip change" -msgstr "Выполнить shell команду при изменении IP-адреса удалённого хоста." +msgstr "Выполнить shell команду при изменении IP-адреса удалённого хоста" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:156 msgid "" @@ -330,7 +330,7 @@ msgid "" "untrusted" msgstr "" "Выполнять в режиме сервера '-mode server' при появлении новых клиентских " -"соединений, если к клиенту ещё нет доверия." +"соединений, если к клиенту ещё нет доверия" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:152 msgid "" @@ -338,26 +338,26 @@ msgid "" "added to OpenVPN's internal routing table" msgstr "" "Выполнять в режиме сервера '-mode server' каждый раз, когда адрес/маршрут " -"IPv4 или MAC-адрес добавлен в таблицу маршрутизации OpenVPN." +"IPv4 или MAC-адрес добавлен в таблицу маршрутизации OpenVPN" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:714 msgid "Exit on TLS negotiation failure" -msgstr "Выйти при ошибке согласования использования протокола TLS." +msgstr "Выйти при ошибке согласования использования протокола TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:726 msgid "Get PEM password from controlling tty before we daemonize" -msgstr "Получить PEM пароль от управления tty, прежде чем включить демон." +msgstr "Получить PEM пароль от управления tty, прежде чем включить демон" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:573 msgid "HMAC authentication for packets" -msgstr "Аутентификация с помощью HMAC ключа для пакетов." +msgstr "Аутентификация с помощью HMAC ключа для пакетов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:490 msgid "Handling of authentication failures" msgstr "" "Настройка реакции на ошибки проверки имени пользователя / пароля, такие как " "ответ клиента на AUTH_FAILED сообщение от сервера или провал проверки пароля " -"закрытого ключа." +"закрытого ключа" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:307 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:49 @@ -366,11 +366,11 @@ msgid "" "server mode configurations" msgstr "" "Вспомогательная команда предназначенная для упрощения выражений '-ping' и '-" -"ping-restart' в режиме настройки сервера." +"ping-restart' в режиме настройки сервера" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:551 msgid "If hostname resolve fails, retry" -msgstr "Пытаться подключиться снова при ошибке определения имени хоста." +msgstr "Пытаться подключиться снова при ошибке определения имени хоста" #: applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm:12 msgid "Instance \"%s\"" @@ -379,19 +379,19 @@ msgstr "Экземпляр \"%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 "" +msgstr "Экзмепляр с таким именем уже существует!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:335 msgid "Keep local IP address on restart" -msgstr "Не изменять локальный IP-адрес при перезапуске." +msgstr "Не изменять локальный IP-адрес при перезапуске" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:339 msgid "Keep remote IP address on restart" -msgstr "Не изменять удалённый IP-адрес при перезапуске." +msgstr "Не изменять удалённый IP-адрес при перезапуске" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:327 msgid "Keep tun/tap device open on restart" -msgstr "Сохранять виртуальное устройство tun/tap запущенным при перезагрузке." +msgstr "Сохранять виртуальное устройство tun/tap запущенным при перезагрузке" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:706 msgid "Key transition window" @@ -399,7 +399,7 @@ msgstr "Окно передачи ключей" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:103 msgid "Limit repeated log messages" -msgstr "Ограничить повторяющиеся сообщения в журнале." +msgstr "Ограничить повторяющиеся сообщения в журнале" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:666 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:89 @@ -408,7 +408,7 @@ msgstr "Локальный сертификат" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:176 msgid "Local host name or ip address" -msgstr "Имя локального хоста или IP-адрес." +msgstr "Имя локального хоста или IP-адрес" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:670 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:93 @@ -421,29 +421,29 @@ msgstr "Основной режим" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:451 msgid "Maximum number of queued TCP output packets" -msgstr "Максимальное количество исходящих TCP пакетов в очереди." +msgstr "Максимальное количество исходящих TCP пакетов в очереди" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:446 msgid "Number of allocated broadcast buffers" -msgstr "Количество выделенных широковещательных буферов." +msgstr "Количество выделенных широковещательных буферов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:359 msgid "Number of lines for log file history" -msgstr "Количество строк в файле журнала." +msgstr "Количество строк в файле журнала" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:95 msgid "OVPN configuration file upload" -msgstr "" +msgstr "Загрузка конфигурационного файла OVPN" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:734 msgid "Only accept connections from given X509 name" -msgstr "Только принимать соединения от имени данного сертификата X509." +msgstr "Принимать только соединения от имени указанного сертификата X509" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:323 msgid "Only process ping timeouts if routes exist" msgstr "" "Использовать временную задержку пинг-запросов только в случае, когда " -"существует необходимый маршрут." +"существует необходимый маршрут" #: applications/luci-app-openvpn/luasrc/controller/openvpn.lua:8 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:10 @@ -456,53 +456,53 @@ msgstr "Экземпляры OpenVPN" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:83 msgid "Optimize TUN/TAP/UDP writes" -msgstr "" -"Оптимизация записей ввода/вывода TUN/TAP/UDP (экспериментальная опция)." +msgstr "Оптимизация записей ввода/вывода TUN/TAP/UDP (экспериментальная опция)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:51 msgid "Output to syslog and do not daemonize" -msgstr "Записывать события в системный журнал и не переходить в режим демона." +msgstr "Записывать события в системный журнал и не переходить в режим демона" #: applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm:11 msgid "Overview" -msgstr "Главное меню" +msgstr "Обзор" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:674 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:77 msgid "PKCS#12 file containing keys" msgstr "" -"Задайте файл 'PKCS #12', содержащий локальный Приватный ключ, локальный " -"сертификат и root CA сертификат." +"Задайте файл 'PKCS #12', содержащий локальный приватный ключ, локальный " +"сертификат и root CA сертификат" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:136 msgid "Pass environment variables to script" -msgstr "Передавать переменные окружения скрипту." +msgstr "Передавать переменные окружения скрипту" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:644 msgid "Persist replay-protection state" msgstr "" "Сохранять состояние защиты от воспроизведения в сеансах, используя файл для " -"сохранения и перезагрузки состояния." +"сохранения и перезагрузки состояния" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:401 msgid "Persist/unpersist ifconfig-pool" -msgstr "Сохранять/не сохранять пул ifconfig." +msgstr "Сохранять/не сохранять пул ifconfig" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:311 msgid "Ping remote every n seconds over TCP/UDP port" -msgstr "Выполнять пинг-запрос каждые n секунд, используя порт TCP/UDP." +msgstr "Выполнять пинг-запрос каждые n секунд, используя порт TCP/UDP" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:28 msgid "Please edit this file directly in a terminal session." msgstr "" +"Пожалуйста отредактируйте данный файл напрямую через терминальную сессию" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:51 msgid "Please select a valid OVPN config file to upload!" -msgstr "" +msgstr "Пожалуйста выберите корректный OVPN файл для загрузки!" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:23 msgid "Please select a valid VPN template!" -msgstr "" +msgstr "Пожалуйста выберите корректный шаблон конфигурации!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:160 msgid "Policy level over usage of external programs and scripts" @@ -518,187 +518,188 @@ msgstr "Протокол" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:530 msgid "Proxy timeout in seconds" -msgstr "Время ожидания прокси в секундах." +msgstr "Время ожидания прокси в секундах" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:406 msgid "Push an ifconfig option to remote" -msgstr "Выполнить команду ifconfig на удалённом узле." +msgstr "Выполнить команду ifconfig на удалённом узле" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:381 msgid "Push options to peer" -msgstr "Параметры узла - 'Push options'." +msgstr "Параметры узла - 'Push options'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:349 msgid "Query management channel for private key" -msgstr "Канал управления запросами для Приватного ключа." +msgstr "Канал управления запросами для Приватного ключа" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:505 msgid "Randomly choose remote server" -msgstr "Случайный выбор удалённого сервера." +msgstr "Случайный выбор удалённого сервера" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:431 msgid "Refuse connection if no custom client config" msgstr "" -"Разорвать соединение, если пользовательский config файл клиента отсутствует." +"Разорвать соединение, если пользовательский config файл клиента отсутствует" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:91 msgid "Remap SIGUSR1 signals" msgstr "" "Управление внутренними или внешними сигналами генерируемыми 'SIGUSR1' и " -"переназначаемыми 'SIGHUP'." +"переназначаемыми 'SIGHUP'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:500 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:65 msgid "Remote host name or ip address" -msgstr "Имя удалённого хоста или IP-адрес." +msgstr "Имя удалённого хоста или IP-адрес" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:315 msgid "Remote ping timeout" -msgstr "Время ожидания удаленного пинг-запроса." +msgstr "Время ожидания удаленного пинг-запроса" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:690 msgid "Renegotiate data chan. key after bytes" msgstr "" "Повторное согласование ключа канала данных после отправки или получения n " -"байт (по умолчанию отключено)." +"байт (по умолчанию отключено)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:694 msgid "Renegotiate data chan. key after packets" msgstr "" "Повторное согласование ключа канала данных после отправки и получения n " -"пакетов (по умолчанию отключено)." +"пакетов (по умолчанию отключено)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:698 msgid "Renegotiate data chan. key after seconds" msgstr "" -"Повторное согласование ключа канала данных через n секунд (по " -"умолчанию=3600)." +"Повторное согласование ключа канала данных через n секунд (по умолчанию 3600)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:636 msgid "Replay protection sliding window size" msgstr "" "Использовать защиту от повтора - скользящее окно размером 'n' с интервалом " -"времени 't' секунд." +"времени 't' секунд" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:738 msgid "Require explicit designation on certificate" -msgstr "Требовать явного указания в сертификате." +msgstr "Требовать явного указания в сертификате" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:742 msgid "Require explicit key usage on certificate" -msgstr "Требовать явного использования ключа в сертификате." +msgstr "Требовать явного использования ключа в сертификате" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:319 msgid "Restart after remote ping timeout" -msgstr "Перезапуск после ожидания удаленного пинг-запроса." +msgstr "Перезапуск после таймаута ожидания удаленного пинг-запроса" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:766 msgid "Restrict the allowed ciphers to be negotiated" -msgstr "" +msgstr "Ограничить разрешенные шифры согласования" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:686 msgid "Retransmit timeout on TLS control channel" msgstr "" "Пакет ретранслирует тайм-аут на канале управления протокола TLS, если нет " -"подтверждения от удаленного узла в течение секунд (по умолчанию=2)." +"подтверждения от удаленного узла в течение секунд (по умолчанию 2)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:525 msgid "Retry indefinitely on HTTP proxy errors" msgstr "" -"Постоянно пытаться заново подключиться при ошибке HTTP прокси.<br />Если " -"возникает ошибка прокси-сервера HTTP, имитировать сброс 'SIGUSR1'." +"Постоянно пытаться заново подключиться при ошибке HTTP прокси. Если " +"возникает ошибка прокси-сервера HTTP, имитировать сброс 'SIGUSR1'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:546 msgid "Retry indefinitely on Socks proxy errors" msgstr "" "Постоянно пытаться заново подключиться при ошибке Socks прокси. Если " -"возникает ошибка прокси-сервера HTTP, имитировать сброс 'SIGUSR1'." +"возникает ошибка прокси-сервера HTTP, имитировать сброс 'SIGUSR1'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:411 msgid "Route subnet to client" -msgstr "Перенаправить подсеть клиенту." +msgstr "Маршрутизировать подсеть клиенту" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:59 msgid "Run as an inetd or xinetd server" -msgstr "Запуск от имени сервера 'inetd' или 'xinetd'." +msgstr "Запуск от имени сервера 'inetd' или 'xinetd'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:144 msgid "Run script cmd on client connection" -msgstr "Запустить скрипт командной строки при подключении клиента." +msgstr "Запустить скрипт командной строки при подключении клиента" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:148 msgid "Run script cmd on client disconnection" -msgstr "Запустить скрипт командной строки при отключении клиента." +msgstr "Запустить скрипт командной строки при отключении клиента" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:123 msgid "Run up/down scripts for all restarts" -msgstr "Запускать 'up/down' скрипты во время всех перезапусков." +msgstr "Запускать 'up/down' скрипты во время всех перезапусков" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:37 msgid "Save" -msgstr "" +msgstr "Сохранить" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:61 msgid "" "Section to add an optional 'auth-user-pass' file with your credentials (%s)" msgstr "" +"Раздел для добавления дополнительного 'auto-user-pass' файла с вашими " +"учётными данными (%s)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:40 msgid "Section to modify the OVPN config file (%s)" -msgstr "" +msgstr "Раздел для изменения конфигурационного OVPN файла (%s)" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:85 msgid "Select template ..." -msgstr "" +msgstr "Выберите шаблон..." #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:495 msgid "Send notification to peer on disconnect" -msgstr "Отправить уведомление на узел при отключении." +msgstr "Отправить уведомление на узел при отключении" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:35 msgid "Set GID to group" -msgstr "Задайте GID группы." +msgstr "Задайте GID группы" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:265 msgid "Set TCP/UDP MTU" -msgstr "Задайте MTU для TCP/UDP." +msgstr "Задайте MTU для TCP/UDP" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:31 msgid "Set UID to user" -msgstr "Задайте UID пользователя." +msgstr "Задайте UID пользователя" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:396 msgid "Set aside a pool of subnets" -msgstr "Выделить пул подсетей." +msgstr "Выделить пул подсетей" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:535 msgid "Set extended HTTP proxy options" -msgstr "Задайте расширенные параметры HTTP прокси." +msgstr "Задайте расширенные параметры HTTP прокси" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:19 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:13 msgid "Set output verbosity" -msgstr "Задайте детализацию ведения журнала." +msgstr "Задайте детализацию ведения журнала" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:441 msgid "Set size of real and virtual address hash tables" msgstr "" "Задайте размер реального адреса хэш-таблицы 'r' и виртуального адреса хэш-" -"таблицы 'v'. По умолчанию для обеих таблиц установлено значение 256." +"таблицы 'v'. По умолчанию для обеих таблиц установлено значение 256" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:291 msgid "Set the TCP/UDP receive buffer size" -msgstr "Задайте размер буфера приёма TCP/UDP." +msgstr "Задайте размер буфера приёма TCP/UDP" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:287 msgid "Set the TCP/UDP send buffer size" -msgstr "Задайте размер буфера передачи TCP/UDP." +msgstr "Задайте размер буфера передачи TCP/UDP" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:295 msgid "Set tun/tap TX queue length" msgstr "" "Задайте длину очереди передачи интерфейса tun/tap. В настоящее время по " -"умолчанию 100." +"умолчанию 100" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:212 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:29 @@ -707,62 +708,62 @@ msgstr "" "Задайте параметры адаптеру tun/tap. l это IP-адрес локальной конечной точки " "VPN. Для устройств TUN rn является IP-адресом удаленной конечной точки VPN. " "Для устройств TAP rn-это маска подсети сегмента виртуального Ethernet, к " -"которому создается или подключается." +"которому создается или подключается" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:269 msgid "Set tun/tap device MTU" -msgstr "Задайте MTU для виртуального устройства tun/tap." +msgstr "Задайте MTU для виртуального устройства tun/tap" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:273 msgid "Set tun/tap device overhead" msgstr "" -"Задайте возможное превышение размера MTU для виртуального устройства tun/tap." +"Задайте возможное превышение размера MTU для виртуального устройства tun/tap" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:282 msgid "Set upper bound on TCP MSS" -msgstr "Задайте верхнюю границу для TCP MSS." +msgstr "Задайте верхнюю границу для TCP MSS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:299 msgid "Shaping for peer bandwidth" -msgstr "Формирование полосы пропускания узлов." +msgstr "Формирование полосы пропускания узлов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:107 msgid "Shell cmd to execute after tun device open" -msgstr "Выполнить shell команду после старта виртуального устройства tun." +msgstr "Выполнить shell команду после старта виртуального устройства tun" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:115 msgid "Shell cmd to run after tun device close" -msgstr "Выполнить shell команду после закрытия виртуального устройства tun." +msgstr "Выполнить shell команду после закрытия виртуального устройства tun" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:140 msgid "Shell command to verify X509 name" -msgstr "Команда shell для проверки имени сертификата X509." +msgstr "Команда shell для проверки имени сертификата X509" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:640 msgid "Silence the output of replay warnings" msgstr "" "Заглушить вывод предупреждений о повторах, которые являются обычным ложным " -"сигналом в Wi-Fi сетях." +"сигналом в Wi-Fi сетях" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:627 msgid "Size of cipher key" -msgstr "Размер ключа алгоритма шифрования." +msgstr "Размер ключа алгоритма шифрования" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:228 msgid "Specify a default gateway for routes" -msgstr "Назначить шлюз по умолчанию для маршрутов." +msgstr "Назначить шлюз по умолчанию для маршрутов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:561 msgid "Specify whether the client is required to supply a valid certificate" -msgstr "" +msgstr "Требуется ли от клиента предоставление действительного сертификата" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:354 msgid "Start OpenVPN in a hibernating state" -msgstr "Запустить OpenVPN в спящем режиме." +msgstr "Запустить OpenVPN в спящем режиме" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:117 msgid "Start/Stop" -msgstr "Старт / Стоп" +msgstr "Старт/Стоп" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:106 msgid "Started" @@ -770,7 +771,7 @@ msgstr "Запущено" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:99 msgid "Status file format version" -msgstr "Версия формата файла состояния." +msgstr "Версия формата файла состояния" #: applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm:15 msgid "Switch to advanced configuration" @@ -783,69 +784,71 @@ msgstr "Перейти к основным настройкам" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:180 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:21 msgid "TCP/UDP port # for both local and remote" -msgstr "Номер локального и удалённого TCP/UDP порта." +msgstr "Номер локального и удалённого TCP/UDP порта" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:184 msgid "TCP/UDP port # for local (default=1194)" -msgstr "Номер локального TCP/UDP порта (1194 по умолчанию)." +msgstr "Номер локального TCP/UDP порта (1194 по умолчанию)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:188 msgid "TCP/UDP port # for remote (default=1194)" -msgstr "Номер удалённого TCP/UDP порта (1194 по умолчанию)." +msgstr "Номер удалённого TCP/UDP порта (1194 по умолчанию)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:682 msgid "TLS cipher" -msgstr "Алгоритм шифрования TLS." +msgstr "Алгоритм шифрования TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:55 msgid "TOS passthrough (applies to IPv4 only)" -msgstr "TOS пересылки (применяется только к IPv4)." +msgstr "TOS пересылки (применяется только к IPv4)" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:78 msgid "Template based configuration" -msgstr "" +msgstr "Конфигурация на основе шаблонов" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:436 msgid "Temporary directory for client-connect return file" -msgstr "Временная папка для файла возврата '-client-connect'." +msgstr "Временная папка для файла возврата '-client-connect'" #: 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 msgid "The 'Name' field must not be empty!" -msgstr "" +msgstr "Поле 'Имя' не должно быть пустым!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:18 msgid "" "The OVPN config file (%s) could not be found, please check your " "configuration." -msgstr "" +msgstr "OPVN файл (%s) не найден, проверьте вашу конфигурацию." #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:754 msgid "The highest supported TLS version" -msgstr "Самая высокая поддерживаемая версия протокола TLS." +msgstr "Самая высокая поддерживаемая версия протокола TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:758 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:73 msgid "The key direction for 'tls-auth' and 'secret' options" -msgstr "Указать ключ для параметров 'tls-auth' и 'secret'." +msgstr "Указать ключ для параметров 'tls-auth' и 'secret'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:750 msgid "The lowest supported TLS version" -msgstr "Самая низкая поддерживаемая версия протокола TLS." +msgstr "Самая низкая поддерживаемая версия протокола TLS" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:27 msgid "" "The size of the OVPN config file (%s) is too large for online editing in " "LuCI (≥ 100 KB)." msgstr "" +"Размер OPVN файла (%s) слишком большой для онлайн редактирования в LuCI (&ge " +"100 Кб)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:762 msgid "This completely disables cipher negotiation" -msgstr "" +msgstr "Отключение механизма согласования шифров" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:702 msgid "Timeframe for key exchange" -msgstr "Временные рамки для обмена ключами." +msgstr "Временные рамки для обмена ключами" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:204 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:25 @@ -854,16 +857,16 @@ msgstr "Тип используемого устройства." #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:104 msgid "Upload" -msgstr "" +msgstr "Загрузить" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:104 msgid "Upload ovpn file" -msgstr "" +msgstr "Загрузка OVPN файла" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:256 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:45 msgid "Use fast LZO compression" -msgstr "Использовать быстрое сжатие 'lzo'." +msgstr "Использовать быстрое сжатие 'lzo'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:510 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:53 @@ -872,23 +875,23 @@ msgstr "Использовать протокол" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:208 msgid "Use tun/tap device node" -msgstr "Использование виртуального устройства tun/tap узлом." +msgstr "Использование виртуального устройства tun/tap узлом" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:471 msgid "Use username as common name" -msgstr "Использовать имя пользователя в качестве общего имени." +msgstr "Использовать имя пользователя в качестве общего имени" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:63 msgid "Write log to file" -msgstr "Записывать события в файл." +msgstr "Записывать события в файл" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:75 msgid "Write process ID to file" -msgstr "Записать ID процесса в файл." +msgstr "Записать ID процесса в файл" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:95 msgid "Write status to file every n seconds" -msgstr "Записывать состояние в файл каждые n секунд." +msgstr "Записывать состояние в файл каждые n секунд" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:112 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:114 @@ -897,15 +900,12 @@ msgstr "нет" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:200 msgid "tun/tap device" -msgstr "Виртуальное устройство tun/tap." +msgstr "Виртуальное устройство tun/tap" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:303 msgid "tun/tap inactivity timeout" -msgstr "промежуток времени простоя tun/tap." +msgstr "Промежуток времени простоя tun/tap" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua:111 msgid "yes (%i)" msgstr "да (%i)" - -#~ msgid "Invalid" -#~ msgstr "Неверно" diff --git a/applications/luci-app-openvpn/po/zh-cn/openvpn.po b/applications/luci-app-openvpn/po/zh-cn/openvpn.po index 3736027f1a..40b920dc9b 100644 --- a/applications/luci-app-openvpn/po/zh-cn/openvpn.po +++ b/applications/luci-app-openvpn/po/zh-cn/openvpn.po @@ -1,12 +1,12 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017. +# Yangfl <mmyangfl@gmail.com>, 2017, 2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-05-19 19:35+0200\n" -"PO-Revision-Date: 2017-10-29 14:37+0800\n" +"PO-Revision-Date: 2019-01-15 11:20+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: zh_CN\n" @@ -27,7 +27,7 @@ msgstr "“net30”,“p2p”,或“subnet”" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:480 msgid "Accept options pushed from server" -msgstr "接受从服务器发送过来的选项" +msgstr "接受从服务器推送的选项" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:92 msgid "Add" @@ -39,7 +39,7 @@ msgstr "建立连接后添加路由" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:92 msgid "Add template based configuration" -msgstr "" +msgstr "添加基于模板的配置" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:718 msgid "Additional authentication over TLS" @@ -199,7 +199,7 @@ msgstr "不缓存 --askpass 或 --auth-user-pass passwords" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:244 msgid "Don't drop incoming tun packets with same destination as host" -msgstr "" +msgstr "不丢弃目的地址与本机相同的 tun 报文" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:386 msgid "Don't inherit global push options" @@ -257,7 +257,7 @@ msgstr "允许 TLS 并伪装为服务器" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:164 msgid "Enable a compression algorithm" -msgstr "" +msgstr "启用压缩算法" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:277 msgid "Enable internal datagram fragmentation" @@ -334,7 +334,7 @@ msgstr "实例 \"%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 "" +msgstr "具有该名称的实例已存在!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:335 msgid "Keep local IP address on restart" @@ -388,7 +388,7 @@ msgstr "历史日志文件的行数" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:95 msgid "OVPN configuration file upload" -msgstr "" +msgstr "OVPN 配置文件上传" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:734 msgid "Only accept connections from given X509 name" @@ -442,15 +442,15 @@ msgstr "每 n 秒 ping 一次远程 TCP/UDP 端口" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:28 msgid "Please edit this file directly in a terminal session." -msgstr "" +msgstr "请直接在终端会话中编辑此文件。" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:51 msgid "Please select a valid OVPN config file to upload!" -msgstr "" +msgstr "请选择要上传的有效 OVPN 配置文件!" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:23 msgid "Please select a valid VPN template!" -msgstr "" +msgstr "请选择有效的 VPN 模板!" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:160 msgid "Policy level over usage of external programs and scripts" @@ -531,7 +531,7 @@ msgstr "远程 ping 超时后重启" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:766 msgid "Restrict the allowed ciphers to be negotiated" -msgstr "" +msgstr "限定协商时允许的密码算法" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:686 msgid "Retransmit timeout on TLS control channel" @@ -551,7 +551,7 @@ msgstr "路由子网至客户端" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:59 msgid "Run as an inetd or xinetd server" -msgstr "以 inetd 或 xinetd 服务器的方式运行" +msgstr "以 inetd 或 xinetd 服务方式运行" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:144 msgid "Run script cmd on client connection" @@ -567,20 +567,20 @@ msgstr "每次重启都执行启动/关闭脚本" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:37 msgid "Save" -msgstr "" +msgstr "保存" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:61 msgid "" "Section to add an optional 'auth-user-pass' file with your credentials (%s)" -msgstr "" +msgstr "在此区域编辑“auth-user-pass”文件的内容(%s)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:40 msgid "Section to modify the OVPN config file (%s)" -msgstr "" +msgstr "在此区域修改 OVPN 配置文件(%s)" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:85 msgid "Select template ..." -msgstr "" +msgstr "选择模板…" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:495 msgid "Send notification to peer on disconnect" @@ -674,7 +674,7 @@ msgstr "指定路由默认网关" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:561 msgid "Specify whether the client is required to supply a valid certificate" -msgstr "" +msgstr "指定是否要求客户端提供有效证书" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:354 msgid "Start OpenVPN in a hibernating state" @@ -723,7 +723,7 @@ msgstr "TOS 穿透(仅限 IPv4)" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:78 msgid "Template based configuration" -msgstr "" +msgstr "基于模板的配置" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:436 msgid "Temporary directory for client-connect return file" @@ -732,13 +732,13 @@ msgstr "客户端连接返回文件的临时目录" #: 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 msgid "The 'Name' field must not be empty!" -msgstr "" +msgstr "“名称”字段不能为空" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-file.lua:18 msgid "" "The OVPN config file (%s) could not be found, please check your " "configuration." -msgstr "" +msgstr "无法找到 OVPN 配置文件(%s),请检查您的配置。" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:754 msgid "The highest supported TLS version" @@ -757,11 +757,11 @@ msgstr "最低支持的 TLS 版本" msgid "" "The size of the OVPN config file (%s) is too large for online editing in " "LuCI (≥ 100 KB)." -msgstr "" +msgstr "OVPN 配置文件(%s)过大,无法使用 LuCI 在线编辑(≥ 100 KB)。" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:762 msgid "This completely disables cipher negotiation" -msgstr "" +msgstr "这将完全禁用密码协商" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:702 msgid "Timeframe for key exchange" @@ -774,11 +774,11 @@ msgstr "使用设备类型" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:104 msgid "Upload" -msgstr "" +msgstr "上传" #: applications/luci-app-openvpn/luasrc/view/openvpn/cbi-select-input-add.htm:104 msgid "Upload ovpn file" -msgstr "" +msgstr "上传 opvn 文件" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:256 #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:45 diff --git a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js index 274a982929..4a36b0a3c3 100644 --- a/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js +++ b/applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js @@ -135,7 +135,7 @@ function display(pattern) if (currentDisplayMode === 'updates') { var avail = packages.available.pkgs[name]; - if (!avail || avail.version === pkg.version) + if (!avail || compareVersion(avail.version, pkg.version) <= 0) continue; ver = '%s » %s'.format( @@ -291,6 +291,9 @@ function compareVersion(val, ref) val = val || ''; ref = ref || ''; + if (val === ref) + return 0; + while (vi < val.length || ri < ref.length) { var first_diff = 0; diff --git a/applications/luci-app-opkg/po/ca/opkg.po b/applications/luci-app-opkg/po/ca/opkg.po index af9336da09..58aead344f 100644 --- a/applications/luci-app-opkg/po/ca/opkg.po +++ b/applications/luci-app-opkg/po/ca/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Accions" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Cancel·la" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuració" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descripció" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Descarrega i instal·la el paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Error" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtre" msgid "Free space" msgstr "Espai lliure" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instal·la" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instal·la" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Instal·la" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Vés a la pàgina de configuració" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Descarrega i instal·la el paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Cerca paquet" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "No connectat" @@ -164,9 +164,9 @@ msgstr "No connectat" msgid "OK" msgstr "D'acord" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuració d'OPKG" @@ -184,36 +184,36 @@ msgstr "Nom del paquet" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Treu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Restableix" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Desa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configuració de dispositiu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Mida" @@ -244,21 +244,21 @@ msgstr "Mida (.ipk)" msgid "Software" msgstr "Programari" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -283,34 +283,34 @@ msgstr "Actualitza les llistes" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versió" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Esperant que s'acabi l'ordre..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "desconegut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/cs/opkg.po b/applications/luci-app-opkg/po/cs/opkg.po index e7853956f2..3ef394371a 100644 --- a/applications/luci-app-opkg/po/cs/opkg.po +++ b/applications/luci-app-opkg/po/cs/opkg.po @@ -15,7 +15,7 @@ msgstr "" msgid "Actions" msgstr "Akce" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -23,7 +23,7 @@ msgstr "" msgid "Available" msgstr "Dostupné" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,10 +31,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Storno" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Nastavení" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Popis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -73,12 +73,12 @@ msgstr "" msgid "Download and install package" msgstr "Stáhnout a nainstalovat balíček" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Chyba" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -90,19 +90,19 @@ msgstr "Filtr" msgid "Free space" msgstr "Volné místo" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instalovat" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instalovat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -113,21 +113,21 @@ msgstr "" msgid "Install…" msgstr "Instalovat" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Přejít na související konfigurační stránku" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Stáhnout a nainstalovat balíček" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -148,12 +148,12 @@ msgstr "Vyhledat balíček" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Dostupná celkem" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Nepřipojeno" @@ -162,9 +162,9 @@ msgstr "Nepřipojeno" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Konfigurace balíčků OPKG" @@ -182,36 +182,36 @@ msgstr "Název balíčku" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Odstranit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -219,17 +219,17 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Uložit" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Nastavení zařízení" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Velikost" @@ -242,21 +242,21 @@ msgstr "" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,34 +281,34 @@ msgstr "Aktualizovat seznamy" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Verze" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Čekání na dokončení příkazu..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "neznámý" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/de/opkg.po b/applications/luci-app-opkg/po/de/opkg.po index 437a7f8246..875dbd12a7 100644 --- a/applications/luci-app-opkg/po/de/opkg.po +++ b/applications/luci-app-opkg/po/de/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Aktionen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "Unbenutzte Abhängigkeiten automatisch entfernen" @@ -25,7 +25,7 @@ msgstr "Unbenutzte Abhängigkeiten automatisch entfernen" msgid "Available" msgstr "Verfügbar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -39,10 +39,10 @@ msgstr "" "Konfigurationsdateien kann zwar geändert werden, wird aber überlicherweise " "bei Systemupdates zurückgesetzt." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Abbrechen" @@ -54,21 +54,21 @@ msgstr "Zurücksetzen" msgid "Configure opkg…" msgstr "Konfiguriere opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "Abhängigkeiten" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Beschreibung" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "Details für Paket <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "Schließen" @@ -80,11 +80,11 @@ msgstr "Einträge %d-%d von %d" msgid "Download and install package" msgstr "Paket herunterladen und installieren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "Fehler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "Paketmanager ausführen" @@ -96,18 +96,18 @@ msgstr "Filter" msgid "Free space" msgstr "Freier Platz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Installieren" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "Installiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -120,19 +120,19 @@ msgstr "" msgid "Install…" msgstr "Installieren…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "Lade Konfigurationsdaten…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "Lade Paketinformationen…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "Paket manuell installieren" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "Aktualisierung benötigt" @@ -152,11 +152,11 @@ msgstr "Keine Pakete" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Keine auf \"<strong>%h</strong>\" zutreffenden Pakete." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "Nicht verfügbar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "Nicht installiert" @@ -164,9 +164,9 @@ msgstr "Nicht installiert" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "OPKG-Konfiguration" @@ -182,26 +182,26 @@ msgstr "Paketname oder URL…" msgid "Previous page" msgstr "Vorige Seite" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "Soll wirklich versucht werden, <em>%h</em> zu installieren?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Entfernen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "Paket <em>%h</em> entfernen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" "Benötige etwa %.1024mB Speicherplatz für die Installation von %d Pakete(n)." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" @@ -209,13 +209,13 @@ msgstr "" "Benötige Version %h %h,\n" "aber %h installiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Benötigtes abhängiges Paket <em>%h</em> ist in keinem Repository verfügbar." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "Benötigt Update auf Version %h %h" @@ -223,16 +223,16 @@ msgstr "Benötigt Update auf Version %h %h" msgid "Reset" msgstr "Zurücksetzen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Speichern" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "Speichere Konfigurationsdaten…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Größe" @@ -245,12 +245,12 @@ msgstr "Größe (.ipk)" msgid "Software" msgstr "Paketverwaltung" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" "Das <em>opkg %h</em> Kommando wurde mit Fehlercode <code>%d</code> beendet." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -258,12 +258,12 @@ msgstr "" "Die installierte Version von Paket <em>%h</em> ist nicht kompatibel, " "benötige Version %s während %s installiert ist." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Das Paket <em>%h</em> ist in keinem konfiguriertem Repository verfügbar." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -288,33 +288,33 @@ msgstr "Aktualisierungen" msgid "Upgrade…" msgstr "Aktualisieren…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "Version inkompatibel" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Warte auf das <em>opkg %h</em> Kommando…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "unbekannt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "ca. %.1024mB komprimiert" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "ca. %.1024mB installiert" diff --git a/applications/luci-app-opkg/po/el/opkg.po b/applications/luci-app-opkg/po/el/opkg.po index b1cc0e0689..e560415197 100644 --- a/applications/luci-app-opkg/po/el/opkg.po +++ b/applications/luci-app-opkg/po/el/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Ενέργειες" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Διαθέσιμο" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Ακύρωση" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Παραμετροποίηση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Περιγραφή" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Κατέβασμα και εγκατάσταση πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Σφάλμα" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Φίλτρο" msgid "Free space" msgstr "Ελεύθερος χώρος" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Εγκατάσταση" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Εγκατάσταση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Μετάβαση στη σχετική σελίδα ρυθμίσεων" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Κατέβασμα και εγκατάσταση πακέτου" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Εύρεση πακέτου" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Διαθέσιμο Συνολικά" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Εγκατάσταση" @@ -164,9 +164,9 @@ msgstr "Εγκατάσταση" msgid "OK" msgstr "Εντάξει" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Παραμετροποίηση OPKG" @@ -184,36 +184,36 @@ msgstr "Όνομα πακέτου" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Αφαίρεση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Αρχικοποίηση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Αποθήκευση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Παραμετροποίηση Συσκευής" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Μέγεθος" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Λογισμικό" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,33 +281,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Έκδοση" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/en/opkg.po b/applications/luci-app-opkg/po/en/opkg.po index 3c1757a086..34da1d1326 100644 --- a/applications/luci-app-opkg/po/en/opkg.po +++ b/applications/luci-app-opkg/po/en/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Actions" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Available" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Cancel" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Description" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Download and install package" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Error" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filter" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Install" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Install" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Install" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Go to relevant configuration page" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Download and install package" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Find package" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "(%s available)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Install" @@ -164,9 +164,9 @@ msgstr "Install" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-Configuration" @@ -184,36 +184,36 @@ msgstr "Package name" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Remove" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Save" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Device Configuration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Size" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,33 +281,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/es/opkg.po b/applications/luci-app-opkg/po/es/opkg.po index 4b99da0298..2167345f7f 100644 --- a/applications/luci-app-opkg/po/es/opkg.po +++ b/applications/luci-app-opkg/po/es/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Acciones" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Cancelar" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuración" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descripción" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Descargar e instalar paquete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Error" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtro" msgid "Free space" msgstr "Espacio libre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instalar" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Ir a la página principal de configuración" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Descargar e instalar paquete" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Buscar paquete" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "No conectado" @@ -164,9 +164,9 @@ msgstr "No conectado" msgid "OK" msgstr "Aceptar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuración de OPKG" @@ -184,36 +184,36 @@ msgstr "Nombre del paquete" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Desinstalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Reiniciar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Guardar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configuración del dispositivo" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Tamaño" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Instalación de programas" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -283,34 +283,34 @@ msgstr "Actualizar listas" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versión" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Esperando a que termine el comando..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "desconocido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/fr/opkg.po b/applications/luci-app-opkg/po/fr/opkg.po index 601bd53021..f760599dd3 100644 --- a/applications/luci-app-opkg/po/fr/opkg.po +++ b/applications/luci-app-opkg/po/fr/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Actions" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Annuler" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Description" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Télécharge et installe le paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Erreur" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtrer" msgid "Free space" msgstr "Espace libre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Installer" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Aller à la page de configuration correspondante" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Télécharge et installe le paquet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Trouver un paquet" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total disponible" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Non connecté" @@ -164,9 +164,9 @@ msgstr "Non connecté" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuration OPKG" @@ -184,36 +184,36 @@ msgstr "Nom du paquet" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Désinstaller" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Remise à zéro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Sauvegarder" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configuration de l'équipement" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Taille" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Logiciels" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -283,34 +283,34 @@ msgstr "Mettre les listes à jour" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "En attente de la fin de la commande..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "inconnu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/he/opkg.po b/applications/luci-app-opkg/po/he/opkg.po index 767e44822b..9979167c05 100644 --- a/applications/luci-app-opkg/po/he/opkg.po +++ b/applications/luci-app-opkg/po/he/opkg.po @@ -15,7 +15,7 @@ msgstr "" msgid "Actions" msgstr "פעולות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -23,7 +23,7 @@ msgstr "" msgid "Available" msgstr "זמין" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,10 +31,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "בטל" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "הגדרות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "תיאור" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -73,12 +73,12 @@ msgstr "" msgid "Download and install package" msgstr "הורד והתקן חבילות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "שגיאה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -90,18 +90,18 @@ msgstr "" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -111,21 +111,21 @@ msgstr "" msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "הגדרות נפוצות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "הורד והתקן חבילות" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -146,12 +146,12 @@ msgstr "חבילות זמינות" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "סה\"כ פנוי" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "לא מחובר" @@ -160,9 +160,9 @@ msgstr "לא מחובר" msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "הגדרות" @@ -180,36 +180,36 @@ msgstr "שם החבילה" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -217,17 +217,17 @@ msgstr "" msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "הגדרות מכשיר" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "" @@ -240,21 +240,21 @@ msgstr "" msgid "Software" msgstr "תוכנה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -277,33 +277,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "גרסה" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/hu/opkg.po b/applications/luci-app-opkg/po/hu/opkg.po index 44d4ab69a3..ea87247c20 100644 --- a/applications/luci-app-opkg/po/hu/opkg.po +++ b/applications/luci-app-opkg/po/hu/opkg.po @@ -15,7 +15,7 @@ msgstr "" msgid "Actions" msgstr "Műveletek" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -23,7 +23,7 @@ msgstr "" msgid "Available" msgstr "Elérhető" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,10 +31,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Mégsem" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Beállítás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Leírás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -73,12 +73,12 @@ msgstr "" msgid "Download and install package" msgstr "Csomag letöltése és telepítése" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Hiba" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -90,19 +90,19 @@ msgstr "Szűrő" msgid "Free space" msgstr "Szabad hely" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Telepítés" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Telepítés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -113,21 +113,21 @@ msgstr "" msgid "Install…" msgstr "Telepítés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Ugrás a tárgyhoz tartozó beállításokhoz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Csomag letöltése és telepítése" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -148,12 +148,12 @@ msgstr "Csomag keresése" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Összes elérhető" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Nincs kapcsolódva" @@ -162,9 +162,9 @@ msgstr "Nincs kapcsolódva" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-Beállítások" @@ -182,36 +182,36 @@ msgstr "Csomagnév" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Eltávolítás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -219,17 +219,17 @@ msgstr "" msgid "Reset" msgstr "Visszaállítás" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Mentés" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Eszköz beállítások" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Méret" @@ -242,21 +242,21 @@ msgstr "" msgid "Software" msgstr "Szoftver" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,34 +281,34 @@ msgstr "Listák frissítése" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Verzió" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Várakozás a parancs befejezésére..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "ismeretlen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/it/opkg.po b/applications/luci-app-opkg/po/it/opkg.po index b2a6edbdd4..7304e44813 100644 --- a/applications/luci-app-opkg/po/it/opkg.po +++ b/applications/luci-app-opkg/po/it/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Azioni" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponibile" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Annulla" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configurazione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descrizione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Scarica e installa pacchetto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Errore" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtro" msgid "Free space" msgstr "Spazio libero" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Installa" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Installa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Installa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Vai alla pagina di configurazione relativa" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Scarica e installa pacchetto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Cerca pacchetto" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Totale" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Non connesso" @@ -164,9 +164,9 @@ msgstr "Non connesso" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configurazione di OPKG" @@ -184,36 +184,36 @@ msgstr "Nome pacchetto" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Rimuovi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Salva" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configurazione del dispositivo" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Dimensione" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -283,34 +283,34 @@ msgstr "Aggiorna liste" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versione" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "In attesa del comando da completare..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "sconosciuto" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ja/opkg.po b/applications/luci-app-opkg/po/ja/opkg.po index 53f568a5c6..d7b262103e 100644 --- a/applications/luci-app-opkg/po/ja/opkg.po +++ b/applications/luci-app-opkg/po/ja/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "操作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "使用されない依存パッケージを自動的に削除" @@ -25,7 +25,7 @@ msgstr "使用されない依存パッケージを自動的に削除" msgid "Available" msgstr "利用可能" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -37,10 +37,10 @@ msgstr "" "ポジトリの登録に使用します。これら以外のファイル内の設定を変更しても、通常は " "<em>sysupgrade</em> 時に保持されません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "キャンセル" @@ -52,21 +52,21 @@ msgstr "クリア" msgid "Configure opkg…" msgstr "opkg を設定…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "依存関係" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "詳細" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "<em>%h</em> パッケージの詳細" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "閉じる" @@ -78,11 +78,11 @@ msgstr "%d - %d を表示中(全 %d)" msgid "Download and install package" msgstr "パッケージのダウンロードとインストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "エラー" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "パッケージ マネージャーを実行中" @@ -94,18 +94,18 @@ msgstr "フィルタ" msgid "Free space" msgstr "ディスクの空き容量" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "インストール" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "インストール済" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -117,19 +117,19 @@ msgstr "" msgid "Install…" msgstr "インストール…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "設定データをロード中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "パッケージ情報をロード中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "パッケージの手動インストール" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "要アップグレード" @@ -149,11 +149,11 @@ msgstr "パッケージがありません" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "\"<strong>%h</strong>\" に一致するパッケージはありません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "利用不可" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "未インストール" @@ -161,9 +161,9 @@ msgstr "未インストール" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "OPKG 設定" @@ -179,25 +179,25 @@ msgstr "パッケージ名または URL…" msgid "Previous page" msgstr "前のページ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "<em>%h</em> のインストールを試行してもよろしいですか?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "削除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "<em>%h</em> パッケージを削除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "インストールには約 %.1024mB の領域が必要です(上記 %d パッケージ)。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" @@ -205,13 +205,13 @@ msgstr "" "必要バージョン: %h %h,\n" "インストール済: %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "必須の依存パッケージ <em>%h</em> は、設定済みのリポジトリでは利用できません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "%h %h への更新が必要です" @@ -219,16 +219,16 @@ msgstr "%h %h への更新が必要です" msgid "Reset" msgstr "リセット" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "保存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "設定データを保存中…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "サイズ" @@ -241,11 +241,11 @@ msgstr "サイズ (.ipk)" msgid "Software" msgstr "ソフトウェア" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "<em>opkg %h</em> コマンドが失敗しました。(コード <code>%d</code>)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -253,11 +253,11 @@ msgstr "" "<em>%h</em> のインストール済みバージョンは互換性がありません。 %s が、インス" "トールされている %s には必要です。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "<em>%h</em> パッケージは、設定済みのリポジトリでは利用できません。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -282,33 +282,33 @@ msgstr "更新" msgid "Upgrade…" msgstr "アップグレード…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "バージョン" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "互換性の無いバージョン" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "<em>opkg %h</em コマンドを実行中です…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "不明" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "~ %.1024mB(圧縮後)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "~ %.1024mB(インストール後)" diff --git a/applications/luci-app-opkg/po/ko/opkg.po b/applications/luci-app-opkg/po/ko/opkg.po index 770726de78..ddc3c34e8f 100644 --- a/applications/luci-app-opkg/po/ko/opkg.po +++ b/applications/luci-app-opkg/po/ko/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "관리 도구" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "설정" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "설명" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,11 +75,11 @@ msgstr "" msgid "Download and install package" msgstr "패키지 다운로드 후 설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -91,19 +91,19 @@ msgstr "필터" msgid "Free space" msgstr "여유 공간" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "설치" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -114,21 +114,21 @@ msgstr "" msgid "Install…" msgstr "설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "공통 설정" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "패키지 다운로드 후 설치" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -149,12 +149,12 @@ msgstr "패키지 찾기" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "총 이용 가능한 양" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "연결되지 않음" @@ -163,9 +163,9 @@ msgstr "연결되지 않음" msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-설정" @@ -183,36 +183,36 @@ msgstr "패키지 이름" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "제거" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -220,17 +220,17 @@ msgstr "" msgid "Reset" msgstr "초기화" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "저장" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "장치 설정" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Size" @@ -243,21 +243,21 @@ msgstr "크기 (.ipk)" msgid "Software" msgstr "소프트웨어" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -280,34 +280,34 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "버전" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "실행한 명령이 끝나기를 기다리는 중입니다..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ms/opkg.po b/applications/luci-app-opkg/po/ms/opkg.po index b5fc584162..897bae25e2 100644 --- a/applications/luci-app-opkg/po/ms/opkg.po +++ b/applications/luci-app-opkg/po/ms/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Aksi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Boleh didapati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Batal" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Konfigurasi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Keterangan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Turun dan memasang pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Kesalahan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Penapis" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Memasang" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Memasang" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Menuju ke halaman konfigurasi yang relevan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Turun dan memasang pakej" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Cari pakej" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "(%s sedia)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Memasang" @@ -164,9 +164,9 @@ msgstr "Memasang" msgid "OK" msgstr "Baik" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-Konfigurasi" @@ -184,36 +184,36 @@ msgstr "Nama pakej" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Menghapuskan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,16 +221,16 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Simpan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Saiz" @@ -243,21 +243,21 @@ msgstr "" msgid "Software" msgstr "Perisian" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -280,33 +280,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/no/opkg.po b/applications/luci-app-opkg/po/no/opkg.po index 30facb2e3c..8c53b4f120 100644 --- a/applications/luci-app-opkg/po/no/opkg.po +++ b/applications/luci-app-opkg/po/no/opkg.po @@ -12,7 +12,7 @@ msgstr "" msgid "Actions" msgstr "Handlinger" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -20,7 +20,7 @@ msgstr "" msgid "Available" msgstr "Tilgjengelig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -28,10 +28,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Avbryt" @@ -44,21 +44,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Konfigurasjon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Beskrivelse" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -70,12 +70,12 @@ msgstr "" msgid "Download and install package" msgstr "Last ned og installer pakken" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Feil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -87,19 +87,19 @@ msgstr "Filter" msgid "Free space" msgstr "Ledig plass" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Installer" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -110,21 +110,21 @@ msgstr "" msgid "Install…" msgstr "Installer" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Gå til relevant konfigurasjonen side" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Last ned og installer pakken" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -145,12 +145,12 @@ msgstr "Finn pakke" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Totalt Tilgjengelig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Ikke tilkoblet" @@ -159,9 +159,9 @@ msgstr "Ikke tilkoblet" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "<abbr title=\"Open PacKaGe Management\">OPKG</abbr>-Konfigurasjon" @@ -179,36 +179,36 @@ msgstr "Pakkenavn" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Avinstaller" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -216,17 +216,17 @@ msgstr "" msgid "Reset" msgstr "Nullstill" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Lagre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Enhet Konfigurasjon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Størrelse" @@ -239,21 +239,21 @@ msgstr "" msgid "Software" msgstr "Programvare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -278,34 +278,34 @@ msgstr "Oppdater lister" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versjon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Venter på at kommando fullføres..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "ukjent" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/pl/opkg.po b/applications/luci-app-opkg/po/pl/opkg.po index 4b0f729a5c..033a4bd35d 100644 --- a/applications/luci-app-opkg/po/pl/opkg.po +++ b/applications/luci-app-opkg/po/pl/opkg.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: LuCI\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2010-04-20 09:40+0200\n" -"PO-Revision-Date: 2018-09-02 15:25+0200\n" +"PO-Revision-Date: 2019-01-05 19:35+0200\n" "Last-Translator: Rixerx <krystian.kozak20@gmail.com>\n" "Language-Team: Polish\n" "Language: pl\n" @@ -18,72 +18,77 @@ msgstr "" msgid "Actions" msgstr "Akcje" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Automatycznie usuwaj nieużywane zależności" #: applications/luci-app-opkg/luasrc/view/opkg.htm:115 msgid "Available" msgstr "Dostępne" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +"Poniżej znajduje się lista różnych plików konfiguracyjnych używanych przez " +"<em>opkg</em>. Użyj <em>opkg.conf</em> dla ustawień globalnych i " +"<em>customfeeds.conf</em> dla niestandardowych wpisów w repozytorium. " +"Konfiguracja w innych plikach może zostać zmieniona, ale zwykle nie jest " +"zachowywana przez <em>sysupgrade</em>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Anuluj" #: applications/luci-app-opkg/luasrc/view/opkg.htm:97 msgid "Clear" -msgstr "" +msgstr "Wyczyść" #: applications/luci-app-opkg/luasrc/view/opkg.htm:110 #, fuzzy msgid "Configure opkg…" -msgstr "Konfiguracja" +msgstr "Konfiguruj opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" -msgstr "" +msgstr "Zależności" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Opis" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Szczegóły pakietu <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" -msgstr "" +msgstr "Odrzuć" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:227 msgid "Displaying %d-%d of %d" -msgstr "" +msgstr "Wyświetlanie %d-%d z %d" #: applications/luci-app-opkg/luasrc/view/opkg.htm:101 msgid "Download and install package" msgstr "Pobierz i zainstaluj pakiet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Błąd" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" -msgstr "" +msgstr "Wykonywanie menedżera pakietów" #: applications/luci-app-opkg/luasrc/view/opkg.htm:95 msgid "Filter" @@ -93,51 +98,53 @@ msgstr "Filtr" msgid "Free space" msgstr "Wolna przestrzeń" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instaluj" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" -msgstr "Instaluj" +msgstr "Zainstalowane" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Instalowanie pakietów z niezaufanych źródeł jest potencjalnym zagrożeniem " +"bezpieczeństwa! Czy na pewno chcesz zainstalować pakiet <em>%h</em>?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:167 #, fuzzy msgid "Install…" -msgstr "Instaluj" +msgstr "Instaluj…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" -msgstr "Zatwierdzanie konfiguracji…" +msgstr "Ładowanie danych konfiguracyjnych…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" -msgstr "" +msgstr "Ładowanie informacji o pakiecie…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" -msgstr "Pobierz i zainstaluj pakiet" +msgstr "Zainstaluj ręcznie pakiet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 #, fuzzy msgid "Needs upgrade" msgstr "Wymuś uaktualnienie" #: applications/luci-app-opkg/luasrc/view/opkg.htm:124 msgid "Next page" -msgstr "" +msgstr "Następna strona" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:240 msgid "No information available" @@ -146,29 +153,29 @@ msgstr "Brak dostępnych informacji" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:228 #, fuzzy msgid "No packages" -msgstr "Znajdź pakiet" +msgstr "Brak pakietów" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:244 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Brak pasujących pakietów \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" -msgstr "Całkowicie dostępna" +msgstr "Niedostępne" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" -msgstr "Nie podłączony" +msgstr "Nie zainstalowany" #: applications/luci-app-opkg/luasrc/view/opkg.htm:103 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Konfiguracja OPKG" @@ -180,60 +187,63 @@ msgstr "Nazwa pakietu" #: applications/luci-app-opkg/luasrc/view/opkg.htm:102 #, fuzzy msgid "Package name or URL…" -msgstr "Nazwa pakietu" +msgstr "Nazwa pakietu lub URL…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:122 msgid "Previous page" -msgstr "" +msgstr "Poprzednia strona" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Czy na pewno chcesz zainstalować pakiet <em>%h</em>?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Usuń" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Usuń pakiet <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." -msgstr "" +msgstr "Wymaga ok. %.1024mB rozmiaru pakietu %d do zainstalowania." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" +"Wymaga wersji %h %h,\n" +"zainstalowanej %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" +"Wymagana zależność <em>%h</em> nie jest dostępna w żadnym repozytorium." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" -msgstr "" +msgstr "Wymaga aktualizacji do %h %h" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:245 msgid "Reset" msgstr "Resetuj" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Zapisz" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Zatwierdzanie konfiguracji…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Rozmiar" @@ -246,73 +256,80 @@ msgstr "Rozmiar (.ipk)" msgid "Software" msgstr "Oprogramowanie" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" +"Polecenie <em>opkg %h</em> zakończyło się niepomyślnie z kodem <code>%d</" +"code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Zainstalowana wersja pakietu <em>%h</em> nie jest zgodna, wymaga %s podczas " +"gdy %s jest już zainstalowana." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" +"Pakiet <em>%h</em> nie jest dostępny w żadnym skonfigurowanym repozytorium." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Wersja pakietu w repozytorium <em>%h</em> nie jest zgodna, wymaga %s ale " +"tylko %s jest dostępna." #: applications/luci-app-opkg/luasrc/view/opkg.htm:96 msgid "Type to filter…" -msgstr "" +msgstr "Wpisz, by przefiltrować…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:108 #, fuzzy msgid "Update lists…" -msgstr "Aktualizuj listy" +msgstr "Aktualizuj listy…" #: applications/luci-app-opkg/luasrc/view/opkg.htm:117 #, fuzzy msgid "Updates" -msgstr "Aktualizuj listy" +msgstr "Aktualizacje" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:149 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:173 msgid "Upgrade…" -msgstr "" +msgstr "Zaktualizuj…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Wersja" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" -msgstr "" +msgstr "Wersja niekompatybilna" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "Trwa wykonanie polecenia..." +msgstr "Oczekiwanie na wykonanie polecenia <em>opkg %h</em>…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "nieznane" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" -msgstr "" +msgstr "~%.1024mB skompresowany" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" -msgstr "" +msgstr "~%.1024mB zainstalowany" diff --git a/applications/luci-app-opkg/po/pt-br/opkg.po b/applications/luci-app-opkg/po/pt-br/opkg.po index 20aed2b512..4e35a5edac 100644 --- a/applications/luci-app-opkg/po/pt-br/opkg.po +++ b/applications/luci-app-opkg/po/pt-br/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Ações" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Cancelar" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuração" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descrição" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "Dispensar" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Baixe e instale o pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Erro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtro" msgid "Free space" msgstr "Espaço livre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instalar" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Iniciando a aplicação da configuração..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Baixe e instale o pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 #, fuzzy msgid "Needs upgrade" msgstr "Forçar a atualização" @@ -151,12 +151,12 @@ msgstr "Procurar pacote" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Não conectado" @@ -165,9 +165,9 @@ msgstr "Não conectado" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuração-OPKG" @@ -185,36 +185,36 @@ msgstr "Nome do Pacote" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Remover" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -222,17 +222,17 @@ msgstr "" msgid "Reset" msgstr "Limpar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Salvar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Iniciando a aplicação da configuração..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Tamanho" @@ -245,21 +245,21 @@ msgstr "Tamanho (.ipk)" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -284,34 +284,34 @@ msgstr "Atualizar listas" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versão" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Esperando o término do comando..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "desconhecido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/pt/opkg.po b/applications/luci-app-opkg/po/pt/opkg.po index 2bf26ec1a7..b3bc2272ac 100644 --- a/applications/luci-app-opkg/po/pt/opkg.po +++ b/applications/luci-app-opkg/po/pt/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "Acções" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Available" msgstr "Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -33,10 +33,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Cancelar" @@ -49,21 +49,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configuração" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descrição" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -75,12 +75,12 @@ msgstr "" msgid "Download and install package" msgstr "Descarregar e instalar pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Erro" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -92,19 +92,19 @@ msgstr "Filtro" msgid "Free space" msgstr "Espaço livre" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instalar" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -115,21 +115,21 @@ msgstr "" msgid "Install…" msgstr "Instalar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Ir para a página respectiva de configuração" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Descarregar e instalar pacote" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -150,12 +150,12 @@ msgstr "Procurar pacote" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total Disponível" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Não ligado" @@ -164,9 +164,9 @@ msgstr "Não ligado" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuração-OPKG" @@ -184,36 +184,36 @@ msgstr "Nome do pacote" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Remover" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -221,17 +221,17 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Salvar" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configuração do Dispositivo" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Tamanho" @@ -244,21 +244,21 @@ msgstr "" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -283,34 +283,34 @@ msgstr "Actualizar listas" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versão" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "A aguardar que o comando termine..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "desconhecido" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ro/opkg.po b/applications/luci-app-opkg/po/ro/opkg.po index 403525371f..8f2f75f0d9 100644 --- a/applications/luci-app-opkg/po/ro/opkg.po +++ b/applications/luci-app-opkg/po/ro/opkg.po @@ -16,7 +16,7 @@ msgstr "" msgid "Actions" msgstr "Actiune" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -24,7 +24,7 @@ msgstr "" msgid "Available" msgstr "Disponibil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -32,10 +32,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Anuleaza" @@ -48,21 +48,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Configurare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Descriere" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -74,12 +74,12 @@ msgstr "" msgid "Download and install package" msgstr "Descarca si instaleaza pachetul" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Eroare" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -91,19 +91,19 @@ msgstr "Filtreaza" msgid "Free space" msgstr "Spatiu liber" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Instalati" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Instalati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -114,21 +114,21 @@ msgstr "" msgid "Install…" msgstr "Instalati" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Configurarea obisnuita" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Descarca si instaleaza pachetul" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -149,12 +149,12 @@ msgstr "Gaseste pachet" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Total disponibil" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Nu este conectat" @@ -163,9 +163,9 @@ msgstr "Nu este conectat" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Configuratia-OPKG" @@ -183,36 +183,36 @@ msgstr "Numele pachetului" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Elimina" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -220,17 +220,17 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Salveaza" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Configurarea dispozitivului" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Marime" @@ -243,21 +243,21 @@ msgstr "" msgid "Software" msgstr "Software" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -280,33 +280,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versiune" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "necunoscut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/ru/opkg.po b/applications/luci-app-opkg/po/ru/opkg.po index 21bd0fa8d4..b8ba3d6914 100644 --- a/applications/luci-app-opkg/po/ru/opkg.po +++ b/applications/luci-app-opkg/po/ru/opkg.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: LuCI: base\n" "POT-Creation-Date: 2010-05-09 01:01+0300\n" -"PO-Revision-Date: 2018-10-25 19:04+0300\n" +"PO-Revision-Date: 2019-01-15 13:35+0300\n" "Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Language-Team: http://cyber-place.ru\n" "Language: ru\n" @@ -19,72 +19,75 @@ msgstr "" msgid "Actions" msgstr "Действия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" -msgstr "" +msgstr "Автоматически удалять неиспользуемые зависимости" #: applications/luci-app-opkg/luasrc/view/opkg.htm:115 msgid "Available" msgstr "Доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" - -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +"Ниже приведен список различных файлов конфигурации, используемых <em>opkg</" +"em>. Используйте файл <em>opkg.conf</em> для глобальных настроек и " +"<em>customfeeds.conf</em> для пользовательских настроек репозиториев. " +"Конфигурация в других файлах может производтся, но такие настройки могут не " +"сохраняться утилитой <em>sysupgrade</em>." + +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Отменить" #: applications/luci-app-opkg/luasrc/view/opkg.htm:97 msgid "Clear" -msgstr "" +msgstr "Очистить" #: applications/luci-app-opkg/luasrc/view/opkg.htm:110 -#, fuzzy msgid "Configure opkg…" -msgstr "Настройка config файла" +msgstr "Настройки менеджера пакетов..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" -msgstr "" +msgstr "Зависимости" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Описание" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" -msgstr "" +msgstr "Подробная информация о пакете <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "Отклонить" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:227 msgid "Displaying %d-%d of %d" -msgstr "" +msgstr "Показано %d-%d из %d" #: applications/luci-app-opkg/luasrc/view/opkg.htm:101 msgid "Download and install package" msgstr "Загрузить и установить пакет" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" -msgstr "Ошибка" +msgstr "Ошибки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" -msgstr "" +msgstr "Запуск менеджера пакетов" #: applications/luci-app-opkg/luasrc/view/opkg.htm:95 msgid "Filter" @@ -94,83 +97,76 @@ msgstr "Фильтр" msgid "Free space" msgstr "Свободное место" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Установить" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 -#, fuzzy msgid "Installed" -msgstr "Установить" +msgstr "Установлено" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" msgstr "" +"Установка пакетов из недоверенных источников может привести к угрозе " +"безопасности! Вы действительно хотите установить <em>%h</em>?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:167 -#, fuzzy msgid "Install…" -msgstr "Установить" +msgstr "Установить..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" -msgstr "Применение конфигурации..." +msgstr "Загрузка данных конфигурации..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" -msgstr "" +msgstr "Загрузка информации о пакете..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" -msgstr "Загрузить и установить пакет" +msgstr "Ручная установка пакета" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" -msgstr "Принудительная прошивка" +msgstr "Требуется обновление" #: applications/luci-app-opkg/luasrc/view/opkg.htm:124 msgid "Next page" -msgstr "" +msgstr "Следующая страница" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:240 msgid "No information available" msgstr "Нет доступной информации" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:228 -#, fuzzy msgid "No packages" -msgstr "Найти пакет" +msgstr "Нет пакетов" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:244 msgid "No packages matching \"<strong>%h</strong>\"." -msgstr "" +msgstr "Нет пакетов соответствующих запросу «<strong>%h</strong>»." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" -msgstr "Всего доступно" +msgstr "Не доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" -msgstr "Не подключено" +msgstr "Не установлено" #: applications/luci-app-opkg/luasrc/view/opkg.htm:103 msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "Настройка OPKG" @@ -179,62 +175,65 @@ msgid "Package name" msgstr "Имя пакета" #: applications/luci-app-opkg/luasrc/view/opkg.htm:102 -#, fuzzy msgid "Package name or URL…" -msgstr "Имя пакета" +msgstr "Имя пакета или URL..." #: applications/luci-app-opkg/luasrc/view/opkg.htm:122 msgid "Previous page" -msgstr "" +msgstr "Предыдущая страница" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" -msgstr "" +msgstr "Вы действительно хотите установить <em>%h</em>?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Удалить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" -msgstr "" +msgstr "Удалить пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" +"Требуется примерно %.1024mБ свободного пространства для установки %d пакетов" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" +"Требуется версия %h %h,\n" +"установлен %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" +"Требуемый в качестве зависимости пакет <em>%h</em> не доступен ни в одном из " +"сконфигурированных репозиториев." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" -msgstr "" +msgstr "Требуется обновить до %h %h" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:245 msgid "Reset" msgstr "Сбросить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Сохранить" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" -msgstr "Применение конфигурации..." +msgstr "Сохранение данных конфигурации..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Размер" @@ -247,73 +246,75 @@ msgstr "Размер (.ipk)" msgid "Software" msgstr "Программное обеспечение" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." -msgstr "" +msgstr "Команда <em>opkg %h</em> завершилась с кодом ошибки <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" +"Установленная версия пакета <em>%h</em> не совместима. Требуется установка " +"%s для установки %s" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" +"Пакет <em>%h</em> не доступен ни в одном из сконфигурированных репозиториев." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." msgstr "" +"Версия пакета <em>%h</em>, доступная в репозитории, несовместима. Требуется " +"%s, но доступна только %s." #: applications/luci-app-opkg/luasrc/view/opkg.htm:96 msgid "Type to filter…" -msgstr "" +msgstr "Введите для фильтрации..." #: applications/luci-app-opkg/luasrc/view/opkg.htm:108 -#, fuzzy msgid "Update lists…" -msgstr "Обновить списки" +msgstr "Обновить списки..." #: applications/luci-app-opkg/luasrc/view/opkg.htm:117 -#, fuzzy msgid "Updates" -msgstr "Обновить списки" +msgstr "Обновления" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:149 #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:173 msgid "Upgrade…" -msgstr "" +msgstr "Обновление..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Версия" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" -msgstr "" +msgstr "Версия несовместима" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 -#, fuzzy +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" -msgstr "Ожидание завершения выполнения команды..." +msgstr "Ожидание завершения выполнения команды <em>opkg %h</em>..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "неизвестный" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" -msgstr "" +msgstr "~%.1024mБ сжато" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" -msgstr "" +msgstr "~%.1024mБ установлено" diff --git a/applications/luci-app-opkg/po/sk/opkg.po b/applications/luci-app-opkg/po/sk/opkg.po index d83d7ef593..8db8ffdd55 100644 --- a/applications/luci-app-opkg/po/sk/opkg.po +++ b/applications/luci-app-opkg/po/sk/opkg.po @@ -13,7 +13,7 @@ msgstr "" msgid "Actions" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -21,7 +21,7 @@ msgstr "" msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -29,10 +29,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "" @@ -44,21 +44,21 @@ msgstr "" msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -70,11 +70,11 @@ msgstr "" msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -86,18 +86,18 @@ msgstr "" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -107,19 +107,19 @@ msgstr "" msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -139,11 +139,11 @@ msgstr "" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "" @@ -151,9 +151,9 @@ msgstr "" msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "" @@ -169,36 +169,36 @@ msgstr "" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -206,16 +206,16 @@ msgstr "" msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "" @@ -228,21 +228,21 @@ msgstr "" msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -265,33 +265,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/sv/opkg.po b/applications/luci-app-opkg/po/sv/opkg.po index bff2449406..8c34ebc961 100644 --- a/applications/luci-app-opkg/po/sv/opkg.po +++ b/applications/luci-app-opkg/po/sv/opkg.po @@ -15,7 +15,7 @@ msgstr "" msgid "Actions" msgstr "Åtgärder" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -23,7 +23,7 @@ msgstr "" msgid "Available" msgstr "Tillgänglig" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,10 +31,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Avbryt" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Konfiguration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Beskrivning" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -73,12 +73,12 @@ msgstr "" msgid "Download and install package" msgstr "Ladda ner och installera paket" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Fel" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -90,19 +90,19 @@ msgstr "Filtrera" msgid "Free space" msgstr "Fritt utrymme" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Installera" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Installera" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -113,21 +113,21 @@ msgstr "" msgid "Install…" msgstr "Installera" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Gå till relevant konfigurationssida" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Ladda ner och installera paket" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -148,12 +148,12 @@ msgstr "Hitta paket" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Totalt tillgängligt" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Inte ansluten" @@ -162,9 +162,9 @@ msgstr "Inte ansluten" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Konfiguration" @@ -182,36 +182,36 @@ msgstr "Paketnamn" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Ta bort" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -219,17 +219,17 @@ msgstr "" msgid "Reset" msgstr "Återställ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Spara" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Enhetskonfiguration" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Storlek" @@ -242,21 +242,21 @@ msgstr "Storlek (.ipk)" msgid "Software" msgstr "Mjukvara" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,34 +281,34 @@ msgstr "Uppdatera listor" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Version" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Väntar på att kommandot ska avsluta..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "okänd" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/templates/opkg.pot b/applications/luci-app-opkg/po/templates/opkg.pot index 155e306fdd..37f5154b5d 100644 --- a/applications/luci-app-opkg/po/templates/opkg.pot +++ b/applications/luci-app-opkg/po/templates/opkg.pot @@ -5,7 +5,7 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "Actions" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -13,7 +13,7 @@ msgstr "" msgid "Available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -21,10 +21,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "" @@ -36,21 +36,21 @@ msgstr "" msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -62,11 +62,11 @@ msgstr "" msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -78,18 +78,18 @@ msgstr "" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -99,19 +99,19 @@ msgstr "" msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -131,11 +131,11 @@ msgstr "" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "" @@ -143,9 +143,9 @@ msgstr "" msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "" @@ -161,36 +161,36 @@ msgstr "" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -198,16 +198,16 @@ msgstr "" msgid "Reset" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "" @@ -220,21 +220,21 @@ msgstr "" msgid "Software" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -257,33 +257,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/tr/opkg.po b/applications/luci-app-opkg/po/tr/opkg.po index 8ad039447b..ce0142e832 100644 --- a/applications/luci-app-opkg/po/tr/opkg.po +++ b/applications/luci-app-opkg/po/tr/opkg.po @@ -16,7 +16,7 @@ msgstr "" msgid "Actions" msgstr "Eylemler" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -24,7 +24,7 @@ msgstr "" msgid "Available" msgstr "Kullanılabilir" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -32,10 +32,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Vazgeç" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Açıklama" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "Reddet" @@ -73,11 +73,11 @@ msgstr "" msgid "Download and install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -89,18 +89,18 @@ msgstr "" msgid "Free space" msgstr "Boş alan" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -110,20 +110,20 @@ msgstr "" msgid "Install…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Yapılandırmaya dön" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -144,12 +144,12 @@ msgstr "Kullanılabilir Paketler" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "Toplam Mevcut" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "" @@ -157,9 +157,9 @@ msgstr "" msgid "OK" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Cihaz Yapılandırması" @@ -176,36 +176,36 @@ msgstr "" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -213,17 +213,17 @@ msgstr "" msgid "Reset" msgstr "Sıfırla" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Kaydet" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "Cihaz Yapılandırması" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Boyut" @@ -236,21 +236,21 @@ msgstr "Boyut (.ipk)" msgid "Software" msgstr "Yazılım" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -273,33 +273,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Versiyon" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "bilinmeyen" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/uk/opkg.po b/applications/luci-app-opkg/po/uk/opkg.po index 63f5457fb4..1345838a8f 100644 --- a/applications/luci-app-opkg/po/uk/opkg.po +++ b/applications/luci-app-opkg/po/uk/opkg.po @@ -13,7 +13,7 @@ msgstr "" msgid "Actions" msgstr "Дії" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "Автоматичне видалення невикористовуваних залежностей" @@ -21,7 +21,7 @@ msgstr "Автоматичне видалення невикористовува msgid "Available" msgstr "Доступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -34,10 +34,10 @@ msgstr "" "інших файлах може бути змінено, але вона зазвичай не зберігається при " "<em>оновленні системи</em>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Скасувати" @@ -49,21 +49,21 @@ msgstr "Очистити" msgid "Configure opkg…" msgstr "Налаштування opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "Залежності" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Опис" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "Подробиці про пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "Відхилити" @@ -75,11 +75,11 @@ msgstr "Відображається %d-%d із %d" msgid "Download and install package" msgstr "Завантажити та інсталювати пакети" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "Помилки" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "Виконання менеджера пакетів" @@ -91,18 +91,18 @@ msgstr "Фільтр" msgid "Free space" msgstr "Вільне місце" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Інсталювати" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "Інстальовано" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -114,19 +114,19 @@ msgstr "" msgid "Install…" msgstr "Інсталювати…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "Завантаження даних конфігурації…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "Завантаження інформації про пакети…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "Інсталяція пакета вручну" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "Потребує оновлення" @@ -146,11 +146,11 @@ msgstr "Немає пакетів" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "Немає пакетів, що відповідають \"<strong>%h</strong>\"." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "Недоступно" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "Не інстальовано" @@ -158,9 +158,9 @@ msgstr "Не інстальовано" msgid "OK" msgstr "OK" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "Конфігурація OPKG" @@ -176,25 +176,25 @@ msgstr "Назва пакета чи URL-адреса…" msgid "Previous page" msgstr "Попередня сторінка" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "Дійсно спробувати інсталювати <em>%h</em>?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Видалити" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "Видалити пакет <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "Потрібно приблизно %.1024mB для інсталяції %d пакетів." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" @@ -202,14 +202,14 @@ msgstr "" "Потрібна версія %h %h,\n" "інстальовано %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" "Необхідний за залежністю пакет <em>%h</em> не доступний ні в одному " "репозиторії." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "Потрібно оновити до %h %h" @@ -217,16 +217,16 @@ msgstr "Потрібно оновити до %h %h" msgid "Reset" msgstr "Скинути" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Зберегти" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "Збереження даних конфігурації…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Розмір" @@ -239,11 +239,11 @@ msgstr "Розмір (.ipk)" msgid "Software" msgstr "Програмне забезпечення" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "Помилка виконання команди <em>opkg %h</em> з кодом <code>%d</code>." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." @@ -251,12 +251,12 @@ msgstr "" "Інстальована версія пакета <em>%h</em> несумісна, потрібно %s, а " "інстальовано %s." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" "Пакет <em>%h</em> не доступний ні в одному сконфігурованому репозиторії." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,33 +281,33 @@ msgstr "Оновлення" msgid "Upgrade…" msgstr "Оновлення…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Версія" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "Несумісна версія" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "Очікуємо завершення виконання команди <em>opkg %h</em> …" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "невідомий" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "~%.1024mB стиснуто" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "~%.1024mB інстальовано" diff --git a/applications/luci-app-opkg/po/vi/opkg.po b/applications/luci-app-opkg/po/vi/opkg.po index 42d631a973..f98b0f146d 100644 --- a/applications/luci-app-opkg/po/vi/opkg.po +++ b/applications/luci-app-opkg/po/vi/opkg.po @@ -16,7 +16,7 @@ msgstr "" msgid "Actions" msgstr "Hành động" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -24,7 +24,7 @@ msgstr "" msgid "Available" msgstr "Sẵn có" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -32,10 +32,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "Bỏ qua" @@ -48,21 +48,21 @@ msgstr "" msgid "Configure opkg…" msgstr "Cấu hình" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "Mô tả" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -74,12 +74,12 @@ msgstr "" msgid "Download and install package" msgstr "Tải và cài đặt gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "Lỗi" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -91,19 +91,19 @@ msgstr "Lọc" msgid "Free space" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "Cài đặt " #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "Cài đặt " -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -114,21 +114,21 @@ msgstr "" msgid "Install…" msgstr "Cài đặt " -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "Đi tới trang cấu hình thích hợp" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "Tải và cài đặt gói" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -149,12 +149,12 @@ msgstr "Tìm gói" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "(%s available)" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "Cài đặt " @@ -163,9 +163,9 @@ msgstr "Cài đặt " msgid "OK" msgstr "OK " -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "Cấu hình OPKG-" @@ -183,36 +183,36 @@ msgstr "Tên gói" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "Loại bỏ" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -220,16 +220,16 @@ msgstr "" msgid "Reset" msgstr "Reset" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "Lưu" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "Dung lượng " @@ -242,21 +242,21 @@ msgstr "" msgid "Software" msgstr "Phần mềm" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -279,33 +279,33 @@ msgstr "" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "Phiên bản" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-opkg/po/zh-cn/opkg.po b/applications/luci-app-opkg/po/zh-cn/opkg.po index 2139eeb931..012da09261 100644 --- a/applications/luci-app-opkg/po/zh-cn/opkg.po +++ b/applications/luci-app-opkg/po/zh-cn/opkg.po @@ -17,7 +17,7 @@ msgstr "" msgid "Actions" msgstr "动作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "自动移除未使用的依赖" @@ -25,7 +25,7 @@ msgstr "自动移除未使用的依赖" msgid "Available" msgstr "可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -36,10 +36,10 @@ msgstr "" "置,<em>customfeeds.conf</em> 用于描述自定义仓库。其他配置文件的变更在系统升" "级时默认不被保留。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "取消" @@ -51,21 +51,21 @@ msgstr "清除" msgid "Configure opkg…" msgstr "配置 opkg…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "依赖" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "描述" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "软件包 <em>%h</em> 详情" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "解除" @@ -77,11 +77,11 @@ msgstr "正在显示 %d-%d,共 %d" msgid "Download and install package" msgstr "下载并安装软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 msgid "Errors" msgstr "错误" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "正在执行软件包管理器" @@ -93,18 +93,18 @@ msgstr "过滤器" msgid "Free space" msgstr "空闲空间" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "安装" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 msgid "Installed" msgstr "已安装" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -114,19 +114,19 @@ msgstr "从未信任的源安装软件包有潜在的安全隐患!您确定要 msgid "Install…" msgstr "安装…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 msgid "Loading configuration data…" msgstr "载入配置数据…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "载入软件包信息…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 msgid "Manually install package" msgstr "手动安装软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "需要升级" @@ -146,11 +146,11 @@ msgstr "没有软件包" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "没有匹配“<strong>%h</strong>”的软件包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 msgid "Not available" msgstr "不可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 msgid "Not installed" msgstr "未安装" @@ -158,9 +158,9 @@ msgstr "未安装" msgid "OK" msgstr "确认" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 msgid "OPKG Configuration" msgstr "OPKG 配置" @@ -176,25 +176,25 @@ msgstr "软件包名称或 URL…" msgid "Previous page" msgstr "上一页" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "真的要安装 <em>%h</em> 吗?" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "移除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "移除软件包 <em>%h</em>" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "需要大约 %.1024mB 空间来安装 %d 个软件包。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" @@ -202,12 +202,12 @@ msgstr "" "要求 %h %h 版本,\n" "已安装 %h" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "依赖的软件包 <em>%h</em> 在所有仓库都未提供。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "需要更新到 %h %h" @@ -215,16 +215,16 @@ msgstr "需要更新到 %h %h" msgid "Reset" msgstr "复位" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "保存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 msgid "Saving configuration data…" msgstr "正在保存配置数据…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "大小" @@ -237,21 +237,21 @@ msgstr "大小(.ipk)" msgid "Software" msgstr "软件包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "<em>opkg %h</em> 命令失败,代码 <code>%d</code>。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "已安装的软件包 <em>%h</em> 版本不兼容,要求 %s 而 %s 已安装。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "软件包 <em>%h</em> 在所有已配置的仓库中都不存在。" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -274,33 +274,33 @@ msgstr "更新" msgid "Upgrade…" msgstr "升级…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "版本" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "版本不兼容" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "等待命令 <em>opkg %h</em> 执行完成…" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "未知" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "~%.1024mB 已压缩" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "~%.1024mB 已安装" diff --git a/applications/luci-app-opkg/po/zh-tw/opkg.po b/applications/luci-app-opkg/po/zh-tw/opkg.po index bd9a90bc2a..320e186e81 100644 --- a/applications/luci-app-opkg/po/zh-tw/opkg.po +++ b/applications/luci-app-opkg/po/zh-tw/opkg.po @@ -15,7 +15,7 @@ msgstr "" msgid "Actions" msgstr "動作" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:710 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:713 msgid "Automatically remove unused dependencies" msgstr "" @@ -23,7 +23,7 @@ msgstr "" msgid "Available" msgstr "可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:641 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:644 msgid "" "Below is a listing of the various configuration files used by <em>opkg</em>. " "Use <em>opkg.conf</em> for global settings and <em>customfeeds.conf</em> for " @@ -31,10 +31,10 @@ msgid "" "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:582 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:627 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:656 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:716 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:585 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:630 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:659 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:719 msgid "Cancel" msgstr "取消" @@ -47,21 +47,21 @@ msgstr "" msgid "Configure opkg…" msgstr "設定" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:559 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:562 msgid "Dependencies" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:565 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:696 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:568 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:699 #: applications/luci-app-opkg/luasrc/view/opkg.htm:133 msgid "Description" msgstr "描述" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:570 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 msgid "Details for package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:762 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:765 msgid "Dismiss" msgstr "" @@ -73,12 +73,12 @@ msgstr "" msgid "Download and install package" msgstr "下載並安裝軟體包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:748 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:751 #, fuzzy msgid "Errors" msgstr "錯誤" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:736 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:739 msgid "Executing package manager" msgstr "" @@ -90,19 +90,19 @@ msgstr "過濾器" msgid "Free space" msgstr "剩餘空間" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:589 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:605 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:592 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:608 msgid "Install" msgstr "安裝" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:178 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:389 #: applications/luci-app-opkg/luasrc/view/opkg.htm:116 #, fuzzy msgid "Installed" msgstr "安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:611 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 msgid "" "Installing packages from untrusted sources is a potential security risk! " "Really attempt to install <em>%h</em>?" @@ -113,21 +113,21 @@ msgstr "" msgid "Install…" msgstr "安裝" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:636 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:639 #, fuzzy msgid "Loading configuration data…" msgstr "到相應設定頁" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:769 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:772 msgid "Loading package information…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:624 #, fuzzy msgid "Manually install package" msgstr "下載並安裝軟體包" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:374 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 msgid "Needs upgrade" msgstr "" @@ -148,12 +148,12 @@ msgstr "搜尋軟體包" msgid "No packages matching \"<strong>%h</strong>\"." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:406 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:409 #, fuzzy msgid "Not available" msgstr "全部可用" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:391 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 #, fuzzy msgid "Not installed" msgstr "尚未連線" @@ -162,9 +162,9 @@ msgstr "尚未連線" msgid "OK" msgstr "行" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:635 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:667 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:638 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:670 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:679 #, fuzzy msgid "OPKG Configuration" msgstr "OPKG-設定值" @@ -182,36 +182,36 @@ msgstr "軟體包名稱" msgid "Previous page" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:618 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:621 msgid "Really attempt to install <em>%h</em>?" msgstr "" #: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:157 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:723 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:726 msgid "Remove" msgstr "移除" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:701 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 msgid "Remove package <em>%h</em>" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:555 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:558 msgid "Require approx. %.1024mB size for %d package(s) to install." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:381 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:399 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:384 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:402 msgid "" "Require version %h %h,\n" "installed %h" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:407 msgid "" "Required dependency package <em>%h</em> is not available in any repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:372 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:375 msgid "Requires update to %h %h" msgstr "" @@ -219,17 +219,17 @@ msgstr "" msgid "Reset" msgstr "重置" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:673 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:676 msgid "Save" msgstr "保存" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:668 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:671 #, fuzzy msgid "Saving configuration data…" msgstr "設定設備" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:573 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:704 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:576 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:707 msgid "Size" msgstr "大小" @@ -242,21 +242,21 @@ msgstr "" msgid "Software" msgstr "軟體" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:753 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:756 msgid "The <em>opkg %h</em> command failed with code <code>%d</code>." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:377 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:380 msgid "" "The installed version of package <em>%h</em> is not compatible, require %s " "while %s is installed." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:614 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:617 msgid "The package <em>%h</em> is not available in any configured repository." msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:394 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:397 msgid "" "The repository version of package <em>%h</em> is not compatible, require %s " "but only %s is available." @@ -281,34 +281,34 @@ msgstr "上傳清單" msgid "Upgrade…" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:572 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:703 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:575 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:706 #: applications/luci-app-opkg/luasrc/view/opkg.htm:131 msgid "Version" msgstr "版本" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:383 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:401 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:386 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:404 msgid "Version incompatible" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:738 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:741 #, fuzzy msgid "Waiting for the <em>opkg %h</em> command to complete…" msgstr "等待完整性指令..." -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:533 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:692 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:536 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:695 #: applications/luci-app-opkg/luasrc/view/opkg.htm:89 msgid "unknown" msgstr "未知" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:531 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:690 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:534 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:693 msgid "~%.1024mB compressed" msgstr "" -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:529 -#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:688 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:532 +#: applications/luci-app-opkg/htdocs/luci-static/resources/view/opkg.js:691 msgid "~%.1024mB installed" msgstr "" diff --git a/applications/luci-app-privoxy/po/zh-cn/privoxy.po b/applications/luci-app-privoxy/po/zh-cn/privoxy.po index 1efdc70693..9cc602181a 100644 --- a/applications/luci-app-privoxy/po/zh-cn/privoxy.po +++ b/applications/luci-app-privoxy/po/zh-cn/privoxy.po @@ -1,29 +1,32 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# msgid "" msgstr "" "Project-Id-Version: luci-app-privoxy\n" "POT-Creation-Date: 2015-06-10 20:16+0100\n" -"PO-Revision-Date: 2017-01-05 18:01+0800\n" -"Last-Translator: maz-1 <ohmygod19993 at gmail dotcom>\n" -"Language-Team: \n" +"PO-Revision-Date: 2019-01-03 22:42+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 1.8.11\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Poedit-SourceCharset: UTF-8\n" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236 msgid "" "A URL to be displayed in the error page that users will see if access to an " "untrusted page is denied." -msgstr "当用户试图访问不受信任的页面时,错误页面所显示的URL。" +msgstr "当用户试图访问不受信任的页面时,错误页面所显示的 URL。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226 msgid "" "A URL to documentation about the local Privoxy setup, configuration or " "policies." -msgstr "指向 Privoxy 安装、设置和规则说明文档的 URL" +msgstr "指向 Privoxy 安装、设置和规则说明文档的 URL。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325 msgid "A directory where Privoxy can create temporary files." @@ -75,19 +78,19 @@ msgstr "" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:851 msgid "Debug GIF de-animation" -msgstr "GIF动画日志" +msgstr "调试 GIF 动画" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:833 msgid "Debug force feature" -msgstr "Force feature 日志" +msgstr "调试 Force feature" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:845 msgid "Debug redirects" -msgstr "重定向日志" +msgstr "调试重定向" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:839 msgid "Debug regular expression filters" -msgstr "正则表达式日志" +msgstr "调试正则表达式" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 msgid "Delay (in seconds) during system boot before Privoxy start" @@ -119,15 +122,15 @@ msgstr "允许转发代理认证" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 msgid "" "Enable/Disable autostart of Privoxy on system startup and interface events" -msgstr "开启/关闭 Privoxy 在系统启动或接口事件时自动启动。" +msgstr "启用/禁用 Privoxy 在系统启动或接口事件时自动启动" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 msgid "Enable/Disable filtering when Privoxy starts." -msgstr "Privoxy 启动时开启/关闭过滤。" +msgstr "Privoxy 启动时启用/禁用过滤。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 msgid "Enabled" -msgstr "已开启" +msgstr "已启用" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 msgid "" @@ -139,7 +142,7 @@ msgstr "如果没有需要认证的父级代理时,不推荐开启这个选项 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442 msgid "File '%s' not found inside Configuration Directory" -msgstr "在设置目录中未找到文件 '%S'!" +msgstr "在设置目录中未找到文件“%s”" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:915 #: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12 @@ -153,7 +156,7 @@ msgstr "文件和目录" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 msgid "For help use link at the relevant option" -msgstr "点击相应选项的连接可获取帮助。" +msgstr "点击相应选项的连接可获取帮助" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 msgid "Forwarding" @@ -163,7 +166,7 @@ msgstr "转发" msgid "" "If enabled, Privoxy hides the 'go there anyway' link. The user obviously " "should not be able to bypass any blocks." -msgstr "如果启用,Privoxy 会隐藏 'go there anyway' 链接,用户就不能绕过屏蔽。" +msgstr "如果启用,Privoxy 会隐藏“go there anyway”链接,用户就不能绕过屏蔽。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 msgid "" @@ -184,7 +187,7 @@ msgstr "不推荐新手使用。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 msgid "Location of the Privoxy User Manual." -msgstr "Privoxy 用户手册位置" +msgstr "Privoxy 用户手册位置。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 msgid "Log File Viewer" @@ -206,7 +209,7 @@ msgstr "记录配置保存动作" msgid "" "Log the destination for each request Privoxy let through. See also 'Debug " "1024'." -msgstr "记录 Privoxy 允许的所有请求。另请参考 'Debug 1024'。" +msgstr "记录 Privoxy 允许的所有请求。另请参考“Debug 1024”。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:863 msgid "" @@ -224,38 +227,38 @@ msgstr "主要规则文件" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 msgid "Mandatory Input: No Data given!" -msgstr "必需选项: 没有设置数据!" +msgstr "必需选项:没有设置数据!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296 msgid "Mandatory Input: No Directory given!" -msgstr "必需选项: 没有设置目录!" +msgstr "必需选项:没有设置目录!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279 msgid "Mandatory Input: No File given!" -msgstr "必需选项: 没有设置文件!" +msgstr "必需选项:没有设置文件!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 msgid "Mandatory Input: No Port given!" -msgstr "必需选项: 没有设置端口!" +msgstr "必需选项:没有设置端口!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381 msgid "Mandatory Input: No files given!" -msgstr "必需选项: 没有设置文件!" +msgstr "必需选项:没有设置文件!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482 msgid "Mandatory Input: No valid IPv4 address or host given!" -msgstr "必需选项: 没有设置有效的IPV4地址或者主机!" +msgstr "必需选项:没有设置有效的 IPv4 地址或者主机!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470 msgid "Mandatory Input: No valid IPv6 address given!" -msgstr "必需选项: 没有设置有效的IPV6地址!" +msgstr "必需选项:没有设置有效的 IPv6 地址!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484 msgid "Mandatory Input: No valid Port given!" -msgstr "必需选项: 没有设置有效的端口!" +msgstr "必需选项:没有设置有效的端口!" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:733 msgid "Maximum number of client connections that will be served." @@ -278,11 +281,11 @@ msgstr "未安装" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310 msgid "No trailing '/', please." -msgstr "路径结尾不要加 '/' 。" +msgstr "路径结尾不要加“/”。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:881 msgid "Non-fatal errors - *we highly recommended enabling this*" -msgstr "非致命性错误 - * 强烈建议开启 *" +msgstr "非致命性错误 - *强烈建议启用*" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:714 msgid "" @@ -326,8 +329,8 @@ msgid "" "configuration, help and logging. This section of the configuration file " "tells Privoxy where to find those other files." msgstr "" -"Privoxy 可以使用其他一些文件用于附加设置,帮助和日志。这个区域用来告诉 " -"Privoxy 从哪里找到这些文件。" +"Privoxy 可以(而且一般都会)使用其他一些文件用于附加设置,帮助和日志。这个区" +"域用来告诉 Privoxy 从哪里找到这些文件。" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 msgid "" @@ -336,7 +339,7 @@ msgid "" "access, and removing ads and other obnoxious Internet junk." msgstr "" "Privoxy 是一个无缓存的网络代理,具有高级过滤功能,能够修改网页数据和 HTTP 请" -"求头,控制访问,移除广告等。" +"求头、控制访问、移除广告等。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:908 msgid "Read / Reread log file" @@ -356,11 +359,11 @@ msgstr "显示请求头 解析" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 msgid "Software package '%s' is not installed." -msgstr "软件包 '%s' 未安装" +msgstr "软件包“%s”未安装。" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 msgid "Software package '%s' is outdated." -msgstr "软件包 '%s' 已过时" +msgstr "软件包“%s”已过时。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 #: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 @@ -381,19 +384,19 @@ msgstr "启动标语和警告。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 msgid "Syntax:" -msgstr "格式:" +msgstr "格式:" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:786 msgid "Syntax: Client header names delimited by spaces." -msgstr "格式: 由空格分隔的客户端请求头名称。" +msgstr "格式:由空格分隔的客户端请求头名称。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 msgid "Syntax: target_pattern http_parent[:port]" -msgstr "格式: target_pattern http_parent[:port]" +msgstr "格式:target_pattern http_parent[:port]" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620 msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]" -msgstr "格式: target_pattern socks_proxy[:port] http_parent[:port]" +msgstr "格式:target_pattern socks_proxy[:port] http_parent[:port]" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 @@ -431,11 +434,11 @@ msgstr "其他设置文件所在的目录。" msgid "" "The filter files contain content modification rules that use regular " "expressions." -msgstr "过滤文件包含了使用正则表达式编写的内容修改规则" +msgstr "过滤文件包含了使用正则表达式编写的内容修改规则。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 msgid "The hostname shown on the CGI pages." -msgstr "CGI页面显示的主机名。" +msgstr "CGI 页面显示的主机名。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 msgid "The log file to use. File name, relative to log directory." @@ -463,7 +466,7 @@ msgstr "信任机制是一个实验性的白名单特性,使用时应小心。 msgid "" "The value of this option only matters if the experimental trust mechanism " "has been activated." -msgstr "只有开启了信任机制时这个选项的值才有效" +msgstr "只有开启了信任机制时这个选项的值才有效。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:796 msgid "" @@ -487,7 +490,7 @@ msgid "" "Through which SOCKS proxy (and optionally to which parent HTTP proxy) " "specific requests should be routed." msgstr "" -"指定的请求应该通过哪一个 SOCKS 代理(并且通过哪一个 HTTP 父代理,可选)" +"指定的请求应该通过哪一个 SOCKS 代理(并且通过哪一个 HTTP 父代理,可选)。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 msgid "To which parent HTTP proxy specific requests should be routed." @@ -509,26 +512,26 @@ msgstr "输入值不是数字" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168 msgid "Value not between 0 and 300" -msgstr "输入值不在0和300之间" +msgstr "输入值不在 0 和 300 之间" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:774 msgid "Value not between 0 and 9" -msgstr "输入值不在0和9之间" +msgstr "输入值不在 0 和 9 之间" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545 msgid "Value not between 1 and 4096" -msgstr "输入值不在1和4096之间" +msgstr "输入值不在 1 和 4096 之间" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:675 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:698 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:722 #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:741 msgid "Value not greater 0 or empty" -msgstr "输入值为空或者不是大于零。" +msgstr "输入值为空或者不是大于零" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537 msgid "Value range 1 to 4096, no entry defaults to 4096" -msgstr "输入值为1到4096,默认为4096" +msgstr "输入值为 1 到 4096,默认为 4096" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47 @@ -542,23 +545,23 @@ msgstr "版本信息" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:646 msgid "Whether intercepted requests should be treated as valid." -msgstr "被拦截的请求是否应被当作有效的。" +msgstr "是否应把被拦截的请求当作是有效的。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 msgid "" "Whether or not Privoxy recognizes special HTTP headers to change toggle " "state." -msgstr "Privoxy 是否识别特殊的 HTTP 请求头以切换状态。" +msgstr "是否让 Privoxy 识别特殊的 HTTP 请求头以切换状态。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:758 msgid "Whether or not buffered content is compressed before delivery." -msgstr "缓冲内容在传递之前是否压缩。" +msgstr "是否在传递之前压缩缓冲内容。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:706 msgid "" "Whether or not outgoing connections that have been kept alive should be " "shared between different incoming connections." -msgstr "持久出站连接是否应在不同的入站连接之间共享。" +msgstr "是否应在不同的入站连接之间共享持久出站连接。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:683 msgid "Whether or not pipelined requests should be served." @@ -578,12 +581,12 @@ msgstr "是否启用基于网页的切换功能。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:653 msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." -msgstr "访问 Privoxy CGI 页面的请求是否可以被拦截或重定向。" +msgstr "是否可以被拦截或重定向访问 Privoxy CGI 页面的请求。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:660 msgid "" "Whether the CGI interface should stay compatible with broken HTTP clients." -msgstr "CGI 界面是否应兼容过时的HTTP客户端。" +msgstr "是否让 CGI 界面兼容过时的 HTTP 客户端。" #: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:794 msgid "Whether to run only one server thread." @@ -610,14 +613,3 @@ msgstr "或更高" #: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89 msgid "required" msgstr "需要" - -#~ msgid "Local Set-up" -#~ msgstr "本地设置" - -#~ msgid "Software update required" -#~ msgstr "需要升级软件" - -#~ msgid "" -#~ "The currently installed 'privoxy' package is not supported by LuCI " -#~ "application." -#~ msgstr "目前安装的privoxy版本不被luci支持。" diff --git a/applications/luci-app-privoxy/po/zh-tw/privoxy.po b/applications/luci-app-privoxy/po/zh-tw/privoxy.po new file mode 100644 index 0000000000..e5ec2e4156 --- /dev/null +++ b/applications/luci-app-privoxy/po/zh-tw/privoxy.po @@ -0,0 +1,615 @@ +# +# Yangfl <mmyangfl@gmail.com>, 2019. +# +msgid "" +msgstr "" +"Project-Id-Version: luci-app-privoxy\n" +"POT-Creation-Date: 2015-06-10 20:16+0100\n" +"PO-Revision-Date: 2019-01-03 22:42+0800\n" +"Last-Translator: Yangfl <mmyangfl@gmail.com>\n" +"Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"X-Generator: Gtranslator 3.30.1\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Poedit-SourceCharset: UTF-8\n" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:236 +msgid "" +"A URL to be displayed in the error page that users will see if access to an " +"untrusted page is denied." +msgstr "當用戶試圖訪問不受信任的頁面時,錯誤頁面所顯示的 URL。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:226 +msgid "" +"A URL to documentation about the local Privoxy setup, configuration or " +"policies." +msgstr "指向 Privoxy 安裝、設定和規則說明文件的 URL。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:325 +msgid "A directory where Privoxy can create temporary files." +msgstr "Privoxy 存放臨時檔案的目錄。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:84 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:87 +msgid "Access Control" +msgstr "訪問控制" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:337 +msgid "Actions that are applied to all sites and maybe overruled later on." +msgstr "作用在所有站點上的規則,可能被後面的規則覆蓋。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:308 +msgid "An alternative directory where the templates are loaded from." +msgstr "可選的目錄,放在裡面的模板會被載入。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:206 +msgid "An email address to reach the Privoxy administrator." +msgstr "用於聯絡 Privoxy 管理員的郵箱地址。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:691 +msgid "" +"Assumed server-side keep-alive timeout (in seconds) if not specified by the " +"server." +msgstr "當服務端沒有指定超時時間時假定的超時時間(單位:秒)。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:151 +msgid "Boot delay" +msgstr "啟動延時" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:869 +msgid "CGI user interface" +msgstr "CGI 使用者介面" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:857 +msgid "Common Log Format" +msgstr "通用日誌格式" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:92 +msgid "" +"Configure here the routing of HTTP requests through a chain of multiple " +"proxies. Note that parent proxies can severely decrease your privacy level. " +"Also specified here are SOCKS proxies." +msgstr "" +"在這裡設定 HTTP 請求所經過的多重代理鏈。注意:父級代理可能嚴重降低您的隱私安" +"全度。在這裡還可以設定 SOCKS 代理。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:851 +msgid "Debug GIF de-animation" +msgstr "除錯 GIF 動畫" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:833 +msgid "Debug force feature" +msgstr "除錯 Force feature" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:845 +msgid "Debug redirects" +msgstr "除錯重定向" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:839 +msgid "Debug regular expression filters" +msgstr "除錯正則表示式" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:152 +msgid "Delay (in seconds) during system boot before Privoxy start" +msgstr "Privoxy 自啟動延遲時間(單位:秒)" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:261 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:298 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:315 +msgid "Directory does not exist!" +msgstr "目錄不存在!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:557 +msgid "Disabled == Transparent Proxy Mode" +msgstr "禁用 == 透明代理模式" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:66 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:71 +msgid "Documentation" +msgstr "記錄資訊" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:154 +msgid "During delay ifup-events are not monitored !" +msgstr "在延遲期間無法檢測到 ifup 事件!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:599 +msgid "Enable proxy authentication forwarding" +msgstr "允許轉發代理認證" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:135 +msgid "" +"Enable/Disable autostart of Privoxy on system startup and interface events" +msgstr "啟用/禁用 Privoxy 在系統啟動或介面事件時自動啟動" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:555 +msgid "Enable/Disable filtering when Privoxy starts." +msgstr "Privoxy 啟動時啟用/禁用過濾。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:134 +msgid "Enabled" +msgstr "已啟用" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:602 +msgid "" +"Enabling this option is NOT recommended if there is no parent proxy that " +"requires authentication!" +msgstr "如果沒有需要認證的父級代理時,不推薦開啟這個選項!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:368 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:404 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:442 +msgid "File '%s' not found inside Configuration Directory" +msgstr "在設定目錄中未找到檔案“%s”" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:915 +#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_logview.htm:12 +msgid "File not found or empty" +msgstr "檔案不存在或為空" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:75 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:80 +msgid "Files and Directories" +msgstr "檔案和目錄" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:36 +msgid "For help use link at the relevant option" +msgstr "點選相應選項的連線可獲取幫助" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:91 +msgid "Forwarding" +msgstr "轉發" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:589 +msgid "" +"If enabled, Privoxy hides the 'go there anyway' link. The user obviously " +"should not be able to bypass any blocks." +msgstr "如果啟用,Privoxy 會隱藏“go there anyway”連結,使用者就不能繞過遮蔽。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:67 +msgid "" +"If you intend to operate Privoxy for more users than just yourself, it might " +"be a good idea to let them know how to reach you, what you block and why you " +"do that, your policies, etc." +msgstr "" +"如果除了您還有其他使用者使用 Privoxy 連線,最好讓他們知道如何聯絡您,您遮蔽什" +"麼,您為什麼這樣做,您的政策等等。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:215 +msgid "Invalid email address" +msgstr "郵箱地址無效" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:416 +msgid "It is NOT recommended for the casual user." +msgstr "不推薦新手使用。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:194 +msgid "Location of the Privoxy User Manual." +msgstr "Privoxy 使用者手冊位置。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:108 +msgid "Log File Viewer" +msgstr "日誌檢視器" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:895 +msgid "Log all data read from the network" +msgstr "記錄所有接收的網路資料" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:827 +msgid "Log all data written to the network" +msgstr "記錄所有傳送的網路資料" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:901 +msgid "Log the applying actions" +msgstr "記錄配置儲存動作" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:803 +msgid "" +"Log the destination for each request Privoxy let through. See also 'Debug " +"1024'." +msgstr "記錄 Privoxy 允許的所有請求。另請參考“Debug 1024”。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:863 +msgid "" +"Log the destination for requests Privoxy didn't let through, and the reason " +"why." +msgstr "記錄 Privoxy 拒絕的請求目標以及拒絕原因。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:104 +msgid "Logging" +msgstr "日誌" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:339 +msgid "Main actions file" +msgstr "主要規則檔案" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:461 +msgid "Mandatory Input: No Data given!" +msgstr "必需選項:沒有設定資料!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:259 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:296 +msgid "Mandatory Input: No Directory given!" +msgstr "必需選項:沒有設定目錄!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:279 +msgid "Mandatory Input: No File given!" +msgstr "必需選項:沒有設定檔案!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:479 +msgid "Mandatory Input: No Port given!" +msgstr "必需選項:沒有設定埠!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:345 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:381 +msgid "Mandatory Input: No files given!" +msgstr "必需選項:沒有設定檔案!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:482 +msgid "Mandatory Input: No valid IPv4 address or host given!" +msgstr "必需選項:沒有設定有效的 IPv4 地址或者主機!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:470 +msgid "Mandatory Input: No valid IPv6 address given!" +msgstr "必需選項:沒有設定有效的 IPv6 地址!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:472 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:484 +msgid "Mandatory Input: No valid Port given!" +msgstr "必需選項:沒有設定有效的埠!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:733 +msgid "Maximum number of client connections that will be served." +msgstr "客戶端數量上限。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:535 +msgid "Maximum size (in KB) of the buffer for content filtering." +msgstr "內容過濾的最大緩衝(單位:KB)。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:97 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:100 +msgid "Miscellaneous" +msgstr "雜項" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:51 +msgid "NOT installed" +msgstr "未安裝" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:254 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:291 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:310 +msgid "No trailing '/', please." +msgstr "路徑結尾不要加“/”。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:881 +msgid "Non-fatal errors - *we highly recommended enabling this*" +msgstr "非致命性錯誤 - *強烈建議啟用*" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:714 +msgid "" +"Number of seconds after which a socket times out if no data is received." +msgstr "Socket 連線未收到資料的超時時間。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:668 +msgid "" +"Number of seconds after which an open connection will no longer be reused." +msgstr "開放的連線不再重複使用的超時時間。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:327 +msgid "" +"Only when using 'external filters', Privoxy has to create temporary files." +msgstr "只有使用外接規則時,Privoxy 才需要建立臨時檔案。" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:81 +msgid "Please install current version !" +msgstr "請安裝當前版本!" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:913 +msgid "Please press [Read] button" +msgstr "請點選 [讀取] 按鈕" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:518 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:527 +msgid "Please read Privoxy manual for details!" +msgstr "請閱讀 Privoxy 手冊以瞭解詳情!" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:92 +msgid "Please update to the current version!" +msgstr "請升級到當前版本!" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:24 +msgid "Privoxy WEB proxy" +msgstr "Privoxy 網路代理" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:76 +msgid "" +"Privoxy can (and normally does) use a number of other files for additional " +"configuration, help and logging. This section of the configuration file " +"tells Privoxy where to find those other files." +msgstr "" +"Privoxy 可以(而且一般都會)使用其他一些檔案用於附加設定,幫助和日誌。這個區" +"域用來告訴 Privoxy 從哪裡找到這些檔案。" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:32 +msgid "" +"Privoxy is a non-caching web proxy with advanced filtering capabilities for " +"enhancing privacy, modifying web page data and HTTP headers, controlling " +"access, and removing ads and other obnoxious Internet junk." +msgstr "" +"Privoxy 是一個無快取的網路代理,具有高階過濾功能,能夠修改網頁資料和 HTTP 請" +"求頭、控制訪問、移除廣告等。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:908 +msgid "Read / Reread log file" +msgstr "讀取/重新整理日誌檔案" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:815 +msgid "Show I/O status" +msgstr "顯示 I/O 狀態" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:809 +msgid "Show each connection status" +msgstr "顯示每個連線的狀態" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:821 +msgid "Show header parsing" +msgstr "顯示請求頭 解析" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:76 +msgid "Software package '%s' is not installed." +msgstr "軟體包“%s”未安裝。" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:85 +msgid "Software package '%s' is outdated." +msgstr "軟體包“%s”已過時。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:125 +#: applications/luci-app-privoxy/luasrc/view/privoxy/detail_startstop.htm:10 +msgid "Start" +msgstr "啟動" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:115 +msgid "Start / Stop" +msgstr "啟動 / 停止" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:116 +msgid "Start/Stop Privoxy WEB Proxy" +msgstr "啟動/停止 Privoxy 網路代理" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:875 +msgid "Startup banner and warnings." +msgstr "啟動標語和警告。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:455 +msgid "Syntax:" +msgstr "格式:" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:786 +msgid "Syntax: Client header names delimited by spaces." +msgstr "格式:由空格分隔的客戶端請求頭名稱。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:612 +msgid "Syntax: target_pattern http_parent[:port]" +msgstr "格式:target_pattern http_parent[:port]" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:620 +msgid "Syntax: target_pattern socks_proxy[:port] http_parent[:port]" +msgstr "格式:target_pattern socks_proxy[:port] http_parent[:port]" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:59 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:62 +msgid "System" +msgstr "系統" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:335 +msgid "" +"The actions file(s) to use. Multiple actionsfile lines are permitted, and " +"are in fact recommended!" +msgstr "所使用的規則檔案。允許並且推薦使用多個規則檔案。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:453 +msgid "" +"The address and TCP port on which Privoxy will listen for client requests." +msgstr "Privoxy 接收客戶端請求時監聽的地址和 TCP 埠。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:766 +msgid "" +"The compression level that is passed to the zlib library when compressing " +"buffered content." +msgstr "使用 zlib 壓縮緩衝內容時的壓縮級別。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:252 +msgid "" +"The directory where all logging takes place (i.e. where the logfile is " +"located)." +msgstr "所有日誌所在的目錄。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:289 +msgid "The directory where the other configuration files are located." +msgstr "其他設定檔案所在的目錄。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:377 +msgid "" +"The filter files contain content modification rules that use regular " +"expressions." +msgstr "過濾檔案包含了使用正則表示式編寫的內容修改規則。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:183 +msgid "The hostname shown on the CGI pages." +msgstr "CGI 頁面顯示的主機名。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:274 +msgid "The log file to use. File name, relative to log directory." +msgstr "日誌檔名稱,與日誌路徑相對。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:784 +msgid "The order in which client headers are sorted before forwarding them." +msgstr "轉發資料前,客戶端請求頭的排序。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:751 +msgid "" +"The status code Privoxy returns for pages blocked with +handle-as-empty-" +"document." +msgstr "" +"當頁面因為 handle-as-empty-document 規則被阻止時返回的狀態碼(選上為 200 OK," +"不選上為 403 Forbidden)" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:413 +msgid "" +"The trust mechanism is an experimental feature for building white-lists and " +"should be used with care." +msgstr "信任機制是一個實驗性的白名單特性,使用時應小心。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:238 +msgid "" +"The value of this option only matters if the experimental trust mechanism " +"has been activated." +msgstr "只有開啟了信任機制時這個選項的值才有效。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:796 +msgid "" +"This option is only there for debugging purposes. It will drastically reduce " +"performance." +msgstr "這個選項僅用於除錯,開啟後會極大地降低效能。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:574 +msgid "" +"This option will be removed in future releases as it has been obsoleted by " +"the more general header taggers." +msgstr "這個選項在以後的版本中將被移除,因為它被 header taggers 所取代了。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:85 +msgid "" +"This tab controls the security-relevant aspects of Privoxy's configuration." +msgstr "這個標籤用於設定與安全相關的 Privoxy 選項。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:618 +msgid "" +"Through which SOCKS proxy (and optionally to which parent HTTP proxy) " +"specific requests should be routed." +msgstr "" +"指定的請求應該通過哪一個 SOCKS 代理(並且通過哪一個 HTTP 父代理,可選)。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:610 +msgid "To which parent HTTP proxy specific requests should be routed." +msgstr "請求應轉發至哪一個父級 HTTP 代理。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:341 +msgid "User customizations" +msgstr "使用者自定義" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:166 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:543 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:673 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:696 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:720 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:739 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:772 +msgid "Value is not a number" +msgstr "輸入值不是數字" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:168 +msgid "Value not between 0 and 300" +msgstr "輸入值不在 0 和 300 之間" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:774 +msgid "Value not between 0 and 9" +msgstr "輸入值不在 0 和 9 之間" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:545 +msgid "Value not between 1 and 4096" +msgstr "輸入值不在 1 和 4096 之間" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:675 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:698 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:722 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:741 +msgid "Value not greater 0 or empty" +msgstr "輸入值為空或者不是大於零" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:537 +msgid "Value range 1 to 4096, no entry defaults to 4096" +msgstr "輸入值為 1 到 4096,預設為 4096" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:45 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:47 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:50 +msgid "Version" +msgstr "版本" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:43 +msgid "Version Information" +msgstr "版本資訊" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:646 +msgid "Whether intercepted requests should be treated as valid." +msgstr "是否應把被攔截的請求當作是有效的。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:572 +msgid "" +"Whether or not Privoxy recognizes special HTTP headers to change toggle " +"state." +msgstr "是否讓 Privoxy 識別特殊的 HTTP 請求頭以切換狀態。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:758 +msgid "Whether or not buffered content is compressed before delivery." +msgstr "是否在傳遞之前壓縮緩衝內容。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:706 +msgid "" +"Whether or not outgoing connections that have been kept alive should be " +"shared between different incoming connections." +msgstr "是否應在不同的入站連線之間共享持久出站連線。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:683 +msgid "Whether or not pipelined requests should be served." +msgstr "是否處理管道化的請求。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:600 +msgid "Whether or not proxy authentication through Privoxy should work." +msgstr "是否可以通過 Privoxy 進行代理驗證。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:582 +msgid "Whether or not the web-based actions file editor may be used." +msgstr "是否使用基於網頁的規則編輯器。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:565 +msgid "Whether or not the web-based toggle feature may be used." +msgstr "是否啟用基於網頁的切換功能。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:653 +msgid "Whether requests to Privoxy's CGI pages can be blocked or redirected." +msgstr "是否可以被攔截或重定向訪問 Privoxy CGI 頁面的請求。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:660 +msgid "" +"Whether the CGI interface should stay compatible with broken HTTP clients." +msgstr "是否讓 CGI 介面相容過時的 HTTP 客戶端。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:794 +msgid "Whether to run only one server thread." +msgstr "是否只執行一個服務執行緒。" + +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:516 +#: applications/luci-app-privoxy/luasrc/model/cbi/privoxy.lua:525 +msgid "Who can access what." +msgstr "誰可以訪問什麼。" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:49 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:87 +msgid "installed" +msgstr "已安裝" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:48 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89 +msgid "or higher" +msgstr "或更高" + +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:46 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:78 +#: applications/luci-app-privoxy/luasrc/controller/privoxy.lua:89 +msgid "required" +msgstr "需要" diff --git a/applications/luci-app-radicale2/Makefile b/applications/luci-app-radicale2/Makefile new file mode 100644 index 0000000000..83a2e7125e --- /dev/null +++ b/applications/luci-app-radicale2/Makefile @@ -0,0 +1,14 @@ +include $(TOPDIR)/rules.mk + +LUCI_TITLE:=Radicale v2.x CalDAV/CardDAV Server +LUCI_DEPENDS:=+radicale2 +rpcd-mod-rad2-enc +LUCI_PKGARCH:=all + +PKG_LICENSE:=Apache-2.0 +PKG_MAINTAINER:=Daniel Dickinson <cshored@thecshore.com> + +LUA_TARGET:=source + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-radicale2/luasrc/controller/radicale2.lua b/applications/luci-app-radicale2/luasrc/controller/radicale2.lua new file mode 100644 index 0000000000..7b94552ed6 --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/controller/radicale2.lua @@ -0,0 +1,38 @@ +-- Licensed to the public under the Apache License 2.0. + +module("luci.controller.radicale2", package.seeall) + +function index() + local page + + -- no config create an empty one + if not nixio.fs.access("/etc/config/radicale2") then + nxfs.writefile("/etc/config/radicale2", "") + end + + page = entry({"admin", "services", "radicale2"}, alias("admin", "services", "radicale2", "server"), _("Radicale 2.x")) + page.leaf = false + + page = entry({"admin", "services", "radicale2", "server"}, cbi("radicale2/server"), _("Server Settings")) + page.leaf = true + page.order = 10 + + page = entry({"admin", "services", "radicale2", "auth"}, cbi("radicale2/auth"), _("Authentication / Users")) + page.leaf = true + page.order = 20 + + page = entry({"admin", "services", "radicale2", "storage"}, cbi("radicale2/storage"), _("Storage")) + page.leaf = true + page.order = 30 + + page = entry({"admin", "services", "radicale2", "logging"}, cbi("radicale2/logging"), _("Logging")) + page.leaf = true + page.order = 40 +end + +function pymodexists(module) + retfun = luci.util.execi('python3 -c \'import importlib.util as util;found_module = util.find_spec("' .. module .. '");print(found_module is not None);print("\\n")\'') + retval = retfun() == "True" + while retfun() do end + return retval +end diff --git a/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua new file mode 100644 index 0000000000..b352bb46aa --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua @@ -0,0 +1,195 @@ +-- Licensed to the public under the Apache License 2.0. + +local rad2 = luci.controller.radicale2 +local fs = require("nixio.fs") +local util = require("luci.util") + +local m = Map("radicale2", translate("Radicale 2.x"), + translate("A lightweight CalDAV/CardDAV server")) + +local s = m:section(NamedSection, "auth", "section", translate("Authentication")) +s.addremove = true +s.anonymous = false + +local at = s:option(ListValue, "type", translate("Authentication Type")) +at:value("", translate("Default (htpasswd file from users below)")) +at:value("htpasswd", translate("htpasswd file (manually populated)")) +at:value("none", translate("No authentication")) +at:value("remote_user", translate("REMOTE_USER from web server")) +at:value("http_x_remote_user", translate("X-Remote-User from web server")) +at.default = "" +at.rmempty = true + +local o = s:option(Value, "htpasswd_filename", translate("Filename"), translate("htpasswd-formatted file filename")) +o:depends("type", "htpasswd") +o.rmempty = true +o.placeholder = "/etc/radicale2/users" +o.default = "" + +local hte = s:option(ListValue, "htpasswd_encryption", translate("Encryption"), translate("Password encryption method")) +hte:depends("type", "htpasswd") +hte:depends("type", "") +hte:value("plain", translate("Plaintext")) +hte:value("sha1", translate("SHA1")) +hte:value("ssha", translate("SSHA")) +hte:value("crypt", translate("crypt")) +if rad2.pymodexists("passlib") then + hte:value("md5", translate("md5")) + if rad2.pymodexists("bcrypt") then + hte:value("bcrypt", translate("bcrypt")) + end +end +hte.default = "plain" +hte.rmempty = true + +if not rad2.pymodexists("bcrypt") then + o = s:option(DummyValue, "nobcrypt", translate("Insecure hashes"), translate("Install python3-passlib and python3-bcrypt to enable a secure hash")) +else + o = s:option(DummyValue, "nobcrypt", translate("Insecure hashes"), translate("Select bcrypt above to enable a secure hash")) + o:depends("htpasswd_encrypt","") + o:depends("htpasswd_encrypt","plain") + o:depends("htpasswd_encrypt","sha1") + o:depends("htpasswd_encrypt","ssha") + o:depends("htpasswd_encrypt","crypt") + o:depends("htpasswd_encrypt","md5") +end + +o = s:option(Value, "delay", translate("Retry Delay"), translate("Required time between a failed authentication attempt and trying again")) +o.rmempty = true +o.default = 1 +o.datatype = "uinteger" +o:depends("type", "") +o:depends("type", "htpasswd") +o:depends("type", "remote_user") +o:depends("type", "http_x_remote_user") + +s = m:section(TypedSection, "user", translate("User"), translate("Users and Passwords")) +s.addremove = true +s.anonymous = true + +o = s:option(Value, "name", translate("Username")) +o.rmempty = true +o.placeholder = "johndoe" + +if rad2.pymodexists("passlib") then + +local plainpass = s:option(Value, "plain_pass", translate("Plaintext Password")) +plainpass.placeholder = "Example password" +plainpass.password = true + +local ppconfirm = s:option(Value, "plain_pass_confirm", translate("Confirm Plaintext Password")) +ppconfirm.placeholder = "Example password" +ppconfirm.password = true + +plainpass.cfgvalue = function(self, section) + return self:formvalue(section) +end + +plainpass.write = function(self, section) + return true +end + + +ppconfirm.cfgvalue = plainpass.cfgvalue +ppconfirm.write = plainpass.write + +plainpass.validate = function(self, value, section) + if self:cfgvalue(section) ~= ppconfirm:cfgvalue(section) then + return nil, translate("Password and confirmation do not match") + end + return AbstractValue.validate(self, value, section) +end + +ppconfirm.validate = function(self, value, section) + if self:cfgvalue(section) ~= plainpass:cfgvalue(section) then + return nil, translate("Password and confirmation do not match") + end + return AbstractValue.validate(self, value, section) +end + +local pass = s:option(Value, "password", translate("Encrypted Password"), translate("If 'Plaintext Password' filled and matches 'Confirm Plaintext Password' then this field becomes of hash of that password, otherwise this field remains the existing hash (you can also put your own hash value for the type of hash listed above).")) +pass.password = true +pass.rmempty = false + +function encpass(self, section) + local plainvalue = plainpass:cfgvalue(section) + local pvc = ppconfirm:cfgvalue(section) + local encvalue, err + + if not plainvalue or not pvc or plainvalue == "" or pvc == "" or plainvalue ~= pvc then + return nil + end + local enctype = hte:formvalue("auth") + if not enctype then + enctype = hte:cfgvalue("auth") + end + if not enctype or enctype == "" or enctype == "plain" then + return plainvalue + end + + encvalue, err = util.ubus("rad2-enc", "encrypt", { type = enctype, plainpass = plainvalue }) + if not encvalue then + return nil + end + + return encvalue and encvalue.encrypted_password +end + +pass.cfgvalue = function(self, section) + if not plainpass:formvalue(section) then + return Value.cfgvalue(self, section) + else + return Value.formvalue(self, section) + end +end + +pass.formvalue = function(self, section) + if not plainpass:formvalue(section) then + return Value.formvalue(self, section) + else + return encpass(self, section) or Value.formvalue(self, section) + end +end + +else +local pass = s:option(Value, "password", translate("Encrypted Password"), translate("Generate this field using an generator for Apache htpasswd-style authentication files (for the hash format you have chosen above), or install python3-passlib to enable the ability to create the hash by entering the plaintext in a field that will appear on this page if python3-passlib is installed.")) +pass.password = true +pass.rmempty = false + +end -- python3-passlib installed + +-- TODO: Allow configuration of rights file from this page +local s = m:section(NamedSection, "section", "rights", translate("Rights"), translate("User-based ACL Settings")) +s.addremove = true +s.anonymous = false + +o = s:option(ListValue, "type", translate("Rights Type")) +o:value("", translate("Default (owner only)")) +o:value("owner_only", translate("RO: None, RW: Owner")) +o:value("authenticated", translate("RO: None, RW: Authenticated Users")) +o:value("owner_write", translate("RO: Authenticated Users, RW: Owner")) +o:value("from_file", translate("Based on settings in 'Rights File'")) +o:value("none", translate("RO: All, RW: All")) +o.default = "" +o.rmempty = true + +rights_file = s:option(FileUpload, "file", translate("Rights File")) +rights_file.rmempty = true +rights_file:depends("type", "from_file") + +o = s:option(Button, "remove_conf", + translate("Remove configuration for rights file"), + translate("This permanently deletes the rights file and configuration to use same.")) +o.inputstyle = "remove" +o:depends("type", "from_file") + +function o.write(self, section) + if cert_file:cfgvalue(section) and fs.access(o:cfgvalue(section)) then fs.unlink(rights_file:cfgvalue(section)) end + self.map:del(section, "file") + self.map:del(section, "rights_file") + luci.http.redirect(luci.dispatcher.build_url("admin", "services", "radicale2", "auth")) +end + +-- TODO: Allow configuration rights file from this page + +return m diff --git a/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua new file mode 100644 index 0000000000..779bef8591 --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua @@ -0,0 +1,40 @@ +-- Licensed to the public under the Apache License 2.0. + +local m = Map("radicale2", translate("Radicale 2.x"), + translate("A lightweight CalDAV/CardDAV server")) + +local s = m:section(NamedSection, "logging", "section", translate("Logging")) +s.addremove = true +s.anonymous = false + +local logging_file = nil + +logging_file = s:option(FileUpload, "config", translate("Logging File"), translate("Log configuration file (no file means default procd which ends up in syslog")) +logging_file.rmempty = true +logging_file.default = "" + +o = s:option(Button, "remove_conf", translate("Remove configuration for logging"), + translate("This permanently deletes configuration for logging")) +o.inputstyle = "remove" + +function o.write(self, section) + if logging_file:cfgvalue(section) and fs.access(logging_file:cfgvalue(section)) then fs.unlink(loggin_file:cfgvalue(section)) end + self.map:del(section, "config") + luci.http.redirect(luci.dispatcher.build_url("admin", "services", "radicale2", "logging")) +end + +o = s:option(Flag, "debug", translate("Debug"), translate("Send debug information to logs")) +o.rmempty = true +o.default = o.disabled + +o = s:option(Flag, "full_environment", translate("Dump Environment"), translate("Include full environment in logs")) +o.rmempty = true +o.default = o.disabled + +o = s:option(Flag, "mask_passwords", translate("Mask Passwords"), translate("Redact passwords in logs")) +o.rmempty = true +o.default = o.enabled + +-- TODO: Allow configuration logging file from this page + +return m diff --git a/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua new file mode 100644 index 0000000000..47ef868b8c --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua @@ -0,0 +1,144 @@ +-- Licensed to the public under the Apache License 2.0. + +local fs = require("nixio.fs") +local rad2 = require "luci.controller.radicale2" +local http = require("luci.http") + +local m = Map("radicale2", translate("Radicale 2.x"), + translate("A lightweight CalDAV/CardDAV server")) + +s = m:section(SimpleSection, translate("Radicale v2 Web UI")) +s.addremove = false +s.anonymous = true + +o = s:option(DummyValue, "radicale2_webui_go", translate("Go to Radicale v2 Web UI")) +o.template = "cbi/raduigo" +o.section = "cbi-radicale2_webui" + +local s = m:section(NamedSection, "server", "section", translate("Server Settings")) +s.addremove = true +s.anonymous = false + +o.section = "cbi-radicale2_web_ui" + +local lhttp = nil +local certificate_file = nil +local key_file = nil +local certificate_authority_file = nil + +s:tab("general", translate("General Settings")) +s:tab("advanced", translate("Advanced Settings")) + +lhttp = s:taboption("general", DynamicList, "host", translate("HTTP(S) Listeners (address:port)")) +lhttp.datatype = "list(ipaddrport(1))" +lhttp.placeholder = "127.0.0.1:5232" + +o = s:taboption("advanced", Value, "max_connection", translate("Max Connections"), translate("Maximum number of simultaneous connections")) +o.rmempty = true +o.placeholder = 20 +o.datatype = "uinteger" + + +o = s:taboption("advanced", Value, "max_content_length", translate("Max Content Length"), translate("Maximum size of request body (bytes)")) +o.rmempty = true +o.datatype = "uinteger" +o.placeholder = 100000000 + +o = s:taboption("advanced", Value, "timeout", translate("Timeout"), translate("Socket timeout (seconds)")) +o.rmempty = true +o.placeholder = 30 +o.datatype = "uinteger" + +sslon = s:taboption("general", Flag, "ssl", translate("SSL"), translate("Enable SSL connections")) +sslon.rmempty = true +sslon.default = o.disabled +sslon.formvalue = function(self, section) + if not rad2.pymodexists('ssl') then + return false + end + return Flag.formvalue(self, section) +end + +cert_file = s:taboption("general", FileUpload, "certificate", translate("Certificate")) +cert_file.rmempty = true +cert_file:depends("ssl", true) + +key_file = s:taboption("general", FileUpload, "key", translate("Private Key")) +key_file.rmempty = true +key_file:depends("ssl", true) + +ca_file = s:taboption("general", FileUpload, "certificate_authority", translate("Client Certificate Authority"), translate("For verifying client certificates")) +ca_file.rmempty = true +ca_file:depends("ssl", true) + +o = s:taboption("advanced", Value, "ciphers", translate("Allowed Ciphers"), translate("See python3-openssl documentation for available ciphers")) +o.rmempty = true +o:depends("ssl", true) + +o = s:taboption("advanced", Value, "protocol", translate("Use Protocol"), translate("See python3-openssl documentation for available protocols")) +o.rmempty = true +o:depends("ssl", true) +o.placeholder = "PROTOCOL_TLSv1_2" + +o = s:taboption("general", Button, "remove_conf", + translate("Remove configuration for certificate, key, and CA"), + translate("This permanently deletes the cert, key, and configuration to use same.")) +o.inputstyle = "remove" +o:depends("ssl", true) + +function o.write(self, section) + if cert_file:cfgvalue(section) and fs.access(cert_file:cfgvalue(section)) then fs.unlink(cert_file:cfgvalue(section)) end + if key_file:cfgvalue(section) and fs.access(key_file:cfgvalue(section)) then fs.unlink(key_file:cfgvalue(section)) end + if ca_file:cfgvalue(section) and fs.access(key_file:cfgvalue(section)) then fs.unlink(ca_file:cfgvalue(section)) end + self.map:del(section, "certificate") + self.map:del(section, "key") + self.map:del(section, "certificate_authority") + self.map:del(section, "protocol") + self.map:del(section, "ciphers") + luci.http.redirect(luci.dispatcher.build_url("admin", "services", "radicale2", "server")) +end + +if not rad2.pymodexists('ssl') then + o = s:taboption("general", DummyValue, "sslnotpreset", translate("SSL not available"), translate("Install package python3-openssl to support SSL connections")) +end + +o = s:taboption("advanced", Flag, "dns_lookup", translate("DNS Lookup"), translate("Lookup reverse DNS for clients for logging")) +o.rmempty = true +o.default = o.enabled + +o = s:taboption("advanced", Value, "realm", translate("Realm"), translate("HTTP(S) Basic Authentication Realm")) +o.rmempty = true +o.placeholder = "Radicale - Password Required" + +local s = m:section(NamedSection, "web", "section", translate("Web UI")) +s.addremove = true +s.anonymous = false + +o = s:option(ListValue, "type", translate("Web UI Type")) +o:value("", "Default (Built-in)") +o:value("internal", "Built-in") +o:value("none", "None") +o.default = "" +o.rmempty = true + +local s = m:section(NamedSection, "headers", "section", translate("Headers"), translate("HTTP(S) Headers")) +s.addremove = true +s.anonymous = false + +o = s:option(Value, "cors", translate("CORS"), translate("Header: X-Access-Control-Allow-Origin")) +o.rmempty = true +o.placeholder = "*" + +local s = m:section(NamedSection, "encoding", "section", translate("Document Encoding")) +s.addremove = true +s.anonymous = false + +o = s:option(Value, "request", translate("Request"), translate("Encoding for responding to requests/events")) +o.rmempty = true +o.placeholder = "utf-8" + +o = s:option(Value, "stock", translate("Storage"), translate("Encoding for storing local collections")) +o.rmempty = true +o.placeholder = "utf-8" + +return m diff --git a/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua new file mode 100644 index 0000000000..3440296edf --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua @@ -0,0 +1,50 @@ +-- Licensed to the public under the Apache License 2.0. + +local rad2 = luci.controller.radicale2 +local fs = require("nixio.fs") + +local m = Map("radicale2", translate("Radicale 2.x"), + translate("A lightweight CalDAV/CardDAV server")) + +local s = m:section(NamedSection, "storage", "section", translate("Storage")) +s.addremove = true +s.anonymous = false + +o = s:option(ListValue, "type", translate("Storage Type")) +o:value("", translate("Default (multifilesystem)")) +o:value("multifilesystem", translate("Multiple files on filesystem")) +o.default = "" +o.rmempty = true + +o = s:option(Value, "filesystem_folder", translate("Folder"), translate("Folder in which to store collections")) +o:depends("type", "") +o:depends("type", "multifilesystem") +o.rmempty = true +o.placeholder = "/srv/radicale2/data" + +o = s:option(Flag, "filesystem_locking", translate("Use File Locks"), translate("Prevent other instances or processes from modifying collections while in use")) +o:depends("type", "") +o:depends("type", "multifilesystem") +o.rmempty = true +o.default = o.enabled + +o = s:option(Value, "max_sync_token_age", translate("Max Sync Token Age"), translate("Delete sync token that are older (seconds)")) +o:depends("type", "") +o:depends("type", "multifilesystem") +o.rmempty = true +o.placeholder = 2592000 +o.datatype = "uinteger" + +o = s:option(Flag, "filesystem_close_lock_file", translate("Close Lock File"), translate("Close the lock file when no more clients are waiting")) +o:depends("type", "") +o:depends("type", "multifilesystem") +o.rmempty = true +o.default = o.disabled + +o = s:option(Value, "hook", translate("Hook"), translate("Command that is run after changes to storage")) +o:depends("type", "") +o:depends("type", "multifilesystem") +o.rmempty = true +o.placeholder = ("Example: ([ -d .git ] || git init) && git add -A && (git diff --cached --quiet || git commit -m \"Changes by \"%(user)s") + +return m diff --git a/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm new file mode 100644 index 0000000000..1bcf388bd6 --- /dev/null +++ b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm @@ -0,0 +1,25 @@ +<% +local uci = require "luci.model.uci".cursor() +local http_port = uci:get("radicale2", "server", "host") +local usessl = uci:get_bool("radicale2", "server", "ssl") +if type(http_port) == "table" then + http_port = http_port[1] +end + + if http_port then + http_port = http_port:match("(%d+)$") + end + if not http_port then + http_port = "5232" + end +%> +<script type="text/javascript"> +<% +if usessl then +%> + var protocol = 'https' +<% else %> + var protocol = 'http' +<% end %> +document.write('<a href="' + protocol + '://' + window.location.hostname + ':' + <%=http_port%> + '/"><%=luci.i18n.translate("Go to Radicale 2.x Web UI")%></a>'); +</script> diff --git a/applications/luci-app-radicale2/po/en/radicale2.po b/applications/luci-app-radicale2/po/en/radicale2.po new file mode 100644 index 0000000000..7a1bb2527d --- /dev/null +++ b/applications/luci-app-radicale2/po/en/radicale2.po @@ -0,0 +1,496 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: luci-app-radicale 2\n" +"PO-Revision-Date: 2019-01-09 06:32-0500\n" +"Last-Translator: Daniel F. Dickinson <cshored@thecshore.com>\n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:8 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:4 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:8 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:7 +msgid "A lightweight CalDAV/CardDAV server" +msgstr "A lightweight CalDAV/CardDAV server" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:30 +msgid "Advanced Settings" +msgstr "Advanced Settings" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:74 +msgid "Allowed Ciphers" +msgstr "Allowed Ciphers" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:10 +msgid "Authentication" +msgstr "Authentication" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:20 +msgid "Authentication / Users" +msgstr "Authentication / Users" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:14 +msgid "Authentication Type" +msgstr "Authentication Type" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:185 +msgid "Based on settings in 'Rights File'" +msgstr "Based on settings in 'Rights File'" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:128 +msgid "CORS" +msgstr "CORS" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:62 +msgid "Certificate" +msgstr "Certificate" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:70 +msgid "Client Certificate Authority" +msgstr "Client Certificate Authority" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:38 +msgid "Close Lock File" +msgstr "Close Lock File" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:38 +msgid "Close the lock file when no more clients are waiting" +msgstr "Close the lock file when no more clients are waiting" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:44 +msgid "Command that is run after changes to storage" +msgstr "Command that is run after changes to storage" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:80 +msgid "Confirm Plaintext Password" +msgstr "Confirm Plaintext Password" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:105 +msgid "DNS Lookup" +msgstr "DNS Lookup" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:26 +msgid "Debug" +msgstr "Debug" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:15 +msgid "Default (htpasswd file from users below)" +msgstr "Default (htpasswd file from users below)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:14 +msgid "Default (multifilesystem)" +msgstr "Default (multifilesystem)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 +msgid "Default (owner only)" +msgstr "Default (owner only)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:31 +msgid "Delete sync token that are older (seconds)" +msgstr "Delete sync token that are older (seconds)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:132 +msgid "Document Encoding" +msgstr "Document Encoding" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:30 +msgid "Dump Environment" +msgstr "Dump Environment" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:52 +msgid "Enable SSL connections" +msgstr "Enable SSL connections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:136 +msgid "Encoding for responding to requests/events" +msgstr "Encoding for responding to requests/events" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:140 +msgid "Encoding for storing local collections" +msgstr "Encoding for storing local collections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:110 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +msgid "Encrypted Password" +msgstr "Encrypted Password" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:29 +msgid "Encryption" +msgstr "Encryption" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:23 +msgid "Filename" +msgstr "Filename" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:19 +msgid "Folder" +msgstr "Folder" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:19 +msgid "Folder in which to store collections" +msgstr "Folder in which to store collections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:70 +msgid "For verifying client certificates" +msgstr "For verifying client certificates" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:29 +msgid "General Settings" +msgstr "General Settings" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +msgid "" +"Generate this field using an generator for Apache htpasswd-style " +"authentication files (for the hash format you have chosen above), or install " +"python3-passlib to enable the ability to create the hash by entering the " +"plaintext in a field that will appear on this page if python3-passlib is " +"installed." +msgstr "" +"Generate this field using an generator for Apache htpasswd-style " +"authentication files (for the hash format you have chosen above), or install " +"python3-passlib to enable the ability to create the hash by entering the " +"plaintext in a field that will appear on this page if python3-passlib is " +"installed." + +#: applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm:24 +msgid "Go to Radicale 2.x Web UI" +msgstr "Go to Radicale 2.x Web UI" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:14 +msgid "Go to Radicale v2 Web UI" +msgstr "Go to Radicale v2 Web UI" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:109 +msgid "HTTP(S) Basic Authentication Realm" +msgstr "HTTP(S) Basic Authentication Realm" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:124 +msgid "HTTP(S) Headers" +msgstr "HTTP(S) Headers" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:32 +msgid "HTTP(S) Listeners (address:port)" +msgstr "HTTP(S) Listeners (address:port)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:128 +msgid "Header: X-Access-Control-Allow-Origin" +msgstr "Header: X-Access-Control-Allow-Origin" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:124 +msgid "Headers" +msgstr "Headers" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:44 +msgid "Hook" +msgstr "Hook" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:110 +msgid "" +"If 'Plaintext Password' filled and matches 'Confirm Plaintext Password' then " +"this field becomes of hash of that password, otherwise this field remains " +"the existing hash (you can also put your own hash value for the type of hash " +"listed above)." +msgstr "" +"If 'Plaintext Password' filled and matches 'Confirm Plaintext Password' then " +"this field becomes of hash of that password, otherwise this field remains " +"the existing hash (you can also put your own hash value for the type of hash " +"listed above)." + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:30 +msgid "Include full environment in logs" +msgstr "Include full environment in logs" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:46 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:48 +msgid "Insecure hashes" +msgstr "Insecure hashes" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:102 +msgid "Install package python3-openssl to support SSL connections" +msgstr "Install package python3-openssl to support SSL connections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:46 +msgid "Install python3-passlib and python3-bcrypt to enable a secure hash" +msgstr "Install python3-passlib and python3-bcrypt to enable a secure hash" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:12 +msgid "" +"Log configuration file (no file means default procd which ends up in syslog" +msgstr "" +"Log configuration file (no file means default procd which ends up in syslog" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:28 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:6 +msgid "Logging" +msgstr "Logging" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:12 +msgid "Logging File" +msgstr "Logging File" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:105 +msgid "Lookup reverse DNS for clients for logging" +msgstr "Lookup reverse DNS for clients for logging" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:34 +msgid "Mask Passwords" +msgstr "Mask Passwords" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:36 +msgid "Max Connections" +msgstr "Max Connections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:42 +msgid "Max Content Length" +msgstr "Max Content Length" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:31 +msgid "Max Sync Token Age" +msgstr "Max Sync Token Age" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:36 +msgid "Maximum number of simultaneous connections" +msgstr "Maximum number of simultaneous connections" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:42 +msgid "Maximum size of request body (bytes)" +msgstr "Maximum size of request body (bytes)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:15 +msgid "Multiple files on filesystem" +msgstr "Multiple files on filesystem" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:17 +msgid "No authentication" +msgstr "No authentication" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:98 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:105 +msgid "Password and confirmation do not match" +msgstr "Password and confirmation do not match" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:29 +msgid "Password encryption method" +msgstr "Password encryption method" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:32 +msgid "Plaintext" +msgstr "Plaintext" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:76 +msgid "Plaintext Password" +msgstr "Plaintext Password" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:25 +msgid "" +"Prevent other instances or processes from modifying collections while in use" +msgstr "" +"Prevent other instances or processes from modifying collections while in use" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:66 +msgid "Private Key" +msgstr "Private Key" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:18 +msgid "REMOTE_USER from web server" +msgstr "REMOTE_USER from web server" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:186 +msgid "RO: All, RW: All" +msgstr "RO: All, RW: All" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:184 +msgid "RO: Authenticated Users, RW: Owner" +msgstr "RO: Authenticated Users, RW: Owner" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:183 +msgid "RO: None, RW: Authenticated Users" +msgstr "RO: None, RW: Authenticated Users" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 +msgid "RO: None, RW: Owner" +msgstr "RO: None, RW: Owner" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:13 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:7 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:3 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:7 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:6 +msgid "Radicale 2.x" +msgstr "Radicale 2.x" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:10 +msgid "Radicale v2 Web UI" +msgstr "Radicale v2 Web UI" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:109 +msgid "Realm" +msgstr "Realm" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:34 +msgid "Redact passwords in logs" +msgstr "Redact passwords in logs" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:84 +msgid "Remove configuration for certificate, key, and CA" +msgstr "Remove configuration for certificate, key, and CA" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:16 +msgid "Remove configuration for logging" +msgstr "Remove configuration for logging" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:195 +msgid "Remove configuration for rights file" +msgstr "Remove configuration for rights file" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:136 +msgid "Request" +msgstr "Request" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:57 +msgid "Required time between a failed authentication attempt and trying again" +msgstr "Required time between a failed authentication attempt and trying again" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:57 +msgid "Retry Delay" +msgstr "Retry Delay" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +msgid "Rights" +msgstr "Rights" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:190 +msgid "Rights File" +msgstr "Rights File" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:180 +msgid "Rights Type" +msgstr "Rights Type" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:33 +msgid "SHA1" +msgstr "SHA1" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:34 +msgid "SSHA" +msgstr "SSHA" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:52 +msgid "SSL" +msgstr "SSL" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:102 +msgid "SSL not available" +msgstr "SSL not available" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:74 +msgid "See python3-openssl documentation for available ciphers" +msgstr "See python3-openssl documentation for available ciphers" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:78 +msgid "See python3-openssl documentation for available protocols" +msgstr "See python3-openssl documentation for available protocols" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:48 +msgid "Select bcrypt above to enable a secure hash" +msgstr "Select bcrypt above to enable a secure hash" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:26 +msgid "Send debug information to logs" +msgstr "Send debug information to logs" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:16 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:18 +msgid "Server Settings" +msgstr "Server Settings" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:47 +msgid "Socket timeout (seconds)" +msgstr "Socket timeout (seconds)" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:24 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:140 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:9 +msgid "Storage" +msgstr "Storage" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:13 +msgid "Storage Type" +msgstr "Storage Type" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:17 +msgid "This permanently deletes configuration for logging" +msgstr "This permanently deletes configuration for logging" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:85 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "This permanently deletes the cert, key, and configuration to use same." + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:196 +msgid "This permanently deletes the rights file and configuration to use same." +msgstr "" +"This permanently deletes the rights file and configuration to use same." + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:47 +msgid "Timeout" +msgstr "Timeout" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:25 +msgid "Use File Locks" +msgstr "Use File Locks" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:78 +msgid "Use Protocol" +msgstr "Use Protocol" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:66 +msgid "User" +msgstr "User" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +msgid "User-based ACL Settings" +msgstr "User-based ACL Settings" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:70 +msgid "Username" +msgstr "Username" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:66 +msgid "Users and Passwords" +msgstr "Users and Passwords" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:113 +msgid "Web UI" +msgstr "Web UI" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:117 +msgid "Web UI Type" +msgstr "Web UI Type" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:19 +msgid "X-Remote-User from web server" +msgstr "X-Remote-User from web server" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:39 +msgid "bcrypt" +msgstr "bcrypt" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:35 +msgid "crypt" +msgstr "crypt" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:16 +msgid "htpasswd file (manually populated)" +msgstr "htpasswd file (manually populated)" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:23 +msgid "htpasswd-formatted file filename" +msgstr "htpasswd-formatted file filename" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:37 +msgid "md5" +msgstr "md5" diff --git a/applications/luci-app-radicale2/po/templates/radicale2.pot b/applications/luci-app-radicale2/po/templates/radicale2.pot new file mode 100644 index 0000000000..be11ff1fe0 --- /dev/null +++ b/applications/luci-app-radicale2/po/templates/radicale2.pot @@ -0,0 +1,475 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:8 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:4 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:8 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:7 +msgid "A lightweight CalDAV/CardDAV server" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:30 +msgid "Advanced Settings" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:74 +msgid "Allowed Ciphers" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:10 +msgid "Authentication" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:20 +msgid "Authentication / Users" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:14 +msgid "Authentication Type" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:185 +msgid "Based on settings in 'Rights File'" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:128 +msgid "CORS" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:62 +msgid "Certificate" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:70 +msgid "Client Certificate Authority" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:38 +msgid "Close Lock File" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:38 +msgid "Close the lock file when no more clients are waiting" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:44 +msgid "Command that is run after changes to storage" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:80 +msgid "Confirm Plaintext Password" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:105 +msgid "DNS Lookup" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:26 +msgid "Debug" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:15 +msgid "Default (htpasswd file from users below)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:14 +msgid "Default (multifilesystem)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 +msgid "Default (owner only)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:31 +msgid "Delete sync token that are older (seconds)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:132 +msgid "Document Encoding" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:30 +msgid "Dump Environment" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:52 +msgid "Enable SSL connections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:136 +msgid "Encoding for responding to requests/events" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:140 +msgid "Encoding for storing local collections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:110 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +msgid "Encrypted Password" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:29 +msgid "Encryption" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:23 +msgid "Filename" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:19 +msgid "Folder" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:19 +msgid "Folder in which to store collections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:70 +msgid "For verifying client certificates" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:29 +msgid "General Settings" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +msgid "" +"Generate this field using an generator for Apache htpasswd-style " +"authentication files (for the hash format you have chosen above), or install " +"python3-passlib to enable the ability to create the hash by entering the " +"plaintext in a field that will appear on this page if python3-passlib is " +"installed." +msgstr "" + +#: applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm:24 +msgid "Go to Radicale 2.x Web UI" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:14 +msgid "Go to Radicale v2 Web UI" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:109 +msgid "HTTP(S) Basic Authentication Realm" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:124 +msgid "HTTP(S) Headers" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:32 +msgid "HTTP(S) Listeners (address:port)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:128 +msgid "Header: X-Access-Control-Allow-Origin" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:124 +msgid "Headers" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:44 +msgid "Hook" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:110 +msgid "" +"If 'Plaintext Password' filled and matches 'Confirm Plaintext Password' then " +"this field becomes of hash of that password, otherwise this field remains " +"the existing hash (you can also put your own hash value for the type of hash " +"listed above)." +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:30 +msgid "Include full environment in logs" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:46 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:48 +msgid "Insecure hashes" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:102 +msgid "Install package python3-openssl to support SSL connections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:46 +msgid "Install python3-passlib and python3-bcrypt to enable a secure hash" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:12 +msgid "" +"Log configuration file (no file means default procd which ends up in syslog" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:28 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:6 +msgid "Logging" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:12 +msgid "Logging File" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:105 +msgid "Lookup reverse DNS for clients for logging" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:34 +msgid "Mask Passwords" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:36 +msgid "Max Connections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:42 +msgid "Max Content Length" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:31 +msgid "Max Sync Token Age" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:36 +msgid "Maximum number of simultaneous connections" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:42 +msgid "Maximum size of request body (bytes)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:15 +msgid "Multiple files on filesystem" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:17 +msgid "No authentication" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:98 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:105 +msgid "Password and confirmation do not match" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:29 +msgid "Password encryption method" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:32 +msgid "Plaintext" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:76 +msgid "Plaintext Password" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:25 +msgid "" +"Prevent other instances or processes from modifying collections while in use" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:66 +msgid "Private Key" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:18 +msgid "REMOTE_USER from web server" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:186 +msgid "RO: All, RW: All" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:184 +msgid "RO: Authenticated Users, RW: Owner" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:183 +msgid "RO: None, RW: Authenticated Users" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 +msgid "RO: None, RW: Owner" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:13 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:7 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:3 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:7 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:6 +msgid "Radicale 2.x" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:10 +msgid "Radicale v2 Web UI" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:109 +msgid "Realm" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:34 +msgid "Redact passwords in logs" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:84 +msgid "Remove configuration for certificate, key, and CA" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:16 +msgid "Remove configuration for logging" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:195 +msgid "Remove configuration for rights file" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:136 +msgid "Request" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:57 +msgid "Required time between a failed authentication attempt and trying again" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:57 +msgid "Retry Delay" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +msgid "Rights" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:190 +msgid "Rights File" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:180 +msgid "Rights Type" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:33 +msgid "SHA1" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:34 +msgid "SSHA" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:52 +msgid "SSL" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:102 +msgid "SSL not available" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:74 +msgid "See python3-openssl documentation for available ciphers" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:78 +msgid "See python3-openssl documentation for available protocols" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:48 +msgid "Select bcrypt above to enable a secure hash" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:26 +msgid "Send debug information to logs" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:16 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:18 +msgid "Server Settings" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:47 +msgid "Socket timeout (seconds)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/controller/radicale2.lua:24 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:140 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:9 +msgid "Storage" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:13 +msgid "Storage Type" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/logging.lua:17 +msgid "This permanently deletes configuration for logging" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:85 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:196 +msgid "This permanently deletes the rights file and configuration to use same." +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:47 +msgid "Timeout" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/storage.lua:25 +msgid "Use File Locks" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:78 +msgid "Use Protocol" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:66 +msgid "User" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +msgid "User-based ACL Settings" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:70 +msgid "Username" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:66 +msgid "Users and Passwords" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:113 +msgid "Web UI" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/server.lua:117 +msgid "Web UI Type" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:19 +msgid "X-Remote-User from web server" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:39 +msgid "bcrypt" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:35 +msgid "crypt" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:16 +msgid "htpasswd file (manually populated)" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:23 +msgid "htpasswd-formatted file filename" +msgstr "" + +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:37 +msgid "md5" +msgstr "" diff --git a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua index ef15ed6127..e967ce6283 100644 --- a/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua +++ b/applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua @@ -9,7 +9,7 @@ m = Map("pppoe", translate("Roaring Penguin PPPoE Server"), translate("PPPoE Server Configuration")) s = m:section(TypedSection, "pppoe_server", translate("Server Configuration")) -s.addremove = false +s.addremove = true s.anonymous = true o = s:option(Value, "interface", translate("Interface"), translate("Interface on which to listen.")) diff --git a/applications/luci-app-rp-pppoe-server/po/en/rp-pppoe-server.po b/applications/luci-app-rp-pppoe-server/po/en/rp-pppoe-server.po new file mode 100644 index 0000000000..451e44de1e --- /dev/null +++ b/applications/luci-app-rp-pppoe-server/po/en/rp-pppoe-server.po @@ -0,0 +1,101 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2019-01-09 07:01-0500\n" +"Last-Translator: Daniel F. Dickinson <cshored@thecshore.com>\n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:19 +msgid "Access Concentrator Name" +msgstr "Access Concentrator Name" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:32 +msgid "First remote IP" +msgstr "First remote IP" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:29 +msgid "IP of listening side" +msgstr "IP of listening side" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:44 +msgid "" +"Instead of starting at beginning and going to end, randomize session number" +msgstr "" +"Instead of starting at beginning and going to end, randomize session number" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:15 +msgid "Interface" +msgstr "Interface" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:15 +msgid "Interface on which to listen." +msgstr "Interface on which to listen." + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:62 +msgid "MSS" +msgstr "MSS" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:35 +msgid "Maximum sessions" +msgstr "Maximum sessions" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:25 +msgid "Maximum sessions per peer" +msgstr "Maximum sessions per peer" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:52 +msgid "Offset" +msgstr "Offset" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:40 +msgid "Options file" +msgstr "Options file" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:52 +msgid "PPP offset" +msgstr "PPP offset" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:47 +msgid "PPP unit number" +msgstr "PPP unit number" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:9 +msgid "PPPoE Server Configuration" +msgstr "PPPoE Server Configuration" + +#: applications/luci-app-rp-pppoe-server/luasrc/controller/rp-pppoe-server.lua:11 +msgid "RP PPPoE Server" +msgstr "RP PPPoE Server" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:44 +msgid "Random session selection" +msgstr "Random session selection" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:8 +msgid "Roaring Penguin PPPoE Server" +msgstr "Roaring Penguin PPPoE Server" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:11 +msgid "Server Configuration" +msgstr "Server Configuration" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:22 +msgid "Service Name" +msgstr "Service Name" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:68 +msgid "Sync" +msgstr "Sync" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:57 +msgid "Timeout" +msgstr "Timeout" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:47 +msgid "Unit" +msgstr "Unit" diff --git a/applications/luci-app-rp-pppoe-server/po/templates/rp-pppoe-server.pot b/applications/luci-app-rp-pppoe-server/po/templates/rp-pppoe-server.pot new file mode 100644 index 0000000000..8aff2f55ff --- /dev/null +++ b/applications/luci-app-rp-pppoe-server/po/templates/rp-pppoe-server.pot @@ -0,0 +1,91 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:19 +msgid "Access Concentrator Name" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:32 +msgid "First remote IP" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:29 +msgid "IP of listening side" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:44 +msgid "" +"Instead of starting at beginning and going to end, randomize session number" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:15 +msgid "Interface" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:15 +msgid "Interface on which to listen." +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:62 +msgid "MSS" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:35 +msgid "Maximum sessions" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:25 +msgid "Maximum sessions per peer" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:52 +msgid "Offset" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:40 +msgid "Options file" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:52 +msgid "PPP offset" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:47 +msgid "PPP unit number" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:9 +msgid "PPPoE Server Configuration" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/controller/rp-pppoe-server.lua:11 +msgid "RP PPPoE Server" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:44 +msgid "Random session selection" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:8 +msgid "Roaring Penguin PPPoE Server" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:11 +msgid "Server Configuration" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:22 +msgid "Service Name" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:68 +msgid "Sync" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:57 +msgid "Timeout" +msgstr "" + +#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:47 +msgid "Unit" +msgstr "" diff --git a/applications/luci-app-shadowsocks-libev/luasrc/model/cbi/shadowsocks-libev/rules.lua b/applications/luci-app-shadowsocks-libev/luasrc/model/cbi/shadowsocks-libev/rules.lua index 4a01bed247..e4d1a2745e 100644 --- a/applications/luci-app-shadowsocks-libev/luasrc/model/cbi/shadowsocks-libev/rules.lua +++ b/applications/luci-app-shadowsocks-libev/luasrc/model/cbi/shadowsocks-libev/rules.lua @@ -24,7 +24,7 @@ end function src_dst_option(s, ...) local o = s:taboption(...) - o.datatype = "or(ip4addr,cidr4)" + o.datatype = "or(ipaddr,cidr)" end s = m:section(NamedSection, "ss_rules", "ss_rules") @@ -98,8 +98,8 @@ else o.inputstyle = "apply" o.write = function() return luci.http.redirect( - luci.dispatcher.build_url("admin/system/packages") .. - "?submit=1&install=iptables-mod-conntrack-extra" + luci.dispatcher.build_url("admin/system/opkg") .. + "?query=iptables-mod-conntrack-extra" ) end end diff --git a/applications/luci-app-shadowsocks-libev/luasrc/model/shadowsocks-libev.lua b/applications/luci-app-shadowsocks-libev/luasrc/model/shadowsocks-libev.lua index 5fc20c52bc..5e272e282e 100644 --- a/applications/luci-app-shadowsocks-libev/luasrc/model/shadowsocks-libev.lua +++ b/applications/luci-app-shadowsocks-libev/luasrc/model/shadowsocks-libev.lua @@ -154,7 +154,7 @@ function cfgvalue_overview(sdata) local value = { [".name"] = sname, name = '%s.<var>%s</var>' % {stype, sname}, - overview = table.concat(lines, "</br>"), + overview = table.concat(lines, "<br />"), disabled = ucival_to_bool(sdata["disabled"]), } return key, value @@ -199,8 +199,8 @@ function option_install_package(s, tab) function p_install.write() return luci.http.redirect( - luci.dispatcher.build_url("admin/system/packages") .. - "?submit=1&install=%s" % opkg_package + luci.dispatcher.build_url("admin/system/opkg") .. + "?query=%s" % opkg_package ) end end diff --git a/applications/luci-app-simple-adblock/po/zh-cn/simple-adblock.po b/applications/luci-app-simple-adblock/po/zh-cn/simple-adblock.po index 612de689f5..6834768954 100644 --- a/applications/luci-app-simple-adblock/po/zh-cn/simple-adblock.po +++ b/applications/luci-app-simple-adblock/po/zh-cn/simple-adblock.po @@ -156,7 +156,7 @@ msgstr "一些输出" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:5 msgid "Start Simple Adblock service" -msgstr "" +msgstr "启动简单 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" diff --git a/applications/luci-app-simple-adblock/po/zh-tw/simple-adblock.po b/applications/luci-app-simple-adblock/po/zh-tw/simple-adblock.po index 4543b2fe87..e64b971936 100644 --- a/applications/luci-app-simple-adblock/po/zh-tw/simple-adblock.po +++ b/applications/luci-app-simple-adblock/po/zh-tw/simple-adblock.po @@ -156,7 +156,7 @@ msgstr "一些輸出" #: applications/luci-app-simple-adblock/luasrc/model/cbi/simpleadblock.lua:5 msgid "Start Simple Adblock service" -msgstr "" +msgstr "啟動簡單 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" diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua index 663a3f12d4..b380febac0 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/collectd.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -17,7 +17,7 @@ s = m:section( NamedSection, "collectd", "luci_statistics" ) -- general.hostname (Hostname) hostname = s:option( Value, "Hostname", translate("Hostname") ) -hostname.default = luci.sys.hostname() +hostname.default = sys.hostname() hostname.optional = true -- general.basedir (BaseDir) diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua index f89cdb1fb8..608144f135 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 -]]-- +-- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org> +-- Licensed to the public under the Apache License 2.0. m = Map("luci_statistics", translate("Conntrack Plugin Configuration"), diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua index dafcc452cc..4245018661 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -24,7 +24,7 @@ interfaces.widget = "select" interfaces.size = 5 interfaces:depends( "enable", 1 ) interfaces:value("any") -for k, v in pairs(luci.sys.net.devices()) do +for k, v in pairs(sys.net.devices()) do interfaces:value(v) end diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua index 752212f4d4..60c88d072c 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua @@ -1,7 +1,7 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") m = Map("luci_statistics", @@ -23,7 +23,7 @@ interfaces = s:option( MultiValue, "Interfaces", translate("Monitor interfaces") interfaces.widget = "select" interfaces.size = 5 interfaces:depends( "enable", 1 ) -for k, v in pairs(luci.sys.net.devices()) do +for k, v in pairs(sys.net.devices()) do interfaces:value(v) end diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua index ded3f7f996..375a15bf1a 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua @@ -1,13 +1,12 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys.iptparser") +local ip = require("luci.sys.iptparser").IptParser() -ip = luci.sys.iptparser.IptParser() -chains = { } -targets = { } +local chains = { } +local targets = { } -for i, rule in ipairs( ip:find() ) do +for i, rule in ipairs( ip:find() ) do if rule.chain and rule.target then chains[rule.chain] = true targets[rule.target] = true diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua index 5510a5a8e8..fa677b8d12 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2011 Manuel Munz <freifunk at somakoma dot de> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 -]]-- +-- Copyright 2011 Manuel Munz <freifunk at somakoma dot de> +-- Licensed to the public under the Apache License 2.0. m = Map("luci_statistics", translate("Memory Plugin Configuration"), diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua index 66449ec467..784ad1fdbb 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua @@ -1,9 +1,9 @@ -- Copyright 2008 Freifunk Leipzig / Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require("luci.sys") +local sys = require("luci.sys") -local devices = luci.sys.net.devices() +local devices = sys.net.devices() m = Map("luci_statistics", diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua index 193f0448ae..f0a5ab5930 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua @@ -1,11 +1,8 @@ -- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require "luci.sys" - local m, s, o - m = Map("luci_statistics", translate("OpenVPN Plugin Configuration"), translate("The OpenVPN plugin gathers information about the current vpn connection status.")) diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua index 77e36bfaff..69066880c3 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua @@ -1,8 +1,6 @@ -- Copyright 2015 Jo-Philipp Wich <jow@openwrt.org> -- Licensed to the public under the Apache License 2.0. -require "luci.sys" - local m, s, o local sensor_types = { ["12v"] = "voltage", diff --git a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua index 3a6c4644e3..5e32da7ffe 100644 --- a/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua +++ b/applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua @@ -1,13 +1,5 @@ ---[[ - -Copyright 2013 Thomas Endt <tmo26@gmx.de> - -Licensed under the Apache License, Version 2.0 (the "License"); -you may not use this file except in compliance with the License. -You may obtain a copy of the License at - - http://www.apache.org/licenses/LICENSE-2.0 -]]-- +-- Copyright 2013 Thomas Endt <tmo26@gmx.de> +-- Licensed to the public under the Apache License 2.0. m = Map("luci_statistics", translate("Uptime Plugin Configuration"), diff --git a/applications/luci-app-statistics/luasrc/statistics/i18n.lua b/applications/luci-app-statistics/luasrc/statistics/i18n.lua index 7877e61ab3..6b01958cbe 100644 --- a/applications/luci-app-statistics/luasrc/statistics/i18n.lua +++ b/applications/luci-app-statistics/luasrc/statistics/i18n.lua @@ -3,15 +3,14 @@ module("luci.statistics.i18n", package.seeall) -require("luci.util") -require("luci.i18n") +local util = require("luci.util") +local i18n = require("luci.i18n") -Instance = luci.util.class() - +Instance = util.class() function Instance.__init__( self, graph ) - self.i18n = luci.i18n + self.i18n = i18n self.graph = graph end diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua index f543e67599..b9f48a45bd 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool.lua @@ -3,30 +3,28 @@ module("luci.statistics.rrdtool", package.seeall) -require("luci.statistics.datatree") -require("luci.statistics.rrdtool.colors") -require("luci.statistics.i18n") -require("luci.model.uci") -require("luci.util") -require("luci.sys") +local tree = require("luci.statistics.datatree") +local colors = require("luci.statistics.rrdtool.colors") +local i18n = require("luci.statistics.i18n") +local uci = require("luci.model.uci").cursor() +local util = require("luci.util") +local sys = require("luci.sys") +local fs = require("nixio.fs") -local fs = require "nixio.fs" - -Graph = luci.util.class() +Graph = util.class() function Graph.__init__( self, timespan, opts ) opts = opts or { } - local uci = luci.model.uci.cursor() local sections = uci:get_all( "luci_statistics" ) -- options opts.timespan = timespan or sections.rrdtool.default_timespan or 900 opts.rrasingle = opts.rrasingle or ( sections.collectd_rrdtool.RRASingle == "1" ) opts.rramax = opts.rramax or ( sections.collectd_rrdtool.RRAMax == "1" ) - opts.host = opts.host or sections.collectd.Hostname or luci.sys.hostname() + opts.host = opts.host or sections.collectd.Hostname or sys.hostname() opts.width = opts.width or sections.rrdtool.image_width or 400 opts.rrdpath = opts.rrdpath or sections.collectd_rrdtool.DataDir or "/tmp/rrd" opts.imgpath = opts.imgpath or sections.rrdtool.image_path or "/tmp/rrdimg" @@ -34,9 +32,9 @@ function Graph.__init__( self, timespan, opts ) opts.imgpath = opts.imgpath:gsub("/$","") -- helper classes - self.colors = luci.statistics.rrdtool.colors.Instance() - self.tree = luci.statistics.datatree.Instance(opts.host) - self.i18n = luci.statistics.i18n.Instance( self ) + self.colors = colors.Instance() + self.tree = tree.Instance(opts.host) + self.i18n = i18n.Instance( self ) -- rrdtool default args self.args = { @@ -102,7 +100,7 @@ function Graph._rrdtool( self, def, rrd ) opt = opt:gsub( "{file}", rrd ) end - cmdline[#cmdline+1] = luci.util.shellquote(opt) + cmdline[#cmdline+1] = util.shellquote(opt) end -- execute rrdtool diff --git a/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua b/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua index 5b35dff67c..0d3af712fd 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/colors.lua @@ -3,10 +3,10 @@ module("luci.statistics.rrdtool.colors", package.seeall) -require("luci.util") +local util = require("luci.util") -Instance = luci.util.class() +Instance = util.class() function Instance.from_string( self, s ) return { 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 9f7a51a868..37055f5861 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/apcups.lua @@ -19,8 +19,7 @@ function rrdargs( graph, plugin, plugin_instance ) ups_inst[t] = graph.tree:data_instances( plugin, plugin_instance, t ) end - - -- Check if hash table or array is empty or nil-filled + -- Check if hash table or array is empty or nil-filled local function empty( t ) for _, v in pairs(t) do @@ -57,8 +56,8 @@ function rrdargs( graph, plugin, plugin_instance ) end - -- Graph definitions for APC UPS measurements MUST use only 'instances': - -- e.g. instances = { voltage = { "input", "output" } } + -- Graph definitions for APC UPS measurements MUST use only 'instances': + -- e.g. instances = { voltage = { "input", "output" } } local voltagesdc = { title = "%H: Voltages on APC UPS - Battery", 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 fbc47731ef..5212b736e2 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/conntrack.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.conntrack",package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: Conntrack entries", vlabel = "Count", 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 89a65a6b5f..2bbdfb08fb 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/curl.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.curl", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: cUrl Response Time for #%pi", y_min = "0", 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 8aabb7f64e..b6f7d6d5f8 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/disk.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.disk", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) + return { { title = "%H: Disk I/O operations on %pi", 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 a612126ed0..f485048538 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/netlink.lua @@ -37,7 +37,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- packet diagram -- @@ -119,7 +118,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- multicast diagram -- @@ -144,7 +142,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- collision diagram -- @@ -169,7 +166,6 @@ function rrdargs( graph, plugin, plugin_instance ) } } - -- -- error diagram -- @@ -206,6 +202,5 @@ function rrdargs( graph, plugin, plugin_instance ) } } - return { traffic, packets, multicast, collisions, errors } end 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 a69469568e..481557bb7f 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/olsrd.lua @@ -9,18 +9,18 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) if plugin_instance == "routes" then g[#g+1] = { - -- diagram data description + -- diagram data description title = "%H: Total amount of OLSR routes", vlabel = "n", number_format = "%5.0lf", data = { - types = { "routes" }, + types = { "routes" }, options = { routes = { color = "ff0000", title = "Total number of routes" } } - } - } + } + } g[#g+1] = { title = "%H: Average route ETX", vlabel = "ETX", detail = true, @@ -80,7 +80,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) number_format = "%5.2lf", detail = true, data = { types = { "signal_quality" }, - + instances = { signal_quality = { instances[i], instances[i+1] }, }, @@ -106,7 +106,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) title= "%H: Total amount of OLSR links", vlabel = "n", number_format = "%5.0lf", data = { instances = { "" }, - types = { "links" }, + types = { "links" }, options = { links = { color = "0000ff", @@ -114,7 +114,7 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } - } + } g[#g+1] = { title= "%H: Average signal quality", vlabel = "n", 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 6ecdb5c8ad..5b575bfff2 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/ping.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.ping", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) + return { -- Ping roundtrip time { title = "%H: ICMP Round Trip Time", 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 62d0545973..010ac1cd2e 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/processes.lua @@ -5,8 +5,8 @@ module("luci.statistics.rrdtool.definitions.processes", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) - if plugin_instance == "" then - return { + if plugin_instance == "" then + return { title = "%H: Processes", vlabel = "Processes/s", data = { @@ -26,9 +26,9 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) ps_state_zombies = { color = "ff0000", title = "Zombies" } } } - } - else - return { + } + else + return { { title = "%H: CPU time used by %pi", vlabel = "Jiffies", @@ -113,5 +113,5 @@ function rrdargs( graph, plugin, plugin_instance, dtype ) } } } - end + end end 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 f8bddb96e3..b3119234a4 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/sensors.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.sensors", package.seeall) function rrdargs( graph, plugin, plugin_instance ) + return { { per_instance = true, 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 65fba5299d..1a192ae6a6 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 @@ -1,27 +1,26 @@ -- Copyright 2013 Freifunk Augsburg / Michael Wendland <michael@michiwend.com> -- Licensed to the public under the Apache License 2.0. - module("luci.statistics.rrdtool.definitions.splash_leases", package.seeall) - + function rrdargs( graph, plugin, plugin_instance, dtype ) - - return { - title = "%H: Splash Leases", - vlabel = "Active Clients", - y_min = "0", - number_format = "%5.1lf", - data = { - sources = { - splash_leases = { "leased", "whitelisted", "blacklisted" } - }, - - options = { - splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false }, - splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false }, - splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false } - } - } - } -end + return { + title = "%H: Splash Leases", + vlabel = "Active Clients", + y_min = "0", + number_format = "%5.1lf", + data = { + sources = { + splash_leases = { "leased", "whitelisted", "blacklisted" } + }, + + options = { + splash_leases__leased = { color = "00CC00", title = "Leased", overlay = false }, + splash_leases__whitelisted = { color = "0000FF", title = "Whitelisted", overlay = false }, + splash_leases__blacklisted = { color = "FF0000", title = "Blacklisted", overlay = false } + } + } + } + +end 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 50a9470de5..7e7ed238f4 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/tcpconns.lua @@ -4,6 +4,7 @@ module("luci.statistics.rrdtool.definitions.tcpconns", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) + return { title = "%H: TCP connections to port %pi", vlabel = "Connections/s", 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 077ec57e83..a50e78491f 100644 --- a/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua +++ b/applications/luci-app-statistics/luasrc/statistics/rrdtool/definitions/uptime.lua @@ -13,15 +13,14 @@ module("luci.statistics.rrdtool.definitions.uptime", package.seeall) function rrdargs( graph, plugin, plugin_instance, dtype ) - return { - title = "%H: Uptime", vlabel = "seconds", - number_format = "%5.0lf%s", data = { - types = { "uptime" }, - options = { - uptime = { title = "Uptime %di", noarea = true } - } - } - } - + return { + title = "%H: Uptime", vlabel = "seconds", + number_format = "%5.0lf%s", data = { + types = { "uptime" }, + options = { + uptime = { title = "Uptime %di", noarea = true } + } + } + } end diff --git a/applications/luci-app-statistics/po/ca/statistics.po b/applications/luci-app-statistics/po/ca/statistics.po index d550facb24..dd3389ce3d 100644 --- a/applications/luci-app-statistics/po/ca/statistics.po +++ b/applications/luci-app-statistics/po/ca/statistics.po @@ -23,7 +23,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Acció (objectiu)" @@ -31,7 +31,7 @@ msgstr "Acció (objectiu)" msgid "Add command for reading values" msgstr "Afegeix ordre per llegir valors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Afegeix regla coincident" @@ -44,7 +44,7 @@ msgstr "Afegeix múltiples hosts separats per espai." msgid "Add notification command" msgstr "Afegeix ordre de notificació" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -88,7 +88,7 @@ msgstr "Emmagatzema en memòria cau les dades recollides de" msgid "Cache flush interval" msgstr "Interval de neteja de memòria cau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadena" @@ -122,7 +122,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuració del connector Conntrack" @@ -150,7 +150,7 @@ msgstr "Interval de recol·lecció de dades" msgid "Datasets definition file" msgstr "Fitxer de definició de dades" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rang d'IP destí" @@ -199,10 +199,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,25 +212,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Activa aquest connector" @@ -266,7 +266,7 @@ msgstr "Neteja la memòria cau després de" msgid "Forwarding between listen and server addresses" msgstr "Readreçant entre adreces que reben connexions i adreces de servidors" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -274,7 +274,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -305,7 +305,7 @@ msgstr "" "uns certs valors llindars. Els valors que condueixin a la invocació, " "alimentaran als programes stdin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -313,7 +313,7 @@ msgstr "" "Ací pots definir diversos criteris pels que es seleccionaran les regles " "iptables monitoritzades ." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -337,7 +337,7 @@ msgstr "Configuració de connector IRQ" msgid "Ignore source addresses" msgstr "Ignora adreces origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfície entrant" @@ -357,7 +357,7 @@ msgstr "Interrupcions" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuració del connector iptables" @@ -395,7 +395,7 @@ msgstr "Connexions màximes permeses" msgid "Memory" msgstr "Memòria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuració del connector de memòria" @@ -405,7 +405,7 @@ msgstr "Configuració del connector de memòria" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -414,7 +414,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Monitoritza tots els ports locals que reben connexions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,7 +472,7 @@ msgstr "Monitoritza els ports remots" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nom de la regla" @@ -496,7 +496,7 @@ msgstr "Configuració del connector de xarxa" msgid "Network plugins" msgstr "Connectors de xarxa" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocol de xarxa" @@ -526,19 +526,19 @@ msgstr "Crea només RRAs mitjans" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Opcions" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfície sortint" @@ -621,7 +621,7 @@ msgstr "" msgid "Seconds" msgstr "Segons" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +665,7 @@ msgstr "Grup d'endoll" msgid "Socket permissions" msgstr "Permisos d'endoll" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rang d'IP origen" @@ -733,7 +733,7 @@ msgstr "TTL pels paquets de xarxa" msgid "TTL for ping packets" msgstr "TTL per paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Taula" @@ -751,13 +751,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -831,7 +831,7 @@ msgstr "" "El connector d'interfície recull estadístiques de tràfic a les interfícies " "seleccionades." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -862,7 +862,7 @@ msgstr "" "El connector de càrrega recull estadístiques sobre la càrrega de sistema " "general." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "El connector de memòria recull estadístiques sobre l'ús de memòria." @@ -915,7 +915,7 @@ msgstr "" "incorrectes comportarà un consum molt alt de memòria al directori temporal. " "Això pot inutilitzar el dispositiu!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -957,7 +957,7 @@ msgstr "" "El connector unixsock crea un socket Unix que es pot fer servir per llegir " "dades recollides d'una instància collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1025,11 +1025,11 @@ msgstr "Configuració de connector Unixsock" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1067,19 +1067,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.e. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.e. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "p.e. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "màx. 16 caràcters" diff --git a/applications/luci-app-statistics/po/cs/statistics.po b/applications/luci-app-statistics/po/cs/statistics.po index d9696c0398..1d25e32cfe 100644 --- a/applications/luci-app-statistics/po/cs/statistics.po +++ b/applications/luci-app-statistics/po/cs/statistics.po @@ -19,7 +19,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Akce (cíl)" @@ -27,7 +27,7 @@ msgstr "Akce (cíl)" msgid "Add command for reading values" msgstr "Přidat příkaz pro čtení hodnot" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Přidat pravidlo pro výběr" @@ -40,7 +40,7 @@ msgstr "Přidat více hostů, oddělených mezerou" msgid "Add notification command" msgstr "Přidat příkaz pro upozornění" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -84,7 +84,7 @@ msgstr "Mezipamět pro ukládání dat" msgid "Cache flush interval" msgstr "Interval vyprazdňování mezipaměti" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Řetěz" @@ -118,7 +118,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Nastavení pluginu Conntrack" @@ -146,7 +146,7 @@ msgstr "Interval sběru dat" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rozsah cílových IP adres" @@ -195,10 +195,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -208,25 +208,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Povolit tento plugin" @@ -262,7 +262,7 @@ msgstr "Vyprázdnit cache po" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +270,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -299,7 +299,7 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -307,7 +307,7 @@ msgstr "" "Zde můžete definovat různá kritéria, podle kterých budou vybrána sledovaná " "pravidla iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -331,7 +331,7 @@ msgstr "Nastavení IRQ pluginu" msgid "Ignore source addresses" msgstr "Ignorovat zdrojové adresy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Příchozí rozhraní" @@ -351,7 +351,7 @@ msgstr "Přerušení" msgid "Interval for pings" msgstr "Interval pro ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Nastavení Iptables pluginu" @@ -390,7 +390,7 @@ msgstr "Maximální množství povolených spojení" msgid "Memory" msgstr "Paměť" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Nastavení pluginu Memory (Paměť)" @@ -400,7 +400,7 @@ msgstr "Nastavení pluginu Memory (Paměť)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Sledovat vše kromě vybraných" @@ -409,7 +409,7 @@ msgstr "Sledovat vše kromě vybraných" msgid "Monitor all local listen ports" msgstr "Monitorovat všechny naslouchající porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -467,7 +467,7 @@ msgstr "Sledovat vzdálené porty" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Název pravidla" @@ -491,7 +491,7 @@ msgstr "Nastavení pluginu Síť" msgid "Network plugins" msgstr "Síťové pluginy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Síťový protokol" @@ -521,19 +521,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Možnosti" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Odchozí rozhraní" @@ -617,7 +617,7 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -625,7 +625,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -661,7 +661,7 @@ msgstr "Skupina socketů" msgid "Socket permissions" msgstr "Oprávnění socketu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rozsah zdrojových IP" @@ -727,7 +727,7 @@ msgstr "TTL pro síťové pakety" msgid "TTL for ping packets" msgstr "TTL pro pakety pingu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -745,13 +745,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -821,7 +821,7 @@ msgid "" msgstr "" "Plugin Interface shromažďuje statistiky o provozu na vybraných rozhraních." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -849,7 +849,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Plugin Load shromažďuje statistiky o obecné zátěži systému." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Plugin Memory shromažďuje statistiky o využití paměti." @@ -901,7 +901,7 @@ msgstr "" "spotřebu paměti v dočasném adresáří. Zařízení ze tak může stát nepoužitelným!" "</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -943,7 +943,7 @@ msgstr "" "Plugin Unixsock vytváří unixový socket, které může být využit pro čtení dat " "z běžící instance collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1009,11 +1009,11 @@ msgstr "Konfigurace pluginu Unixsock" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1051,19 +1051,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "např. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "např. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "např. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 znaků" diff --git a/applications/luci-app-statistics/po/de/statistics.po b/applications/luci-app-statistics/po/de/statistics.po index b7fe0a6c71..b71316449d 100644 --- a/applications/luci-app-statistics/po/de/statistics.po +++ b/applications/luci-app-statistics/po/de/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Aktion (Ziel)" @@ -29,7 +29,7 @@ msgstr "Aktion (Ziel)" msgid "Add command for reading values" msgstr "Kommando zum Werte einlesen hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Auswahlregel hinzufügen" @@ -42,7 +42,7 @@ msgstr "Mehrere Hosts durch Leerzeichen getrennt hinzufuegen" msgid "Add notification command" msgstr "Benachrichtigungskommando hinzufügen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "Zwischenspeicherzeit für gesammelte Daten" msgid "Cache flush interval" msgstr "Cache-Leerungsintervall" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Kette (Chain)" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack Plugin Einstellungen" @@ -148,7 +148,7 @@ msgstr "Daten-Sammelintervall" msgid "Datasets definition file" msgstr "Dataset-Definitionen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Ziel-IP-Bereich" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Plugin aktivieren" @@ -264,7 +264,7 @@ msgstr "Leerungsintervall für Zwischenspeicher" msgid "Forwarding between listen and server addresses" msgstr "Weiterleitung zwischen Listen- und Server-Adressen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -305,7 +305,7 @@ msgstr "" "welche die Benachrichtigung ausgelöst haben werden dabei an den STDIN des " "aufgerufenen Programmes übergeben." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -313,7 +313,7 @@ msgstr "" "Hier werden die Kriterien festgelegt nach welchen die zu überwachenden " "Firewall-Regeln ausgewählt werden." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -337,7 +337,7 @@ msgstr "IRQ Plugin Konfiguration" msgid "Ignore source addresses" msgstr "Quelladressen ignorieren" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "eingehende Schnittstelle" @@ -357,7 +357,7 @@ msgstr "Interrupts" msgid "Interval for pings" msgstr "Intervall zwischen den Pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Konfiguration" @@ -397,7 +397,7 @@ msgstr "Maximale Anzahl erlaubter Verbindungen" msgid "Memory" msgstr "Memory" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Memory-Plugin-Konfiguration" @@ -407,7 +407,7 @@ msgstr "Memory-Plugin-Konfiguration" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Alle bis auf Angegebene überwachen" @@ -416,7 +416,7 @@ msgstr "Alle bis auf Angegebene überwachen" msgid "Monitor all local listen ports" msgstr "Alle durch lokale Dienste genutzten Ports überwachen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -474,7 +474,7 @@ msgstr "entfernte Ports überwachen" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Name der Regel" @@ -498,7 +498,7 @@ msgstr "Network Plugin Konfiguration" msgid "Network plugins" msgstr "Netzwerkplugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Netzwerkprotokoll" @@ -528,19 +528,19 @@ msgstr "Nur 'average' RRAs erzeugen" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Optionen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "ausgehende Schnittstelle" @@ -623,7 +623,7 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekunden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -631,7 +631,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -667,7 +667,7 @@ msgstr "Socket-Nutzergruppe" msgid "Socket permissions" msgstr "Socket-Berechtigungen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Quell-IP-Bereich" @@ -733,7 +733,7 @@ msgstr "TTL für Netzwerkpakete" msgid "TTL for ping packets" msgstr "TTL für Ping Pakete" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabelle" @@ -754,13 +754,13 @@ msgstr "" "Das OLSRd-Plugin liest Informationen über Meshnetzwerke aus der OLSR-Txtinfo-" "Erweiterung." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -836,7 +836,7 @@ msgstr "" "Das Interface-Plugin sammelt allgemeine Verkehrsstatistiken auf ausgewählten " "Schnittstellen." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -865,7 +865,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Das Load-Plugin sammelt Informationen über die allgemeine Systemlast." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Das memory-Plugin sammelt Statistiken über die RAM-Auslastung des Systems." @@ -920,7 +920,7 @@ msgstr "" "Speicherverbrauch im temporären Verzeichnis. Das kann das Gerät unbrauchbar " "machen, da Systemspeicher für den regulären Betrieb fehlt!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -962,7 +962,7 @@ msgstr "" "Das Unixsock-Plugin erstellt einen Unix-Socket über welchen gesammelte Werte " "aus der laufenden Collectd-Instanz ausgelesen werden können." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1030,11 +1030,11 @@ msgstr "Unixsock Plugin Konfiguration" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1072,19 +1072,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "z.B. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "z.B. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "z.B. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 Buchstaben" diff --git a/applications/luci-app-statistics/po/el/statistics.po b/applications/luci-app-statistics/po/el/statistics.po index 91854366c0..f7b724c5b5 100644 --- a/applications/luci-app-statistics/po/el/statistics.po +++ b/applications/luci-app-statistics/po/el/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +42,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -87,7 +87,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -149,7 +149,7 @@ msgstr "Περίοδος συλλογής δεδομένων" msgid "Datasets definition file" msgstr "Αρχείο ορισμού συνόλων δεδομένων" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -199,10 +199,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,25 +212,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -266,7 +266,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -274,7 +274,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -300,13 +300,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -330,7 +330,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -350,7 +350,7 @@ msgstr "Διακοπές" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -388,7 +388,7 @@ msgstr "" msgid "Memory" msgstr "Μνήμη" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -398,7 +398,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -407,7 +407,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -465,7 +465,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Όνομα κανόνα" @@ -489,7 +489,7 @@ msgstr "" msgid "Network plugins" msgstr "Πρόσθετα δικτύου" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -519,19 +519,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -614,7 +614,7 @@ msgstr "" msgid "Seconds" msgstr "Δευτερόλεπτα" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -622,7 +622,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -658,7 +658,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -724,7 +724,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Πίνακας" @@ -742,13 +742,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -805,7 +805,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -827,7 +827,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -865,7 +865,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -903,7 +903,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -967,11 +967,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1009,19 +1009,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "π.χ. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "π.χ. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/en/statistics.po b/applications/luci-app-statistics/po/en/statistics.po index 490cc81c0d..5c424c5455 100644 --- a/applications/luci-app-statistics/po/en/statistics.po +++ b/applications/luci-app-statistics/po/en/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (target)" @@ -29,7 +29,7 @@ msgstr "Action (target)" msgid "Add command for reading values" msgstr "Add command for reading values" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Add matching rule" @@ -42,7 +42,7 @@ msgstr "" msgid "Add notification command" msgstr "Add notification command" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "Cache collected data for" msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chain" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -148,7 +148,7 @@ msgstr "Data collection interval" msgid "Datasets definition file" msgstr "Datasets definition file" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Destination ip range" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Enable this plugin" @@ -264,7 +264,7 @@ msgstr "Flush cache after" msgid "Forwarding between listen and server addresses" msgstr "Forwarding between listen and server addresses" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,7 +303,7 @@ msgstr "" "certain threshold values have been reached. The values leading to invocation " "will be fed to the the called programs stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -311,7 +311,7 @@ msgstr "" "Here you can define various criteria by which the monitored iptables rules " "are selected." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +335,7 @@ msgstr "IRQ Plugin Configuration" msgid "Ignore source addresses" msgstr "Ignore source addresses" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Incoming interface" @@ -355,7 +355,7 @@ msgstr "Interrupts" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables Plugin Configuration" @@ -393,7 +393,7 @@ msgstr "Maximum allowed connections" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -403,7 +403,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -412,7 +412,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Monitor all local listen ports" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -470,7 +470,7 @@ msgstr "Monitor remote ports" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Name of the rule" @@ -494,7 +494,7 @@ msgstr "Network Plugin Configuration" msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network protocol" @@ -524,19 +524,19 @@ msgstr "Only create average RRAs" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Options" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Outgoing interface" @@ -619,7 +619,7 @@ msgstr "" msgid "Seconds" msgstr "Seconds" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -663,7 +663,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Source ip range" @@ -729,7 +729,7 @@ msgstr "TTL for network packets" msgid "TTL for ping packets" msgstr "TTL for ping packets" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -747,13 +747,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -825,7 +825,7 @@ msgid "" msgstr "" "The interface plugin collects traffic statistics on selected interfaces." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -851,7 +851,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "The load plugin collects statistics about the general system load." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -903,7 +903,7 @@ msgstr "" "values will result in a very high memory consumption in the temporary " "directory. This can render the device unusable!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -945,7 +945,7 @@ msgstr "" "The unixsock plugin creates a unix socket which can be used to read " "collected data from a running collectd instance." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1012,11 +1012,11 @@ msgstr "Unixsock Plugin Configuration" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1054,19 +1054,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "e.g. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "e.g. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "e.g. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 chars" diff --git a/applications/luci-app-statistics/po/es/statistics.po b/applications/luci-app-statistics/po/es/statistics.po index c8af36e1bd..d9447b5123 100644 --- a/applications/luci-app-statistics/po/es/statistics.po +++ b/applications/luci-app-statistics/po/es/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Acción (objetivo)" @@ -29,7 +29,7 @@ msgstr "Acción (objetivo)" msgid "Add command for reading values" msgstr "Añadir comando para leer valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Añadir regla" @@ -42,7 +42,7 @@ msgstr "Añadir múltiples máquinas separadas por espacio." msgid "Add notification command" msgstr "Añadir comando de notificación" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "Almacenar datos recogidos para" msgid "Cache flush interval" msgstr "Intervalo de limpieza del caché" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadena" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "Seguimiento" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuración del seguimiento" @@ -148,7 +148,7 @@ msgstr "Intervalo de recolección de datos" msgid "Datasets definition file" msgstr "Archivo de definición de conjunto de datos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Rango IP de destino" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Activar este plugin" @@ -264,7 +264,7 @@ msgstr "Vaciar caché tras" msgid "Forwarding between listen and server addresses" msgstr "Retransmitir entre las direcciones de escucha y servidor" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -302,7 +302,7 @@ msgstr "" "Aquí puede definir los comandos externos que iniciará collectd cuando se " "alcancen ciertos valores umbral." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,7 +310,7 @@ msgstr "" "Aquí puede definir varios criterios de selección de reglas de iptables " "monitorizadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -334,7 +334,7 @@ msgstr "Configuración del plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar direcciones de origen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfaz de entrada" @@ -354,7 +354,7 @@ msgstr "Interrupciones" msgid "Interval for pings" msgstr "Intervalo entre pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuración del plugin Iptables" @@ -392,7 +392,7 @@ msgstr "Máximo número de conexiones" msgid "Memory" msgstr "Memoria" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuración del plugin Memoria" @@ -402,7 +402,7 @@ msgstr "Configuración del plugin Memoria" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Monitorizar todos menos los especificados" @@ -411,7 +411,7 @@ msgstr "Monitorizar todos menos los especificados" msgid "Monitor all local listen ports" msgstr "Monitorizar todos los puertos de escucha locales" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -469,7 +469,7 @@ msgstr "Monitorizar puertos remotos" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nombre de la regla" @@ -493,7 +493,7 @@ msgstr "Configuración del plugin \"Red\"" msgid "Network plugins" msgstr "Plugins de red" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de red" @@ -523,19 +523,19 @@ msgstr "Crear sólo RRAs medias" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Opciones" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfaz de salida" @@ -618,7 +618,7 @@ msgstr "Guión" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -626,7 +626,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -662,7 +662,7 @@ msgstr "Grupo socket" msgid "Socket permissions" msgstr "Permisos para socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Rango de direcciones IP origen" @@ -728,7 +728,7 @@ msgstr "TTL para paquetes de red" msgid "TTL for ping packets" msgstr "TTL para paquetes de ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabla" @@ -750,13 +750,13 @@ msgstr "" "El plugin OLSRd lee información sobre redes distribuidas desde el plugin " "txtinfo de OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -834,7 +834,7 @@ msgstr "" "El plugin \"Interface\" recoge estadísticas de tráfico en las interfaces " "seleccionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -863,7 +863,7 @@ msgid "The load plugin collects statistics about the general system load." msgstr "" "El plugin \"carga\" recoge estadísticas sobre la carga general del sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "El plugin \"memoria\" recoge estadísticas sobre el uso de memoria." @@ -916,7 +916,7 @@ msgstr "" "incorrectos puede hacer que se use mucho espacio en el directorio temporal y " "puede hacer que el dispositivo funcione mal!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -958,7 +958,7 @@ msgstr "" "El plugin \"unixsock\" crea un socket UNIX que se puede usar para leer los " "datos recogidos por una instancia collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1026,11 +1026,11 @@ msgstr "Configuración del plugin \"UnixSock\"" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1068,19 +1068,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.e. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.e. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "p.e. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "16 caracteres máximo" diff --git a/applications/luci-app-statistics/po/fr/statistics.po b/applications/luci-app-statistics/po/fr/statistics.po index de88548654..33577b6ae9 100644 --- a/applications/luci-app-statistics/po/fr/statistics.po +++ b/applications/luci-app-statistics/po/fr/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (cible)" @@ -29,7 +29,7 @@ msgstr "Action (cible)" msgid "Add command for reading values" msgstr "Ajoute une commande pour lire des valeurs" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Ajouter une règle à surveiller" @@ -42,7 +42,7 @@ msgstr "" msgid "Add notification command" msgstr "Ajoute une commande de notification" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "Mettre en cache les données collectées pendant" msgid "Cache flush interval" msgstr "Intervalle de vidange du cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chaîne" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -148,7 +148,7 @@ msgstr "Période de récupération des données" msgid "Datasets definition file" msgstr "Fichier de définition des lots de données" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "plage réseau de destination" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Activer ce greffon" @@ -264,7 +264,7 @@ msgstr "Vidanger le cache après" msgid "Forwarding between listen and server addresses" msgstr "Transfert entre les adresses en écoute et du serveur" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +304,7 @@ msgstr "" "collectd quand certaines valeurs-seuil seront atteintes. Les valeurs " "induisant ces démarrages seront fournies aux commandes externes via stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +312,7 @@ msgstr "" "Vous pouvez définir ici les critères variés pour sélectionner les règles " "iptables à surveiller." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +336,7 @@ msgstr "Configuration du greffon IRQ" msgid "Ignore source addresses" msgstr "Ignorer les adresses-source" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface entrante" @@ -356,7 +356,7 @@ msgstr "Interruptions" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuration du greffon IPtables" @@ -394,7 +394,7 @@ msgstr "Nb de Connexions autorisées au maximum" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -404,7 +404,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -413,7 +413,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Surveiller tous les ports en écoute locaux" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -471,7 +471,7 @@ msgstr "Surveiller les ports destinataires" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nom de la règle" @@ -495,7 +495,7 @@ msgstr "Configuration du greffon réseau" msgid "Network plugins" msgstr "Greffons liés au réseau" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocole réseau" @@ -525,19 +525,19 @@ msgstr "Créer seulement des RRAs moyens" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Options" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface sortante" @@ -620,7 +620,7 @@ msgstr "" msgid "Seconds" msgstr "Secondes" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -664,7 +664,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "plage réseau source" @@ -730,7 +730,7 @@ msgstr "TTL des paquets-réseau" msgid "TTL for ping packets" msgstr "TTL des paquets ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -748,13 +748,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -827,7 +827,7 @@ msgstr "" "Ce greffon des interfaces collecte des statistiques de trafic sur les " "interfaces sélectionnées." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -857,7 +857,7 @@ msgstr "" "Le greffon de charge-système collecte des données sur la charge générale du " "système." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -911,7 +911,7 @@ msgstr "" "grande consommation mémoire dans le répertoire temporaire, qui peut rendre " "le matériel inutilisable !</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,7 +951,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1019,11 +1019,11 @@ msgstr "Configuration du greffon de socket Unix" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1061,19 +1061,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "p.ex. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "p.ex. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "p.ex. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "Max. 16 caractères" diff --git a/applications/luci-app-statistics/po/he/statistics.po b/applications/luci-app-statistics/po/he/statistics.po index d841795f93..a5c022cb93 100644 --- a/applications/luci-app-statistics/po/he/statistics.po +++ b/applications/luci-app-statistics/po/he/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -29,7 +29,7 @@ msgstr "" msgid "Add command for reading values" msgstr "הוסף פקודה לקריאת נתונים" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +42,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -117,7 +117,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -145,7 +145,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -194,10 +194,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -207,25 +207,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -261,7 +261,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -269,7 +269,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -295,13 +295,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -325,7 +325,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -345,7 +345,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -383,7 +383,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -393,7 +393,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -402,7 +402,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -460,7 +460,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -484,7 +484,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -514,19 +514,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -609,7 +609,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -617,7 +617,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -653,7 +653,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -719,7 +719,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -737,13 +737,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -800,7 +800,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -822,7 +822,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -860,7 +860,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -898,7 +898,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -962,11 +962,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1004,19 +1004,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/hu/statistics.po b/applications/luci-app-statistics/po/hu/statistics.po index 4288e99821..73936ae6fe 100644 --- a/applications/luci-app-statistics/po/hu/statistics.po +++ b/applications/luci-app-statistics/po/hu/statistics.po @@ -19,7 +19,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Tevékenység (cél)" @@ -27,7 +27,7 @@ msgstr "Tevékenység (cél)" msgid "Add command for reading values" msgstr "Érték olvasására szolgáló parancs hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Szabály hozzáadása" @@ -40,7 +40,7 @@ msgstr "" msgid "Add notification command" msgstr "Értesítési parancs hozzáadása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -84,7 +84,7 @@ msgstr "" msgid "Cache flush interval" msgstr "Gyorsítótár ürítési időköz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Lánc" @@ -118,7 +118,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack bővítmény beállítása" @@ -146,7 +146,7 @@ msgstr "Adatgyűjtési időszak" msgid "Datasets definition file" msgstr "Adatkészlet leíró fálj" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Cél IP tartomány" @@ -195,10 +195,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -208,25 +208,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Bővítmény engedélyezése" @@ -262,7 +262,7 @@ msgstr "Gyorsítótár ürítése ezután:" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +270,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -302,7 +302,7 @@ msgstr "" "amikor bizonyos küszbértékek elérésre kerülnek. A hívást kiváltó értékek a " "meghívott programok szabványos bemenetére lesznek küldve." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,7 +310,7 @@ msgstr "" "Itt addhatók meg különböző feltételek, amelyek alapján a megfigyelt iptables " "szabályok kiválasztásra kerülnek." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +335,7 @@ msgstr "IRQ bővítmény beállítása" msgid "Ignore source addresses" msgstr "Forrás címek figyelmen kívül hagyása" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Bejövő interfész" @@ -355,7 +355,7 @@ msgstr "Megszakítások" msgid "Interval for pings" msgstr "Ping-ek közötti idő" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables bővítmény beállítása" @@ -395,7 +395,7 @@ msgstr "Megengedett kapcsolatok maximális száma" msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Memória bővítmény beállítása" @@ -405,7 +405,7 @@ msgstr "Memória bővítmény beállítása" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -414,7 +414,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,7 +472,7 @@ msgstr "Távoli portok figyelése" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "A szabály neve" @@ -496,7 +496,7 @@ msgstr "Hálózat bővítmény beállítása" msgid "Network plugins" msgstr "Hálózati bővítmények" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Hálózati protokoll" @@ -526,19 +526,19 @@ msgstr "Csak átlag RRA-k létrehozása" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Lehetőségek" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Kimenő interfész" @@ -621,7 +621,7 @@ msgstr "Parancsfájl" msgid "Seconds" msgstr "másodperc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +665,7 @@ msgstr "Socket csoport" msgid "Socket permissions" msgstr "Socket jogosultságok" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Forrás IP tartomány" @@ -735,7 +735,7 @@ msgstr "TTL a hálózati csomagokhoz" msgid "TTL for ping packets" msgstr "TTL a ping csomagokhoz" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Táblázat" @@ -755,13 +755,13 @@ msgstr "" "Az OLSRd bővítmény a összekapcsolt hálózatokról olvas információkat az OLSRd " "txttinfo bővítményén keresztül." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -838,7 +838,7 @@ msgstr "" "Az interface bővítmény forgalmi statisztikákat gyűjt a kiválasztott " "interfészekről." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -863,7 +863,7 @@ msgid "The load plugin collects statistics about the general system load." msgstr "" "A load bővítmény az általános rendszzer terhelésről gyűjt statisztikákat." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "A memória bővítmény a memórahasználatról gyűjt információkat." @@ -903,7 +903,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -945,7 +945,7 @@ msgstr "" "A unixsock bővítmény létrehoz egy unix socket-et melyen keresztül " "kiolvashatók az összegyűjtött adatok egy futó collectd-ből. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1011,11 +1011,11 @@ msgstr "UnixSock bővítmény beállítása" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1053,19 +1053,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "pl. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "pl. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "pl. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 karakter" diff --git a/applications/luci-app-statistics/po/it/statistics.po b/applications/luci-app-statistics/po/it/statistics.po index 1faf714662..b2a5d5134b 100644 --- a/applications/luci-app-statistics/po/it/statistics.po +++ b/applications/luci-app-statistics/po/it/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Azione (destinazione)" @@ -29,7 +29,7 @@ msgstr "Azione (destinazione)" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -42,7 +42,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -148,7 +148,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Abilita questo plugin" @@ -264,7 +264,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,13 +303,13 @@ msgstr "" "valore soglia sia raggiunto. Il valore in questione sarà passato al comando " "incovato come stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -333,7 +333,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -353,7 +353,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -393,7 +393,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -403,7 +403,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -412,7 +412,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -470,7 +470,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -494,7 +494,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -524,19 +524,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -619,7 +619,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -627,7 +627,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -663,7 +663,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -729,7 +729,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabella" @@ -747,13 +747,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -810,7 +810,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -832,7 +832,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -870,7 +870,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -908,7 +908,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -972,11 +972,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1014,19 +1014,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/ja/statistics.po b/applications/luci-app-statistics/po/ja/statistics.po index fcc59142fa..3c40164444 100644 --- a/applications/luci-app-statistics/po/ja/statistics.po +++ b/applications/luci-app-statistics/po/ja/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "アクション(対象)" @@ -29,7 +29,7 @@ msgstr "アクション(対象)" msgid "Add command for reading values" msgstr "値読み取りコマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "マッチング規則の追加" @@ -42,7 +42,7 @@ msgstr "スペースで区切られた複数のホストを追加します。" msgid "Add notification command" msgstr "通知コマンドの追加" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "接続ユーザー数の総計" @@ -86,7 +86,7 @@ msgstr "収集されたデータをキャッシュする" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "チェイン" @@ -119,7 +119,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack プラグイン設定" @@ -147,7 +147,7 @@ msgstr "データの収集間隔" msgid "Datasets definition file" msgstr "データベース定義ファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "対象IPの範囲" @@ -196,10 +196,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -209,25 +209,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "プラグイン設定を有効にする" @@ -263,7 +263,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -271,7 +271,7 @@ msgstr "" msgid "General plugins" msgstr "一般プラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "ログインユーザーごとの分離されたグラフを生成します。" @@ -302,7 +302,7 @@ msgstr "" "定することができます。呼び出しにつながる値は、呼び出されたプログラムの標準入" "力に送られます。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -310,7 +310,7 @@ msgstr "" "ここでは、モニターするiptable規則が選択される様々な基準を設定することができま" "す。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "複数の項目を選択または解除するには、Ctrlキーを押したままにします。" @@ -334,7 +334,7 @@ msgstr "IRQ プラグイン設定" msgid "Ignore source addresses" msgstr "無視するアクセス元アドレス" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "着信インターフェース" @@ -354,7 +354,7 @@ msgstr "割込み" msgid "Interval for pings" msgstr "ping間隔" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables プラグイン設定" @@ -395,7 +395,7 @@ msgstr "許可された最大接続数" msgid "Memory" msgstr "メモリー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "メモリー プラグイン設定" @@ -405,7 +405,7 @@ msgstr "メモリー プラグイン設定" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "設定値以外の全てのインターフェースをモニターする" @@ -414,7 +414,7 @@ msgstr "設定値以外の全てのインターフェースをモニターする msgid "Monitor all local listen ports" msgstr "ローカルの全待ち受けポートをモニターする" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "全てのセンサーをモニターする" @@ -472,7 +472,7 @@ msgstr "リモートのポートをモニターする" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "ルール名" @@ -496,7 +496,7 @@ msgstr "ネットワークプラグイン設定" msgid "Network plugins" msgstr "ネットワークプラグイン" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "ネットワークプロトコル" @@ -529,19 +529,19 @@ msgstr "平均値のRRAsのみ作成する" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN ステータスファイル" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "オプション" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "送信インターフェース" @@ -624,7 +624,7 @@ msgstr "スクリプト" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "センサー一覧" @@ -632,7 +632,7 @@ msgstr "センサー一覧" msgid "Sensors" msgstr "センサー" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "センサー プラグイン設定" @@ -668,7 +668,7 @@ msgstr "ソケット グループ" msgid "Socket permissions" msgstr "ソケット パーミッション" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "ソースIPの範囲" @@ -734,7 +734,7 @@ msgstr "ネットワークパケットのTTL" msgid "TTL for ping packets" msgstr "pingパケットのTTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "テーブル" @@ -752,14 +752,14 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "OpenVPN プラグインは、現在のVPN接続ステータスについての情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -833,7 +833,7 @@ msgstr "" "インターフェースプラグインは、選択したインターフェースのトラフィックの統計情" "報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -860,7 +860,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "負荷プラグインは、システム負荷の統計情報を収集します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "メモリー プラグインは、メモリー使用についての統計を収集します。" @@ -913,7 +913,7 @@ msgstr "" "時的なディレクトリによってメモリー消費量が非常に高くなります。これはデバイス" "を使用不能にする可能性があります!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -960,7 +960,7 @@ msgstr "" "unixsock プラグインは、実行中のcollectd インスタンスから収集データの読み取り" "に使用可能なUNIX ソケットを作成します。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "稼働時間 プラグインは、システムの稼働時間についての統計を収集します。" @@ -1029,11 +1029,11 @@ msgstr "Unixsock プラグイン設定" msgid "Uptime" msgstr "稼働時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "稼働時間プラグイン設定" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1073,19 +1073,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例: br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例: br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例: reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最大16文字" diff --git a/applications/luci-app-statistics/po/ms/statistics.po b/applications/luci-app-statistics/po/ms/statistics.po index 9bef9db2ae..17a529e18c 100644 --- a/applications/luci-app-statistics/po/ms/statistics.po +++ b/applications/luci-app-statistics/po/ms/statistics.po @@ -18,7 +18,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -26,7 +26,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -39,7 +39,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -83,7 +83,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -114,7 +114,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -142,7 +142,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -191,10 +191,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -204,25 +204,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -258,7 +258,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -266,7 +266,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -292,13 +292,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -322,7 +322,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -342,7 +342,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -380,7 +380,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -390,7 +390,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -399,7 +399,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -457,7 +457,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -481,7 +481,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -511,19 +511,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -606,7 +606,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -614,7 +614,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -650,7 +650,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -716,7 +716,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -734,13 +734,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -797,7 +797,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -819,7 +819,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -857,7 +857,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -895,7 +895,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -959,11 +959,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1001,19 +1001,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/no/statistics.po b/applications/luci-app-statistics/po/no/statistics.po index cb2b557d0d..2b4764b2f7 100644 --- a/applications/luci-app-statistics/po/no/statistics.po +++ b/applications/luci-app-statistics/po/no/statistics.po @@ -12,7 +12,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Handling (mål)" @@ -20,7 +20,7 @@ msgstr "Handling (mål)" msgid "Add command for reading values" msgstr "Legg til kommando for lesing av verdier" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Legg til matchende regel" @@ -33,7 +33,7 @@ msgstr "Legg til flere verter adskilt med mellomrom." msgid "Add notification command" msgstr "Legg til varsling kommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -77,7 +77,7 @@ msgstr "Hurtigbufre innsamlede data for" msgid "Cache flush interval" msgstr "Intervall for tømming av hurtigbuffer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Lenke" @@ -111,7 +111,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -139,7 +139,7 @@ msgstr "Datainnsamling intervall" msgid "Datasets definition file" msgstr "Datasett definisjonsfil" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Destinasjon ip område" @@ -188,10 +188,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -201,25 +201,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Aktiver denne plugin" @@ -255,7 +255,7 @@ msgstr "Tømme hurtigbufferen etter" msgid "Forwarding between listen and server addresses" msgstr "Videresending mellom lyttende og server adresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -263,7 +263,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -294,13 +294,13 @@ msgstr "" "visse grenseverdier er blitt nådd. Verdiene som fører til aktivering vil bli " "overført til det påkallede programs stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "Her kan du definere kriterier for reglene som overvåker iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -324,7 +324,7 @@ msgstr "IRQ plugin konfigurasjon" msgid "Ignore source addresses" msgstr "Ignorer kilde adresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Innkommende grensesnitt" @@ -344,7 +344,7 @@ msgstr "Avbrudd" msgid "Interval for pings" msgstr "Intervall ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptable plugin konfigurasjon" @@ -382,7 +382,7 @@ msgstr "Maksimum tillatte tilkoblinger" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -392,7 +392,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -401,7 +401,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Overvåk alle lokale lyttende porter" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -459,7 +459,7 @@ msgstr "Overvåk eksterne porter" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Navnet på regelen" @@ -483,7 +483,7 @@ msgstr "Nettverks plugin konfigurasjon" msgid "Network plugins" msgstr "Nettverks plugin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Nettverks protokoll" @@ -513,19 +513,19 @@ msgstr "Lag kun gjennomsnittlige RRAs" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Alternativer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Utgående grensesnitt" @@ -608,7 +608,7 @@ msgstr "" msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -616,7 +616,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -652,7 +652,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Kilde ip område" @@ -718,7 +718,7 @@ msgstr "TTL for nettverkspakker" msgid "TTL for ping packets" msgstr "TTL for ping pakker" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabell" @@ -736,13 +736,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -813,7 +813,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Grensesnitt plugin samler trafikk statistikk på utvalgte grensesnitt." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -839,7 +839,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Belastning plugin samler statistikk systemets belastning." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -891,7 +891,7 @@ msgstr "" "vil kunne resultere i et svært høyt minneforbruk i den midlertidige " "katalogen (temp). Dette kan gjøre enheten ubrukelig!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -933,7 +933,7 @@ msgstr "" "Unixsock plugin skaper en unix socket som kan brukes til å lese innsamlet " "data fra collectd prosess." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1001,11 +1001,11 @@ msgstr "Unixsock plugin konfigurasjon" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1043,19 +1043,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "f.eks. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "f.eks. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "f.eks. forkast med tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "maks. 16 tegn" diff --git a/applications/luci-app-statistics/po/pl/statistics.po b/applications/luci-app-statistics/po/pl/statistics.po index 0ad820f9d1..34b75e1617 100644 --- a/applications/luci-app-statistics/po/pl/statistics.po +++ b/applications/luci-app-statistics/po/pl/statistics.po @@ -22,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Akcja (cel)" @@ -30,7 +30,7 @@ msgstr "Akcja (cel)" msgid "Add command for reading values" msgstr "Dodaj polecenie do odczytywania wartości" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Dodaj pasującą regułę" @@ -43,7 +43,7 @@ msgstr "Dodaj wiele hostów rozdzielonych spacjami." msgid "Add notification command" msgstr "Dodaj komendę powiadamiającą" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -87,7 +87,7 @@ msgstr "Ciasteczka zbierane dla" msgid "Cache flush interval" msgstr "Odstępy czyszczenia cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Łańcuch" @@ -121,7 +121,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Konfiguracja wtyczki Conntrack" @@ -149,7 +149,7 @@ msgstr "Odstępy zbierania danych" msgid "Datasets definition file" msgstr "Zdefiniowany plik ustawień" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Zakres docelowych adresów IP" @@ -198,10 +198,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -211,25 +211,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Włącz tę wtyczkę" @@ -265,7 +265,7 @@ msgstr "Opróżnić cache po" msgid "Forwarding between listen and server addresses" msgstr "Przekazać przez słuchacza na adres serwera" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +304,7 @@ msgstr "" "collectd, kiedy zostaną osiągnięte konkretne wartości progowe. Wartości " "powodujące włączenie będą wysyłane do programów przez stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +312,7 @@ msgstr "" "Tutaj można zdefiniować różne kryteria według których wybierane są " "monitorowane reguły iptables." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +336,7 @@ msgstr "Konfiguracja wtyczki IRQ" msgid "Ignore source addresses" msgstr "Ignoruj adresy źródłowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interfejs przychodzący" @@ -356,7 +356,7 @@ msgstr "Przerwania" msgid "Interval for pings" msgstr "Odstępy dla pingów" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Konfiguracja wtyczki iptables" @@ -396,7 +396,7 @@ msgstr "Maksymalna ilość połączeń" msgid "Memory" msgstr "Pamięć" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Konfiguracja wtyczki Pamięć" @@ -406,7 +406,7 @@ msgstr "Konfiguracja wtyczki Pamięć" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Monitoruj wszystko oprócz podanych" @@ -415,7 +415,7 @@ msgstr "Monitoruj wszystko oprócz podanych" msgid "Monitor all local listen ports" msgstr "Monitoruj wszystkie lokalne otwarte porty" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -473,7 +473,7 @@ msgstr "Monitoruj porty zdalne" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nazwa tej reguły" @@ -497,7 +497,7 @@ msgstr "Konfiguracja wtyczki Sieć" msgid "Network plugins" msgstr "Wtyczki sieciowe" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protokoły sieciowe" @@ -527,19 +527,19 @@ msgstr "Twórz tylko średnie archiwa RRA" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Opcje" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interfejs wychodzący" @@ -622,7 +622,7 @@ msgstr "Skrypt" msgid "Seconds" msgstr "Sekundy" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -630,7 +630,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -666,7 +666,7 @@ msgstr "Gniazdo Grupy" msgid "Socket permissions" msgstr "Uprawnienia Gniazda" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Zakres źródłowych adresów ip" @@ -733,7 +733,7 @@ msgstr "TTL dla pakietów sieciowych" msgid "TTL for ping packets" msgstr "TTL dla pakietów ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -753,13 +753,13 @@ msgstr "" "Wtyczka OLSRd odczytuje informacje o sieciach mesh z wtyczki txtinfo dla " "OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -830,7 +830,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Wtyczka \"interface\" zbiera statystyki z wybranych interfejsów." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -858,7 +858,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Wtyczka \"load\" zbiera statystyki o ogólnych obciążeniu systemu." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "Wtyczka \"memory\" zbiera statystyki dotyczące wykorzystania pamięci." @@ -911,7 +911,7 @@ msgstr "" "katalogu tymczasowym. Może to sprawić, że urządzenie nie będzie nadawało się " "do użytku! </strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -953,7 +953,7 @@ msgstr "" "Wtyczka unixsock tworzy socket unix, który może być używany do odczytu " "danych zebranych z bieżącej instancji collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1019,11 +1019,11 @@ msgstr "Konfiguracja wtyczki UnixSock" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1061,19 +1061,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "np. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "np. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "np. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 znaków" diff --git a/applications/luci-app-statistics/po/pt-br/statistics.po b/applications/luci-app-statistics/po/pt-br/statistics.po index b5e5d5a3c5..9173702cdb 100644 --- a/applications/luci-app-statistics/po/pt-br/statistics.po +++ b/applications/luci-app-statistics/po/pt-br/statistics.po @@ -21,7 +21,7 @@ msgstr "Nobreak APC" msgid "APCUPS Plugin Configuration" msgstr "Configuração do Módulo APCUPS" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Ação (destino)" @@ -29,7 +29,7 @@ msgstr "Ação (destino)" msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Adicionar regra" @@ -42,7 +42,7 @@ msgstr "Adicione múltiplos equipamentos separados por espaço." msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "Numero agregado de usuários conectados" @@ -86,7 +86,7 @@ msgstr "Cache dos dados coletados" msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadeia" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Configuração do Plugin do Conntrack" @@ -148,7 +148,7 @@ msgstr "Intervalo da coleta de dados" msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Faixa IP de destino" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Habilitar este plugin" @@ -265,7 +265,7 @@ msgid "Forwarding between listen and server addresses" msgstr "" "Encaminhamento entre o endereço de escuta e os endereços dos servidores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "Obter estatísticas sobre a compressão" @@ -273,7 +273,7 @@ msgstr "Obter estatísticas sobre a compressão" msgid "General plugins" msgstr "Plugins Gerais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Gerar um gráfico separado para cada usuário conectado" @@ -304,7 +304,7 @@ msgstr "" "collectd quando determinados valores limite forem atingidos. Os valores " "passados ao comando serão enviados para o stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +312,7 @@ msgstr "" "Aqui você pode definir diversos critérios para as regras iptables " "selecionadas serem monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" "Segure o Ctrl para selecionar múltiplos itens ou para retirar entradas. " @@ -337,7 +337,7 @@ msgstr "Configuração do plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface de entrada" @@ -357,7 +357,7 @@ msgstr "Interrupções" msgid "Interval for pings" msgstr "Intervalo para pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" @@ -399,7 +399,7 @@ msgstr "Máximo de conexões permitidas" msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin da Memória" @@ -409,7 +409,7 @@ msgstr "Configuração do Plugin da Memória" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Monitore tudo exceto se especificado" @@ -418,7 +418,7 @@ msgstr "Monitore tudo exceto se especificado" msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Monitorar todas os sensores" @@ -476,7 +476,7 @@ msgstr "Monitorar portas remotas" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nome da regra" @@ -500,7 +500,7 @@ msgstr "Configuração do plugin Rede" msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de rede" @@ -533,19 +533,19 @@ msgstr "Somente criar RRAs de média" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "Configuração do Plugin do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Arquivos de estado do OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Opções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface de saída" @@ -628,7 +628,7 @@ msgstr "Script" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "Lista de sensores" @@ -636,7 +636,7 @@ msgstr "Lista de sensores" msgid "Sensors" msgstr "Sensores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Configuração do Plugin de Sensores" @@ -672,7 +672,7 @@ msgstr "Grupo do socket" msgid "Socket permissions" msgstr "Permissões do socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Faixa de IP de origem" @@ -738,7 +738,7 @@ msgstr "TTL para os pacotes de rede" msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -758,14 +758,14 @@ msgstr "" "O plugin OLSRd lê informações sobre redes em malha (mesh) a partir do plugin " "txtinfo do OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "O plugin OpenVPN reúne informações sobre o status atual da conexão VPN." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -841,7 +841,7 @@ msgstr "" "O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces " "selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -870,7 +870,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "O plugin de carga coleta estatísticas gerais sobre a carga do sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "O plugin de memória coleta estatísticas sobre o uso da memória." @@ -923,7 +923,7 @@ msgstr "" "em um valor muito elevado no consumo de memória no diretório temporário. " "Isso pode tornar o equipamento inutilizável!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -975,7 +975,7 @@ msgstr "" "O plugin unixsock cria um socket unix, que pode ser usado para ler os dados " "coletados a partir de uma collectd em execução." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" "O plugin de tempo de atividade coleta estatísticas sobre o tempo de " @@ -1048,11 +1048,11 @@ msgstr "Configuração do plugin Unixsock" msgid "Uptime" msgstr "Tempo de atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "Configuração do Plugin de Tempo de Atividade" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "Use um esquema de nomeação melhorado" @@ -1092,19 +1092,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "ex: br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "ex: br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "ex: rejeitar-com tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "máx. 16 caracteres" diff --git a/applications/luci-app-statistics/po/pt/statistics.po b/applications/luci-app-statistics/po/pt/statistics.po index dc033863ce..79cb9abae8 100644 --- a/applications/luci-app-statistics/po/pt/statistics.po +++ b/applications/luci-app-statistics/po/pt/statistics.po @@ -21,7 +21,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Ação (destino)" @@ -29,7 +29,7 @@ msgstr "Ação (destino)" msgid "Add command for reading values" msgstr "Adicionar comando para leitura de valores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Adicionar regra" @@ -42,7 +42,7 @@ msgstr "Adicionar hosts múltiplos separados por espaço." msgid "Add notification command" msgstr "Adicionar o comando de notificação" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -86,7 +86,7 @@ msgstr "Cache dos dados coletados" msgid "Cache flush interval" msgstr "Intervalo de limpeza do cache" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Cadeia" @@ -120,7 +120,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -148,7 +148,7 @@ msgstr "Intervalo da coleta de dados" msgid "Datasets definition file" msgstr "Arquivo com a definição de dados" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "IP de destino" @@ -197,10 +197,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -210,25 +210,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Habilitar este plugin" @@ -264,7 +264,7 @@ msgstr "Limpar cache após" msgid "Forwarding between listen and server addresses" msgstr "Transmissão entre o endereço de escuta e dos servidores" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -272,7 +272,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -303,7 +303,7 @@ msgstr "" "quando determinados valores limite forem atingidos. Os valores passados ao " "comando serão enviados para o stdin." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -311,7 +311,7 @@ msgstr "" "Aqui você pode definir diversos critérios para as regras iptables " "selecionadas serem monitoradas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -335,7 +335,7 @@ msgstr "Configuração do plugin IRQ" msgid "Ignore source addresses" msgstr "Ignorar endereços de origem" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Interface de entrada" @@ -355,7 +355,7 @@ msgstr "Interrupções" msgid "Interval for pings" msgstr "Intervalo dos pings" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Configuração do plugin Iptables" @@ -395,7 +395,7 @@ msgstr "Máximo de conexões permitidas" msgid "Memory" msgstr "Memória" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Configuração do Plugin de Memória" @@ -405,7 +405,7 @@ msgstr "Configuração do Plugin de Memória" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Monitorizar tudo excepto os especificados" @@ -414,7 +414,7 @@ msgstr "Monitorizar tudo excepto os especificados" msgid "Monitor all local listen ports" msgstr "Monitorar todas as portas locais" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -472,7 +472,7 @@ msgstr "Monitorar portas remotas" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Nome da regra" @@ -496,7 +496,7 @@ msgstr "Configuração do plugin Rede" msgid "Network plugins" msgstr "Plugins de rede" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Protocolo de rede" @@ -526,19 +526,19 @@ msgstr "Somente criar RRAs de média" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Opções" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Interface de saída" @@ -621,7 +621,7 @@ msgstr "" msgid "Seconds" msgstr "Segundos" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -629,7 +629,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -665,7 +665,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "IP de origem" @@ -731,7 +731,7 @@ msgstr "TTL para os pacotes de rede" msgid "TTL for ping packets" msgstr "TTL para os pacotes do ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabela" @@ -749,13 +749,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -829,7 +829,7 @@ msgstr "" "O plugin interface plugin coleta estatísticas sobre o tráfego das interfaces " "selecionadas." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -856,7 +856,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "O plugin carga coleta estatísticas gerais sobre a carga do sistema." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -909,7 +909,7 @@ msgstr "" "em um valor muito elevado no consumo de memória no diretório temporário. " "Isso pode tornar o equipamento inutilizável!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,7 +951,7 @@ msgstr "" "O plugin unixsock cria um socket unix, que pode ser usado para ler os dados " "coletados a partir de uma instância do collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1019,11 +1019,11 @@ msgstr "Configuração do plugin Unixsock" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1061,19 +1061,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "ex. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "ex. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "ex. rejeitar-com tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 caract." diff --git a/applications/luci-app-statistics/po/ro/statistics.po b/applications/luci-app-statistics/po/ro/statistics.po index 371e887ac1..c2882d49e4 100644 --- a/applications/luci-app-statistics/po/ro/statistics.po +++ b/applications/luci-app-statistics/po/ro/statistics.po @@ -22,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -30,7 +30,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -87,7 +87,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -121,7 +121,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -149,7 +149,7 @@ msgstr "Intervalul de colectare date" msgid "Datasets definition file" msgstr "Fisierul de definitii dataseturi" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -198,10 +198,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -211,25 +211,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -265,7 +265,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -299,13 +299,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -329,7 +329,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -349,7 +349,7 @@ msgstr "Intreruperi" msgid "Interval for pings" msgstr "Interval pentru ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -387,7 +387,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -397,7 +397,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -406,7 +406,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -464,7 +464,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -488,7 +488,7 @@ msgstr "" msgid "Network plugins" msgstr "Pluginuri de retea" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -518,19 +518,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -613,7 +613,7 @@ msgstr "" msgid "Seconds" msgstr "Secunde" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -621,7 +621,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -657,7 +657,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -723,7 +723,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -741,13 +741,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -806,7 +806,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -828,7 +828,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -866,7 +866,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -904,7 +904,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -968,11 +968,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1010,19 +1010,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/ru/statistics.po b/applications/luci-app-statistics/po/ru/statistics.po index 6e7f1b55fb..7337c0bcd1 100644 --- a/applications/luci-app-statistics/po/ru/statistics.po +++ b/applications/luci-app-statistics/po/ru/statistics.po @@ -23,7 +23,7 @@ msgstr "APC ИБП" msgid "APCUPS Plugin Configuration" msgstr "Настройка плагина «APCUPS»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Действие (цель)" @@ -31,7 +31,7 @@ msgstr "Действие (цель)" msgid "Add command for reading values" msgstr "Добавить команду для чтения значений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Добавить правило выборки" @@ -44,7 +44,7 @@ msgstr "Добавить несколько хостов, разделённых msgid "Add notification command" msgstr "Добавить команду уведомления" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "Общее число подключенных пользователей" @@ -88,7 +88,7 @@ msgstr "Кэшировать собранную статистику в тече msgid "Cache flush interval" msgstr "Интервал сброса кэша" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Цепочка" @@ -121,7 +121,7 @@ msgstr "" msgid "Conntrack" msgstr "Отслеживание подключений (Conntrack)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Настройка плагина «Conntrack»" @@ -149,7 +149,7 @@ msgstr "Интервал сбора данных" msgid "Datasets definition file" msgstr "Файл с определением набора данных" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Диапазон IP-адресов назначения" @@ -198,10 +198,10 @@ msgid "Enable" msgstr "Включить" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -211,25 +211,25 @@ msgstr "Включить" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Включить этот плагин" @@ -265,7 +265,7 @@ msgstr "Сбросить кэш после" msgid "Forwarding between listen and server addresses" msgstr "Перенаправление между локальным адресом и адресом сервера" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "Сбор статистики сжатия" @@ -273,7 +273,7 @@ msgstr "Сбор статистики сжатия" msgid "General plugins" msgstr "Основные плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Создать отдельный график для каждого авторизованного пользователя" @@ -304,7 +304,7 @@ msgstr "" "значения достигнут определенного порога. Значения будут переданы на " "стандартный ввод вызванным программам." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +312,7 @@ msgstr "" "Здесь вы можете указать различные критерии, по которым будут выбраны правила " "для сбора статистики." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" "Удерживая нажатой клавишу Ctrl, выберите несколько элементов или отмените " @@ -338,7 +338,7 @@ msgstr "Настройка плагина «IRQ»" msgid "Ignore source addresses" msgstr "Игнорировать исходящие адреса" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Входящий интерфейс" @@ -358,7 +358,7 @@ msgstr "Прерывания" msgid "Interval for pings" msgstr "Интервал для ping-запросов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Настройка плагина «Iptables»" @@ -400,7 +400,7 @@ msgstr "Максимум разрешенных соединений" msgid "Memory" msgstr "Оперативная память (RAM)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Настройка плагина «Оперативная память (RAM)»" @@ -410,7 +410,7 @@ msgstr "Настройка плагина «Оперативная память #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Собирать статистику со всех кроме указанных" @@ -419,7 +419,7 @@ msgstr "Собирать статистику со всех кроме указ msgid "Monitor all local listen ports" msgstr "Собирать статистику со всех портов для входящих соединений" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Мониторить все сенсоры" @@ -477,7 +477,7 @@ msgstr "Мониторить удаленные порты" msgid "Name" msgstr "Имя" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Имя правила" @@ -501,7 +501,7 @@ msgstr "Настройка плагина «Сеть»" msgid "Network plugins" msgstr "Сетевые плагины" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Сетевой протокол" @@ -533,19 +533,19 @@ msgstr "Создавать только средние RRA" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "Настройка плагина «OpenVPN»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Файлы состояния службы OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Опции" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Исходящий интерфейс" @@ -631,7 +631,7 @@ msgstr "Скрипт" msgid "Seconds" msgstr "Секунд(ы)" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "Список сенсоров" @@ -639,7 +639,7 @@ msgstr "Список сенсоров" msgid "Sensors" msgstr "Сенсоры" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Настройка плагина «Сенсоры»" @@ -675,7 +675,7 @@ msgstr "Группа сокета" msgid "Socket permissions" msgstr "Права доступа сокета" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Диапазон IP-адресов источника" @@ -741,7 +741,7 @@ msgstr "TTL для сетевых пакетов" msgid "TTL for ping packets" msgstr "TTL для ping-пакетов" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Таблица" @@ -761,14 +761,14 @@ msgid "" msgstr "" "Плагин «OLSRd» считывает информацию о узловых сетях с плагина txtinfo OLSRd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" "Плагин «OpenVPN» собирает информацию о текущем состоянии VPN подключения." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -840,7 +840,7 @@ msgid "" msgstr "" "Плагин «Интерфейсы» собирает статистику на выбранных сетевых интерфейсах." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -867,7 +867,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Плагин «Загрузка системы» собирает статистику о загрузке системы." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" "Плагин «Оперативная память (RAM)» собирает статистику об использовании " @@ -920,7 +920,7 @@ msgstr "" "параметров может привезти к высокому потреблению памяти устройства. Это " "может привести к зависанию устройства!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -970,7 +970,7 @@ msgstr "" "Плагин «UnixSock» создает Unix-сокет, который может быть использован для " "получения статистики от работающего сервиса collectd." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "Плагин «Uptime» собирает статистику о времени работы системы." @@ -1037,11 +1037,11 @@ msgstr "Настройка плагина «UnixSock»" msgid "Uptime" msgstr "Время работы" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "Настройка плагина «Uptime»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "Использовать улучшенную схему наименования" @@ -1081,19 +1081,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "Настройка плагина «cUrl»" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "напр. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "напр. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "напр. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "не более 16 символов" diff --git a/applications/luci-app-statistics/po/sk/statistics.po b/applications/luci-app-statistics/po/sk/statistics.po index 3b324d53e6..2381b07f90 100644 --- a/applications/luci-app-statistics/po/sk/statistics.po +++ b/applications/luci-app-statistics/po/sk/statistics.po @@ -16,7 +16,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -24,7 +24,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -37,7 +37,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -81,7 +81,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -112,7 +112,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -189,10 +189,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -202,25 +202,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -256,7 +256,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -264,7 +264,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -290,13 +290,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -320,7 +320,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -340,7 +340,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -378,7 +378,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -388,7 +388,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -397,7 +397,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -455,7 +455,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -479,7 +479,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -509,19 +509,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -604,7 +604,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -612,7 +612,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -648,7 +648,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -714,7 +714,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -732,13 +732,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -795,7 +795,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -817,7 +817,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -855,7 +855,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -893,7 +893,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -957,11 +957,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -999,19 +999,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/sv/statistics.po b/applications/luci-app-statistics/po/sv/statistics.po index e8c70e7906..703dcd30aa 100644 --- a/applications/luci-app-statistics/po/sv/statistics.po +++ b/applications/luci-app-statistics/po/sv/statistics.po @@ -17,7 +17,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Add command for reading values" msgstr "Lägg till kommando för läsning av värden" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Lägg till en matchande regel" @@ -38,7 +38,7 @@ msgstr "Lägg till flertalet värdar separerade av mellanslag." msgid "Add notification command" msgstr "Lägg till aviseringskommando" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Kedja" @@ -116,7 +116,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -144,7 +144,7 @@ msgstr "Intervall för insamling av data" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -193,10 +193,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -206,25 +206,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Aktivera det här insticksprogrammet" @@ -260,7 +260,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "Vidarebefordring mellan lyssning och server-adressen" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -268,7 +268,7 @@ msgstr "" msgid "General plugins" msgstr "Generall insticksprogram" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "Generera en separat graf för varje loggade användare" @@ -294,13 +294,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" "Håll ner Ctrl för att välja flera poster eller för att inte välja poster." @@ -325,7 +325,7 @@ msgstr "Konfiguration av insticksprogrammet IRQ" msgid "Ignore source addresses" msgstr "Ignorera källadresser" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Inkommande gränssnitt" @@ -345,7 +345,7 @@ msgstr "Avbrott" msgid "Interval for pings" msgstr "Intervaller för pingningar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Iptabels" @@ -383,7 +383,7 @@ msgstr "Maximalt tillåtna anslutningar" msgid "Memory" msgstr "Minne" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Memory" @@ -393,7 +393,7 @@ msgstr "Konfiguration av insticksprogrammet Memory" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "Övervaka alla förutom specificerat" @@ -402,7 +402,7 @@ msgstr "Övervaka alla förutom specificerat" msgid "Monitor all local listen ports" msgstr "Övervaka alla lokala lyssningsportar" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "Övervaka alla sensorer" @@ -460,7 +460,7 @@ msgstr "Övervaka fjärrportar" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Regelns namn" @@ -484,7 +484,7 @@ msgstr "" msgid "Network plugins" msgstr "Insticksprogram för nätverket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Nätverksprotokoll" @@ -514,19 +514,19 @@ msgstr "" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "Statusfiler för OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Alternativ" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Utgående gränssnitt" @@ -609,7 +609,7 @@ msgstr "Skript" msgid "Seconds" msgstr "Sekunder" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -617,7 +617,7 @@ msgstr "" msgid "Sensors" msgstr "Sensorer" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -653,7 +653,7 @@ msgstr "Socketgrupp" msgid "Socket permissions" msgstr "Tillstånd för socket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -719,7 +719,7 @@ msgstr "TTL för nätverkspaket" msgid "TTL for ping packets" msgstr "TTL för ping-paket" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Tabell" @@ -737,13 +737,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -800,7 +800,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -822,7 +822,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -860,7 +860,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -898,7 +898,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -962,11 +962,11 @@ msgstr "Konfiguration av insticksprogrammet UnixSock" msgid "Uptime" msgstr "Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "Konfiguration av insticksprogrammet Upptid" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1006,19 +1006,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "t.ex br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "t.ex br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "t.ex reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "maxmialt 16 tecken" diff --git a/applications/luci-app-statistics/po/templates/statistics.pot b/applications/luci-app-statistics/po/templates/statistics.pot index 625e31d9ba..21cc304a68 100644 --- a/applications/luci-app-statistics/po/templates/statistics.pot +++ b/applications/luci-app-statistics/po/templates/statistics.pot @@ -9,7 +9,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -17,7 +17,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -30,7 +30,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -74,7 +74,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -105,7 +105,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -182,10 +182,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -195,25 +195,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -249,7 +249,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -283,13 +283,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -313,7 +313,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -333,7 +333,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -371,7 +371,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -381,7 +381,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -390,7 +390,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -448,7 +448,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -472,7 +472,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -502,19 +502,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -597,7 +597,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -641,7 +641,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -707,7 +707,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -725,13 +725,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -788,7 +788,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -810,7 +810,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -848,7 +848,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -886,7 +886,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -950,11 +950,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -992,19 +992,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/tr/statistics.po b/applications/luci-app-statistics/po/tr/statistics.po index 26aba8e77f..97bc1aaeb6 100644 --- a/applications/luci-app-statistics/po/tr/statistics.po +++ b/applications/luci-app-statistics/po/tr/statistics.po @@ -17,7 +17,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -25,7 +25,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -38,7 +38,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -82,7 +82,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -113,7 +113,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -141,7 +141,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -190,10 +190,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -203,25 +203,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -257,7 +257,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -265,7 +265,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -291,13 +291,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -321,7 +321,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -341,7 +341,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -379,7 +379,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -389,7 +389,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -398,7 +398,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -456,7 +456,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -480,7 +480,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "" @@ -510,19 +510,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -605,7 +605,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -613,7 +613,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -649,7 +649,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -715,7 +715,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -733,13 +733,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -796,7 +796,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -818,7 +818,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -856,7 +856,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -894,7 +894,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -958,11 +958,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1000,19 +1000,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/uk/statistics.po b/applications/luci-app-statistics/po/uk/statistics.po index f9cadc12c5..0eaa1f570b 100644 --- a/applications/luci-app-statistics/po/uk/statistics.po +++ b/applications/luci-app-statistics/po/uk/statistics.po @@ -22,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "" @@ -30,7 +30,7 @@ msgstr "" msgid "Add command for reading values" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "" @@ -43,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -87,7 +87,7 @@ msgstr "" msgid "Cache flush interval" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "" @@ -118,7 +118,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -146,7 +146,7 @@ msgstr "" msgid "Datasets definition file" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "" @@ -195,10 +195,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -208,25 +208,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "" @@ -262,7 +262,7 @@ msgstr "" msgid "Forwarding between listen and server addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -270,7 +270,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -296,13 +296,13 @@ msgid "" "will be fed to the the called programs stdin." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -326,7 +326,7 @@ msgstr "" msgid "Ignore source addresses" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "" @@ -346,7 +346,7 @@ msgstr "" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "" @@ -384,7 +384,7 @@ msgstr "" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -394,7 +394,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -403,7 +403,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -461,7 +461,7 @@ msgstr "" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "" @@ -485,7 +485,7 @@ msgstr "" msgid "Network plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Мережевий протокол" @@ -515,19 +515,19 @@ msgstr "" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "" @@ -610,7 +610,7 @@ msgstr "" msgid "Seconds" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -618,7 +618,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -654,7 +654,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "" @@ -720,7 +720,7 @@ msgstr "" msgid "TTL for ping packets" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "" @@ -738,13 +738,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -801,7 +801,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -823,7 +823,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -861,7 +861,7 @@ msgid "" "directory. This can render the device unusable!</strong>" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -899,7 +899,7 @@ msgid "" "collected data from a running collectd instance." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -963,11 +963,11 @@ msgstr "" msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1005,19 +1005,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "" diff --git a/applications/luci-app-statistics/po/vi/statistics.po b/applications/luci-app-statistics/po/vi/statistics.po index ccafdf7398..e575a10a29 100644 --- a/applications/luci-app-statistics/po/vi/statistics.po +++ b/applications/luci-app-statistics/po/vi/statistics.po @@ -22,7 +22,7 @@ msgstr "" msgid "APCUPS Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "Action (target)" @@ -30,7 +30,7 @@ msgstr "Action (target)" msgid "Add command for reading values" msgstr "Thêm lệnh cho giá trị đang đọc" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "Thêm matching rule" @@ -43,7 +43,7 @@ msgstr "" msgid "Add notification command" msgstr "Thêm lệnh thông báo" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "" @@ -87,7 +87,7 @@ msgstr "Cache collected data cho" msgid "Cache flush interval" msgstr "Cache flush interval" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "Chain" @@ -121,7 +121,7 @@ msgstr "" msgid "Conntrack" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "" @@ -149,7 +149,7 @@ msgstr "Khoảng thu thập dữ liệu" msgid "Datasets definition file" msgstr "Tập tin định nghĩa cơ sở dữ liệu" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "Điểm đến ip range" @@ -198,10 +198,10 @@ msgid "Enable" msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -211,25 +211,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "Kích hoạt plugin này" @@ -265,7 +265,7 @@ msgstr "Flush cache sau khi" msgid "Forwarding between listen and server addresses" msgstr "chuyển tiếp giữa listen và địa chỉ server" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "" @@ -273,7 +273,7 @@ msgstr "" msgid "General plugins" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "" @@ -304,7 +304,7 @@ msgstr "" "khi những giá trị threshold nhất định được tiếp cận. Những giá trị dẫn tới " "invocation sẽ được feed tới một chương trình gọi là stdin" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." @@ -312,7 +312,7 @@ msgstr "" "Ở đây bạn có thể định nghĩa những tiêu chuẩn khác nhau để monitor iptables " "rules được chọn." -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "" @@ -336,7 +336,7 @@ msgstr "Cấu hình IRQ Plugin " msgid "Ignore source addresses" msgstr "Lờ đi những địa chỉ nguồn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "Giao diện đang tới" @@ -356,7 +356,7 @@ msgstr "Cắt ngang" msgid "Interval for pings" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "cấu hình Iptables Plugin " @@ -394,7 +394,7 @@ msgstr "Tối đã kết nối cho phép" msgid "Memory" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "" @@ -404,7 +404,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "" @@ -413,7 +413,7 @@ msgstr "" msgid "Monitor all local listen ports" msgstr "Monitor tất cả local listen port" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "" @@ -471,7 +471,7 @@ msgstr "Monitor remote ports" msgid "Name" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "Tên của rule" @@ -495,7 +495,7 @@ msgstr "Cấu hình network plugin" msgid "Network plugins" msgstr "Network plugins" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network protocol" @@ -525,19 +525,19 @@ msgstr "Chỉ tạo trung bình RRAs" msgid "OpenVPN" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "Tùy chọn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "Giao diện ra ngoài" @@ -620,7 +620,7 @@ msgstr "" msgid "Seconds" msgstr "Giây" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "" @@ -628,7 +628,7 @@ msgstr "" msgid "Sensors" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "" @@ -664,7 +664,7 @@ msgstr "" msgid "Socket permissions" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "Nguồn ip range" @@ -730,7 +730,7 @@ msgstr "TTL cho gói mạng" msgid "TTL for ping packets" msgstr "TTl cho gói ping" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "Table" @@ -748,13 +748,13 @@ msgid "" "plugin of OLSRd." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -828,7 +828,7 @@ msgstr "" "Giao diện plugin thu thập những thống kê lưu thông trên những giao diện được " "chọn" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -856,7 +856,7 @@ msgstr "" msgid "The load plugin collects statistics about the general system load." msgstr "Plugin tải thu thập thông kê về tổng quát system load" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "" @@ -909,7 +909,7 @@ msgstr "" "nhớ rất nhiều trong một thư mục tạm thời. Điều này có thể làm thiết bị không " "sử dụng được</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -951,7 +951,7 @@ msgstr "" "Unixsock plugin tạo một unix socket mà có thể dùng để đọc dữ liệu thu thập " "từ một collectd instance đang vận hành. " -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "" @@ -1016,11 +1016,11 @@ msgstr "Cấu hình Unixsock Plugin " msgid "Uptime" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "" @@ -1058,19 +1058,19 @@ msgstr "" msgid "cUrl Plugin Configuration" msgstr "" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "e.g. br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "e.g. br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "e.g. reject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "max. 16 chars" diff --git a/applications/luci-app-statistics/po/zh-cn/statistics.po b/applications/luci-app-statistics/po/zh-cn/statistics.po index 7bbd2d8b00..5d98abd3fe 100644 --- a/applications/luci-app-statistics/po/zh-cn/statistics.po +++ b/applications/luci-app-statistics/po/zh-cn/statistics.po @@ -1,19 +1,19 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2017-10-29 15:50+0800\n" +"PO-Revision-Date: 2019-01-03 21:39+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 @@ -24,7 +24,7 @@ msgstr "APC UPS" msgid "APCUPS Plugin Configuration" msgstr "APCUPS 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "动作(目标)" @@ -32,7 +32,7 @@ msgstr "动作(目标)" msgid "Add command for reading values" msgstr "添加命令读取数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "新增匹配规则" @@ -45,7 +45,7 @@ msgstr "使用空格分隔多个主机" msgid "Add notification command" msgstr "新增通知命令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "连接用户总数" @@ -89,7 +89,7 @@ msgstr "收集缓存数据" msgid "Cache flush interval" msgstr "缓存清空间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "链" @@ -122,7 +122,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 插件配置" @@ -150,7 +150,7 @@ msgstr "数据收集间隙" msgid "Datasets definition file" msgstr "数据集定义文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "目标 IP 区间" @@ -196,13 +196,13 @@ msgstr "留空 = 监控所有" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "启用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,25 +212,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "启用该插件" @@ -266,7 +266,7 @@ msgstr "清空缓存后" msgid "Forwarding between listen and server addresses" msgstr "转发监听服务器和应用服务器之间数据" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "收集压缩统计信息" @@ -274,7 +274,7 @@ msgstr "收集压缩统计信息" msgid "General plugins" msgstr "通用插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "为每个记录的用户生成一个单独的图表" @@ -304,13 +304,13 @@ msgstr "" "在这里,您可以定义外部命令,当 Collectd 达到一定阈值时,将启动命令。阀值将会" "作为命令的标准输入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "在这里,您可以定义各种监控 iptables 规则临界值。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "按住 Ctrl 键来选择或取消选择多个项目。" @@ -334,7 +334,7 @@ msgstr "IRQ 插件配置" msgid "Ignore source addresses" msgstr "忽略源地址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "入接口" @@ -354,7 +354,7 @@ msgstr "中断" msgid "Interval for pings" msgstr "ping 间隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables 插件配置" @@ -392,7 +392,7 @@ msgstr "最大允许连接数" msgid "Memory" msgstr "内存" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "内存插件配置" @@ -402,7 +402,7 @@ msgstr "内存插件配置" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "监测所有(除特别注明外)" @@ -411,7 +411,7 @@ msgstr "监测所有(除特别注明外)" msgid "Monitor all local listen ports" msgstr "监测所有本地监听端口" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "监控所有传感器" @@ -467,9 +467,9 @@ msgstr "监测远程端口" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "名称" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "规则名" @@ -493,7 +493,7 @@ msgstr "Network 插件配置" msgid "Network plugins" msgstr "Network 插件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network 协议" @@ -525,19 +525,19 @@ msgstr "仅创建平均 RRAs" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN 状态文件" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "选项" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "出接口" @@ -620,7 +620,7 @@ msgstr "脚本" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "传感器列表" @@ -628,7 +628,7 @@ msgstr "传感器列表" msgid "Sensors" msgstr "传感器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Sensors 插件配置" @@ -664,7 +664,7 @@ msgstr "套接字组" msgid "Socket permissions" msgstr "套接字权限" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "源 IP 区间" @@ -730,7 +730,7 @@ msgstr "网络包 TTL" msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "表" @@ -748,13 +748,13 @@ msgid "" "plugin of OLSRd." msgstr "OLSRd 插件通过 txtinfo 获取 meshed 网络信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "OpenVPN 插件可以获取 VPN 连接当前状态" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -815,7 +815,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Interface 插件用于收集选定接口的数据包的统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -839,7 +839,7 @@ msgstr "iwinfo 插件收集无线信号强度、噪声和质量的统计信息 msgid "The load plugin collects statistics about the general system load." msgstr "load 插件收集常规系统加载统计信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "memory 插件收集关于内存使用情况的统计信息。" @@ -883,7 +883,7 @@ msgstr "" "><strong>警告:错误的参数设置,将导致非常高的临时内存消耗。这可能会使设备无法" "使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -926,7 +926,7 @@ msgid "" "collected data from a running collectd instance." msgstr "unixsock 插件创建一个 unix 套接字可用于读取 Collectd 实例的收集信息。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "uptime 插件收集系统启动时间的统计信息。" @@ -976,7 +976,7 @@ msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" #: 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" @@ -990,11 +990,11 @@ msgstr "Unixsock 插件配置" msgid "Uptime" msgstr "运行时间" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "运行时间插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "使用更高级的命名规则" @@ -1026,25 +1026,25 @@ msgstr "您可以安装更多的 collectd-mod-* 插件以获得更多的统计 #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl 插件配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例如:br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例如:br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例如:eject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最长 16 个字符" diff --git a/applications/luci-app-statistics/po/zh-tw/statistics.po b/applications/luci-app-statistics/po/zh-tw/statistics.po index 634de0118c..1d2cde7f5f 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -1,19 +1,19 @@ # -# Yangfl <mmyangfl@gmail.com>, 2017. +# Yangfl <mmyangfl@gmail.com>, 2017-2019. # msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2017-10-29 15:50+0800\n" +"PO-Revision-Date: 2019-01-03 21:39+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:26 @@ -24,7 +24,7 @@ msgstr "APC UPS" msgid "APCUPS Plugin Configuration" msgstr "APCUPS 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:71 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:70 msgid "Action (target)" msgstr "動作(目標)" @@ -32,7 +32,7 @@ msgstr "動作(目標)" msgid "Add command for reading values" msgstr "新增指令讀取資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:34 msgid "Add matching rule" msgstr "新增匹配規則" @@ -45,7 +45,7 @@ msgstr "使用空格分隔多個主機" msgid "Add notification command" msgstr "新增通知指令" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:26 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:23 msgid "Aggregate number of connected users" msgstr "連線使用者總數" @@ -89,7 +89,7 @@ msgstr "收集快取資料" msgid "Cache flush interval" msgstr "快取清空間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:60 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:59 msgid "Chain" msgstr "鏈" @@ -122,7 +122,7 @@ msgstr "" msgid "Conntrack" msgstr "Conntrack" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:5 msgid "Conntrack Plugin Configuration" msgstr "Conntrack 外掛配置" @@ -150,7 +150,7 @@ msgstr "資料收集間隙" msgid "Datasets definition file" msgstr "資料集定義檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:97 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:96 msgid "Destination ip range" msgstr "目標 IP 區間" @@ -196,13 +196,13 @@ msgstr "留空 = 監控所有" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:17 msgid "Enable" -msgstr "" +msgstr "啟用" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/apcups.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:18 +#: 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 @@ -212,25 +212,25 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:29 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:28 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:16 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:12 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:14 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:20 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:18 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/nut.lua:9 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/olsrd.lua:10 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:16 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:13 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:18 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:72 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:70 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:10 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:15 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:14 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:15 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:18 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:10 msgid "Enable this plugin" msgstr "啟用該外掛" @@ -266,7 +266,7 @@ msgstr "清空快取後" msgid "Forwarding between listen and server addresses" msgstr "轉發監聽伺服器和應用伺服器之間資料" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:32 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:29 msgid "Gather compression statistics" msgstr "收集壓縮統計資訊" @@ -274,7 +274,7 @@ msgstr "收集壓縮統計資訊" msgid "General plugins" msgstr "通用外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:17 msgid "Generate a separate graph for each logged user" msgstr "為每個記錄的使用者生成一個單獨的圖表" @@ -304,13 +304,13 @@ msgstr "" "在這裡,您可以定義外部指令,當 Collectd 達到一定閾值時,將啟動指令。閥值將會" "作為指令的標準輸入。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:36 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:35 msgid "" "Here you can define various criteria by which the monitored iptables rules " "are selected." msgstr "在這裡,您可以定義各種監控 iptables 規則臨界值。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Hold Ctrl to select multiple items or to deselect entries." msgstr "按住 Ctrl 鍵來選擇或取消選擇多個專案。" @@ -334,7 +334,7 @@ msgstr "IRQ 外掛配置" msgid "Ignore source addresses" msgstr "忽略源位址" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "Incoming interface" msgstr "入介面" @@ -354,7 +354,7 @@ msgstr "中斷" msgid "Interval for pings" msgstr "ping 間隙" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:18 msgid "Iptables Plugin Configuration" msgstr "Iptables 外掛配置" @@ -392,7 +392,7 @@ msgstr "最大允許連線數" msgid "Memory" msgstr "記憶體" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:5 msgid "Memory Plugin Configuration" msgstr "記憶體外掛配置" @@ -402,7 +402,7 @@ msgstr "記憶體外掛配置" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/irq.lua:25 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iwinfo.lua:22 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:79 -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:120 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:118 #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:24 msgid "Monitor all except specified" msgstr "監測所有(除特別註明外)" @@ -411,7 +411,7 @@ msgstr "監測所有(除特別註明外)" msgid "Monitor all local listen ports" msgstr "監測所有本地監聽埠" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:76 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:74 msgid "Monitor all sensors" msgstr "監控所有感測器" @@ -467,9 +467,9 @@ msgstr "監測遠端埠" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:20 msgid "Name" -msgstr "" +msgstr "名稱" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "Name of the rule" msgstr "規則名" @@ -493,7 +493,7 @@ msgstr "Network 外掛配置" msgid "Network plugins" msgstr "Network 外掛" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:82 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:81 msgid "Network protocol" msgstr "Network 協議" @@ -525,19 +525,19 @@ msgstr "僅建立平均 RRAs" msgid "OpenVPN" msgstr "OpenVPN" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:10 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:7 msgid "OpenVPN Plugin Configuration" msgstr "OpenVPN 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:44 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:41 msgid "OpenVPN status files" msgstr "OpenVPN 狀態檔案" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "Options" msgstr "選項" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "Outgoing interface" msgstr "出介面" @@ -620,7 +620,7 @@ msgstr "指令碼" msgid "Seconds" msgstr "秒" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:88 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:86 msgid "Sensor list" msgstr "感測器列表" @@ -628,7 +628,7 @@ msgstr "感測器列表" msgid "Sensors" msgstr "感測器" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:66 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:64 msgid "Sensors Plugin Configuration" msgstr "Sensors 外掛配置" @@ -664,7 +664,7 @@ msgstr "套接字組" msgid "Socket permissions" msgstr "套接字許可權" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:91 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:90 msgid "Source ip range" msgstr "源 IP 區間" @@ -730,7 +730,7 @@ msgstr "網路包 TTL" msgid "TTL for ping packets" msgstr "ping 包 TTL" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:49 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:48 msgid "Table" msgstr "表" @@ -748,13 +748,13 @@ msgid "" "plugin of OLSRd." msgstr "OLSRd 外掛通過 txtinfo 獲取 meshed 網路資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:11 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:8 msgid "" "The OpenVPN plugin gathers information about the current vpn connection " "status." msgstr "OpenVPN 外掛可以獲取 VPN 連線當前狀態" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/conntrack.lua:6 msgid "" "The conntrack plugin collects statistics about the number of tracked " "connections." @@ -815,7 +815,7 @@ msgid "" "The interface plugin collects traffic statistics on selected interfaces." msgstr "Interface 外掛用於收集選定介面的資料包的統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:20 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:19 msgid "" "The iptables plugin will monitor selected firewall rules and collect " "information about processed bytes and packets per rule." @@ -839,7 +839,7 @@ msgstr "iwinfo 外掛收集無線訊號強度、噪聲和質量的統計資訊 msgid "The load plugin collects statistics about the general system load." msgstr "load 外掛收集常規系統載入統計資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/memory.lua:6 msgid "The memory plugin collects statistics about the memory usage." msgstr "memory 外掛收集關於記憶體使用情況的統計資訊。" @@ -883,7 +883,7 @@ msgstr "" "><strong>警告:錯誤的引數設定,將導致非常高的臨時記憶體消耗。這可能會使裝置無" "法使用!</strong>" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:67 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/sensors.lua:65 msgid "" "The sensors plugin uses the Linux Sensors framework to gather environmental " "statistics." @@ -926,7 +926,7 @@ msgid "" "collected data from a running collectd instance." msgstr "unixsock 外掛建立一個 unix 套接字可用於讀取 Collectd 例項的收集資訊。" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:14 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:6 msgid "The uptime plugin collects statistics about the uptime of the system." msgstr "uptime 外掛收集系統啟動時間的統計資訊。" @@ -976,7 +976,7 @@ msgstr "UPS 名使用 NUT(Network UPS Tools)格式:ups@host" #: 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" @@ -990,11 +990,11 @@ msgstr "Unixsock 外掛配置" msgid "Uptime" msgstr "執行時間" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:13 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/uptime.lua:5 msgid "Uptime Plugin Configuration" msgstr "執行時間外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:38 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/openvpn.lua:35 msgid "Use improved naming schema" msgstr "使用更高階的命名規則" @@ -1026,25 +1026,25 @@ msgstr "您可以安裝更多的 collectd-mod-* 外掛以獲得更多的統計 #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:32 msgid "cUrl" -msgstr "" +msgstr "cUrl" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/curl.lua:5 msgid "cUrl Plugin Configuration" -msgstr "" +msgstr "cUrl 外掛配置" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:110 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:109 msgid "e.g. br-ff" msgstr "例如:br-ff" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:104 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:103 msgid "e.g. br-lan" msgstr "例如:br-lan" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:116 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:115 msgid "e.g. reject-with tcp-reset" msgstr "例如:eject-with tcp-reset" -#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:46 +#: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/iptables.lua:45 msgid "max. 16 chars" msgstr "最長 16 個字元" diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po index 2fd46df929..a4d41f70da 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -29,7 +29,7 @@ msgstr "アップリンクの追加" msgid "Add Wireless Uplink Configuration" msgstr "無線アップリンク追加の設定" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Travelmate の処理が開始されるまでの、追加の遅延時間(秒)です。" @@ -88,7 +88,7 @@ msgid "" msgstr "" "トラベル ルーター機能を有効化するための、 Travelmate パッケージの設定です。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "接続制限" @@ -156,7 +156,7 @@ msgstr "このアップリンクを編集" msgid "Enable Travelmate" msgstr "Travelmate の有効化" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "詳細なデバッグ ログの有効化" @@ -171,7 +171,7 @@ msgstr "詳細なデバッグ ログの有効化" msgid "Encryption" msgstr "暗号化" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "拡張オプション" @@ -216,7 +216,7 @@ msgstr "TKIP" msgid "Force TKIP and CCMP (AES)" msgstr "TKIP と CCMP (AES)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "Travelmate が無線アップリンクへの接続成功を待つ時間です。" @@ -237,7 +237,7 @@ msgstr "BSSID の無視" msgid "Input file not found, please check your configuration." msgstr "入力ファイルが見つかりません。設定を確認してください。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "インターフェース タイムアウト" @@ -253,7 +253,7 @@ msgstr "最終実行" msgid "Loading" msgstr "読み込み中" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -277,16 +277,16 @@ msgstr "使用されるアップリンク インターフェースの名前で msgid "Open" msgstr "オープン" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "デフォルトの設定が適切でない場合、さらに設定するためのオプションです。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "実行間隔" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "全体的な再試行タイムアウト(秒)です。" @@ -347,7 +347,7 @@ msgstr "" "クを追加することができます。現在使用されているアップリンクは青色で、問題のあ" "るステーションは赤色で強調されます。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" msgstr "無線の選択 / 順番" @@ -364,7 +364,7 @@ msgstr "再起動" msgid "Restart Travelmate" msgstr "Travelmate の再起動" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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')." @@ -372,7 +372,7 @@ msgstr "" "Travelmate を単一の無線(例: 'radio1')のみに制限したり、全体的なスキャンの順" "番を変更します(例: 'radio1 radio2 radio0')。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "アップリンクへの接続を試行する回数です。" @@ -407,7 +407,7 @@ msgstr "スキャン:" msgid "Show/Hide QR-Codes" msgstr "QR コードを表示/非表示" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "シグナル品質閾値" @@ -485,7 +485,7 @@ msgstr "Travelmate ステータス(品質)" msgid "Travelmate Version" msgstr "Travelmate バージョン" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "トリガ遅延" diff --git a/applications/luci-app-travelmate/po/pt-br/travelmate.po b/applications/luci-app-travelmate/po/pt-br/travelmate.po index ca9c057a6f..bdc1c3c884 100644 --- a/applications/luci-app-travelmate/po/pt-br/travelmate.po +++ b/applications/luci-app-travelmate/po/pt-br/travelmate.po @@ -29,7 +29,7 @@ msgstr "Adicionar Enlace para Fora" msgid "Add Wireless Uplink Configuration" msgstr "Adicionar Configuração Sem Fio de Enlace para Fora" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Atraso adicional em segundos antes do travelmate processe os gatilhos." @@ -89,7 +89,7 @@ msgstr "" "Configuração do travelmate para habilitar a funcionalidade de roteador de " "viagem." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "Limite de conexão" @@ -156,7 +156,7 @@ msgstr "Editar Configurações da Rede de saída" msgid "Enable Travelmate" msgstr "Habilitar o Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "Habilitar os registros de depuração detalhados" @@ -171,7 +171,7 @@ msgstr "Habilitar os registros de depuração detalhados" msgid "Encryption" msgstr "Cifragem" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "Opções adicionais" @@ -216,7 +216,7 @@ msgstr "Forçar TKIP" msgid "Force TKIP and CCMP (AES)" msgstr "Forçar TKIP e CCMP (AES)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "" @@ -241,7 +241,7 @@ msgstr "" "O arquivo entrado não foi encontrado. Por favor, verifique suas " "configurações." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "Estouro de Tempo da Interface" @@ -257,7 +257,7 @@ msgstr "Última Execução" msgid "Loading" msgstr "Carregando" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -281,18 +281,18 @@ msgstr "Nome da interface usada para o enlace de saída" msgid "Open" msgstr "Abrir" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "" "Opções para aprimoramentos adicionais caso as opções padrão não sejam " "suficientes para você." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "Estouro de Tempo Global" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "Estouro de tempo global em segundos." @@ -351,7 +351,7 @@ msgstr "" "escanear por um novo. O enlace em uso está destacado em azul, enquanto as " "estações com falha estão em vermelho." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" msgstr "" @@ -368,13 +368,13 @@ msgstr "Reiniciar" msgid "Restart Travelmate" msgstr "Reiniciar o Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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 "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "Limite de retentativa de conexão com um enlace externo." @@ -409,7 +409,7 @@ msgstr "Escanear" msgid "Show/Hide QR-Codes" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "Limite da Qualidade do Sinal" @@ -476,7 +476,7 @@ msgstr "Estado do Travelmate (Qualidade)" msgid "Travelmate Version" msgstr "Versão do Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "Atraso no Gatilho" diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index 24d6c2f18b..dbbc5df381 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -32,7 +32,7 @@ msgstr "Подключение к сети" msgid "Add Wireless Uplink Configuration" msgstr "Добавить настройку внешней беспроводной сети" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "Дополнительная задержка в секундах до запуска TravelMate." @@ -88,7 +88,7 @@ msgid "" "functionality." msgstr "Настройка утилиты TravelMate - помощника путешественника. " -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "Ограничение соединений" @@ -156,7 +156,7 @@ msgstr "Редактировать настройки сети" msgid "Enable Travelmate" msgstr "Включить Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "Включить подробное ведение журнала отладки" @@ -171,7 +171,7 @@ msgstr "Включить подробное ведение журнала отл msgid "Encryption" msgstr "Шифрование" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "Дополнительные настройки" @@ -216,7 +216,7 @@ msgstr "Назначить TKIP" msgid "Force TKIP and CCMP (AES)" msgstr "Назначить TKIP и CCMP (AES)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "" @@ -237,7 +237,7 @@ msgstr "Игнорировать BSSID" msgid "Input file not found, please check your configuration." msgstr "Config файл не найден, настройте config файл." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "Временная задержка интерфейса" @@ -253,7 +253,7 @@ msgstr "" msgid "Loading" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -275,18 +275,18 @@ msgstr "Имя используемого интерфейса внешней с msgid "Open" msgstr "Открыть" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "" "Возможные варианты детальной настройки, если значения по умолчанию не " "подходят для вас." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "Общее время ожидания" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "" @@ -345,7 +345,7 @@ msgstr "" "существующий список внешних сетей или выполнять их поиск. Используемое " "сетевое соединение выделено синим цветом." -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" msgstr "" @@ -362,13 +362,13 @@ msgstr "" msgid "Restart Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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 "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "" @@ -403,7 +403,7 @@ msgstr "Поиск" msgid "Show/Hide QR-Codes" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "" @@ -479,7 +479,7 @@ msgstr "" msgid "Travelmate Version" msgstr "Версия TravelMate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "" diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index ee3b75a028..5d8348c568 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -18,7 +18,7 @@ msgstr "" msgid "Add Wireless Uplink Configuration" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "" @@ -74,7 +74,7 @@ msgid "" "functionality." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "" @@ -140,7 +140,7 @@ msgstr "" msgid "Enable Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "" @@ -155,7 +155,7 @@ msgstr "" msgid "Encryption" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "" @@ -198,7 +198,7 @@ msgstr "" msgid "Force TKIP and CCMP (AES)" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "" @@ -219,7 +219,7 @@ msgstr "" msgid "Input file not found, please check your configuration." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "" @@ -235,7 +235,7 @@ msgstr "" msgid "Loading" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -257,16 +257,16 @@ msgstr "" msgid "Open" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "" @@ -321,7 +321,7 @@ msgid "" "one. The currently used uplink is emphasized in blue, faulty stations in red." msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" msgstr "" @@ -338,13 +338,13 @@ msgstr "" msgid "Restart Travelmate" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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 "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "" @@ -379,7 +379,7 @@ msgstr "" msgid "Show/Hide QR-Codes" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "" @@ -445,7 +445,7 @@ msgstr "" msgid "Travelmate Version" msgstr "" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "" diff --git a/applications/luci-app-travelmate/po/zh-cn/travelmate.po b/applications/luci-app-travelmate/po/zh-cn/travelmate.po index 2cb7370818..a2641aa858 100644 --- a/applications/luci-app-travelmate/po/zh-cn/travelmate.po +++ b/applications/luci-app-travelmate/po/zh-cn/travelmate.po @@ -1,24 +1,28 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. +# Yangfl <mmyangfl@gmail.com>, 2018-2019. # msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-03 21:37+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language: zh_CN\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Gtranslator 3.30.1\n" "Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-17 17:06+0800\n" -"X-Generator: Gtranslator 2.91.7\n" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 msgid "AP on" -msgstr "" +msgstr "AP 开启" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 msgid "Action" -msgstr "" +msgstr "动作" #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:80 msgid "Add Uplink" @@ -28,7 +32,7 @@ msgstr "添加上行连接" msgid "Add Wireless Uplink Configuration" msgstr "添加无线上行连接配置" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 处理开始前的额外触发延迟(秒)。" @@ -84,7 +88,7 @@ msgid "" "functionality." msgstr "配置 travelmate 包,以启用旅行路由器功能。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "连接限制" @@ -150,7 +154,7 @@ msgstr "编辑此上行连接" msgid "Enable Travelmate" msgstr "启用 travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "启用详细调试日志" @@ -165,13 +169,13 @@ msgstr "启用详细调试日志" msgid "Encryption" msgstr "加密" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "额外选项" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:125 msgid "Faulty Stations" -msgstr "" +msgstr "不良站点" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 msgid "Find and join network on" @@ -179,7 +183,7 @@ msgstr "查找并加入网络" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:208 msgid "For QR-Code support please install package 'qrencode'!" -msgstr "" +msgstr "如需 QR 码支持,请安装“qrencode”软件包!" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 msgid "" @@ -208,7 +212,7 @@ msgstr "强制 TKIP" msgid "Force TKIP and CCMP (AES)" msgstr "强制 TKIP 和 CCMP(AES)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "travelmate 等待 wlan 上行连接成功最长时间。" @@ -229,7 +233,7 @@ msgstr "忽略 BSSID" msgid "Input file not found, please check your configuration." msgstr "未找到输入文件,请检查您的配置。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "接口超时" @@ -239,13 +243,13 @@ msgstr "接口向导" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:131 msgid "Last Run" -msgstr "" +msgstr "上次运行" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:59 msgid "Loading" -msgstr "" +msgstr "载入中" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -267,16 +271,16 @@ msgstr "要使用的上行连接接口名称。" msgid "Open" msgstr "开" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "如果默认值不适合您,可以选择进一步调整。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "总体超时" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "总体重试超时(秒)。" @@ -316,13 +320,13 @@ msgstr "私钥路径" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:68 msgid "ProActive Uplink Switch" -msgstr "" +msgstr "ProActive 上行链路切换器" #: 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 "" +msgstr "不管已经存在的连接,主动扫描并切换到更高优先级的上行链路。" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 msgid "" @@ -333,9 +337,9 @@ msgstr "" "此处显示 travelmate 接口(%s)所有已配置上行连接的概述。您可以编辑、删除或重" "新排序现有连接,或扫描新上行连接。当前使用的上行连接以蓝色突出显示。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" -msgstr "" +msgstr "无线电选择/顺序" #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:94 msgid "Repeat scan" @@ -344,19 +348,21 @@ msgstr "重新扫描" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 msgid "Restart" -msgstr "" +msgstr "重启" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:138 msgid "Restart Travelmate" -msgstr "" +msgstr "重启 Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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 "" +"将 travelmate 限制在单个无线电上(例如“radio1”),或改变整个扫描顺序(例" +"如“radio1 radio2 radio0”)。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "连接到上行连接的重试限制。" @@ -389,9 +395,9 @@ msgstr "扫描" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 msgid "Show/Hide QR-Codes" -msgstr "" +msgstr "显示/隐藏 QR 码" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "信号质量阈值" @@ -457,7 +463,7 @@ msgstr "Travelmate 状态(质量)" msgid "Travelmate Version" msgstr "Travelmate 版本" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "触发延迟" @@ -524,7 +530,7 @@ msgstr "无线站点" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:32 msgid "add it to the wan zone of the firewall." -msgstr "" +msgstr "将其添加到防火墙的 wan 区域。" #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:56 msgid "hidden" @@ -532,57 +538,4 @@ msgstr "隐藏" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 msgid "with SSID" -msgstr "" - -#~ msgid "" -#~ "Connect your Android or iOS devices to your router's WiFi using the shown " -#~ "QR code." -#~ msgstr "使用显示的 QR 码,将您的 Android 或 iOS 设备连接到路由器 WiFi。" - -#~ msgid "" -#~ "Here you'll find the QR codes from all of your configured Access Points. " -#~ "It allows you to connect your Android or iOS devices to your router's " -#~ "WiFi using the QR code shown below." -#~ msgstr "" -#~ "在这里,您可以找到所有已配置的接入点的 QR 码。您可以使用下面显示的 QR 码," -#~ "使 Android 或 iOS 设备连接到路由器 WiFi。" - -#~ msgid "Last rundate" -#~ msgstr "最后运行时间" - -#~ 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." -#~ msgstr "" -#~ "此处显示 travelmate 接口(%s)所有已配置上行连接的概述。您可以编辑、删除或" -#~ "重新排序现有连接,或扫描新上行连接。当前使用的上行连接以蓝色突出显示。" - -#~ msgid "QR-Codes" -#~ msgstr "QR 码" - -#~ msgid "Radio selection" -#~ msgstr "无线选择" - -#~ msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." -#~ msgstr "将 travelmate 限制在专用无线电中,如“radio0”。" - -#~ msgid "Station ID (SSID/BSSID)" -#~ msgstr "站点 ID(SSID/BSSID)" - -#~ msgid "Station Radio" -#~ msgstr "站点无线" - -#~ msgid "" -#~ "This form shows the syslog output, pre-filtered for travelmate related " -#~ "messages only." -#~ msgstr "此表单显示 syslog 输出,仅针对 travelmate 相关消息进行预过滤。" - -#~ msgid "Travelmate Logfile" -#~ msgstr "Travelmate 日志文件" - -#~ msgid "add it to the wan zone of the firewall.<br />" -#~ msgstr "将其添加到防火墙的 wan 区域。<br />" - -#~ msgid "n/a" -#~ msgstr "n/a" +msgstr "带 SSID" diff --git a/applications/luci-app-travelmate/po/zh-tw/travelmate.po b/applications/luci-app-travelmate/po/zh-tw/travelmate.po index cd51fc48ab..00cf3a90f2 100644 --- a/applications/luci-app-travelmate/po/zh-tw/travelmate.po +++ b/applications/luci-app-travelmate/po/zh-tw/travelmate.po @@ -1,24 +1,28 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. +# Yangfl <mmyangfl@gmail.com>, 2018-2019. # msgid "" msgstr "" -"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: \n" +"POT-Creation-Date: \n" +"PO-Revision-Date: 2019-01-03 21:37+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" +"Language: zh_TW\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"X-Generator: Gtranslator 3.30.1\n" "Plural-Forms: nplurals=1; plural=0;\n" -"PO-Revision-Date: 2018-08-17 17:06+0800\n" -"X-Generator: Gtranslator 2.91.7\n" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 msgid "AP on" -msgstr "" +msgstr "AP 開啟" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:113 #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:51 msgid "Action" -msgstr "" +msgstr "動作" #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:80 msgid "Add Uplink" @@ -28,7 +32,7 @@ msgstr "新增上行連線" msgid "Add Wireless Uplink Configuration" msgstr "新增無線上行連線配置" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:106 msgid "" "Additional trigger delay in seconds before travelmate processing begins." msgstr "在 travelmate 處理開始前的額外觸發延遲(秒)。" @@ -85,7 +89,7 @@ msgid "" "functionality." msgstr "配置 travelmate 包,以啟用旅行路由器功能。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:110 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 msgid "Connection Limit" msgstr "連線限制" @@ -151,7 +155,7 @@ msgstr "編輯此上行連線" msgid "Enable Travelmate" msgstr "啟用 travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:96 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:97 msgid "Enable Verbose Debug Logging" msgstr "啟用詳細除錯日誌" @@ -166,13 +170,13 @@ msgstr "啟用詳細除錯日誌" msgid "Encryption" msgstr "加密" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:93 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 msgid "Extra Options" msgstr "額外選項" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:125 msgid "Faulty Stations" -msgstr "" +msgstr "不良站點" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:148 msgid "Find and join network on" @@ -180,7 +184,7 @@ msgstr "查詢並加入網路" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:208 msgid "For QR-Code support please install package 'qrencode'!" -msgstr "" +msgstr "如需 QR 碼支援,請安裝“qrencode”軟體包!" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:15 msgid "" @@ -209,7 +213,7 @@ msgstr "強制 TKIP" msgid "Force TKIP and CCMP (AES)" msgstr "強制 TKIP 和 CCMP(AES)" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 +#: 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 "travelmate 等待 wlan 上行連線成功最長時間。" @@ -230,7 +234,7 @@ msgstr "忽略 BSSID" msgid "Input file not found, please check your configuration." msgstr "未找到輸入檔案,請檢查您的配置。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:122 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:123 msgid "Interface Timeout" msgstr "介面超時" @@ -240,13 +244,13 @@ msgstr "介面嚮導" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:131 msgid "Last Run" -msgstr "最後執行時間" +msgstr "上次執行" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:59 msgid "Loading" -msgstr "" +msgstr "載入中" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:118 msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " "connections." @@ -268,16 +272,16 @@ msgstr "要使用的上行連線介面名稱。" msgid "Open" msgstr "開" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:94 +#: 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 "如果預設值不適合您,可以選擇進一步調整。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:128 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 msgid "Overall Timeout" msgstr "總體超時" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:129 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:130 msgid "Overall retry timeout in seconds." msgstr "總體重試超時(秒)。" @@ -317,13 +321,13 @@ msgstr "私鑰路徑" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:68 msgid "ProActive Uplink Switch" -msgstr "" +msgstr "ProActive 上行鏈路切換器" #: 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 "" +msgstr "不管已經存在的連線,主動掃描並切換到更高優先順序的上行鏈路。" #: applications/luci-app-travelmate/luasrc/view/travelmate/stations.htm:103 msgid "" @@ -334,9 +338,9 @@ msgstr "" "此處顯示 travelmate 介面(%s)所有已配置上行連線的概述。您可以編輯、刪除或重" "新排序現有連線,或掃描新上行連線。當前使用的上行連線以藍色突出顯示。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:100 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 msgid "Radio Selection / Order" -msgstr "" +msgstr "無線電選擇/順序" #: applications/luci-app-travelmate/luasrc/view/travelmate/wifi_scan.htm:94 msgid "Repeat scan" @@ -345,19 +349,21 @@ msgstr "重新掃描" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:15 #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:140 msgid "Restart" -msgstr "" +msgstr "重啟" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:138 msgid "Restart Travelmate" -msgstr "" +msgstr "重啟 Travelmate" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:101 +#: 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 "" +"將 travelmate 限制在單個無線電上(例如“radio1”),或改變整個掃描順序(例" +"如“radio1 radio2 radio0”)。" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:111 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:112 msgid "Retry limit to connect to an uplink." msgstr "連線到上行連線的重試限制。" @@ -390,9 +396,9 @@ msgstr "掃描" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:147 msgid "Show/Hide QR-Codes" -msgstr "" +msgstr "顯示/隱藏 QR 碼" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:116 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:117 msgid "Signal Quality Threshold" msgstr "訊號質量閾值" @@ -402,7 +408,7 @@ msgstr "訊號強度" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:113 msgid "Station ID (RADIO/SSID/BSSID)" -msgstr "" +msgstr "站點 ID(RADIO/SSID/BSSID)" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:119 msgid "Station Interface" @@ -458,7 +464,7 @@ msgstr "Travelmate 狀態(質量)" msgid "Travelmate Version" msgstr "Travelmate 版本" -#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:104 +#: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/overview_tab.lua:105 msgid "Trigger Delay" msgstr "觸發延遲" @@ -533,57 +539,4 @@ msgstr "隱藏" #: applications/luci-app-travelmate/luasrc/view/travelmate/runtime.htm:197 msgid "with SSID" -msgstr "" - -#~ msgid "" -#~ "Connect your Android or iOS devices to your router's WiFi using the shown " -#~ "QR code." -#~ msgstr "使用顯示的 QR 碼,將您的 Android 或 iOS 裝置連線到路由器 WiFi。" - -#~ msgid "" -#~ "Here you'll find the QR codes from all of your configured Access Points. " -#~ "It allows you to connect your Android or iOS devices to your router's " -#~ "WiFi using the QR code shown below." -#~ msgstr "" -#~ "在這裡,您可以找到所有已配置的接入點的 QR 碼。您可以使用下面顯示的 QR 碼," -#~ "使 Android 或 iOS 裝置連線到路由器 WiFi。" - -#~ msgid "Last rundate" -#~ msgstr "最後執行時間" - -#~ 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." -#~ msgstr "" -#~ "此處顯示 travelmate 介面(%s)所有已配置上行連線的概述。您可以編輯、刪除或" -#~ "重新排序現有連線,或掃描新上行連線。當前使用的上行連線以藍色突出顯示。" - -#~ msgid "QR-Codes" -#~ msgstr "QR 碼" - -#~ msgid "Radio selection" -#~ msgstr "無線選擇" - -#~ msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." -#~ msgstr "將 travelmate 限制在專用無線電中,如“radio0”。" - -#~ msgid "Station ID (SSID/BSSID)" -#~ msgstr "站點 ID(SSID/BSSID)" - -#~ msgid "Station Radio" -#~ msgstr "站點無線" - -#~ msgid "" -#~ "This form shows the syslog output, pre-filtered for travelmate related " -#~ "messages only." -#~ msgstr "此表單顯示 syslog 輸出,僅針對 travelmate 相關訊息進行預過濾。" - -#~ msgid "Travelmate Logfile" -#~ msgstr "Travelmate 日誌檔案" - -#~ msgid "add it to the wan zone of the firewall.<br />" -#~ msgstr "將其新增到防火牆的 wan 區域。<br />" - -#~ msgid "n/a" -#~ msgstr "n/a" +msgstr "帶 SSID" diff --git a/applications/luci-app-uhttpd/po/en/uhttpd.po b/applications/luci-app-uhttpd/po/en/uhttpd.po new file mode 100644 index 0000000000..67c06d8547 --- /dev/null +++ b/applications/luci-app-uhttpd/po/en/uhttpd.po @@ -0,0 +1,265 @@ +msgid "" +msgstr "" +"Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2019-01-09 07:00-0500\n" +"Last-Translator: Daniel F. Dickinson <cshored@theshore.com>\n" +"Language-Team: English\n" +"Language: en\n" +"MIME-Version: 1.0\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +msgid "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" +msgstr "" +"(/old/path=/new/path) or (just /old/path which becomes /cgi-prefix/old/path)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +msgid "404 Error" +msgstr "404 Error" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:7 +msgid "A lightweight single-threaded HTTP(S) server" +msgstr "A lightweight single-threaded HTTP(S) server" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +msgid "Advanced Settings" +msgstr "Advanced Settings" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:135 +msgid "Aliases" +msgstr "Aliases" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:149 +msgid "Base directory for files to be served" +msgstr "Base directory for files to be served" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +msgid "Bind to specific interface:port (by specifying interface address" +msgstr "Bind to specific interface:port (by specifying interface address" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +msgid "CGI filetype handler" +msgstr "CGI filetype handler" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +msgid "CGI is disabled if not present." +msgstr "CGI is disabled if not present." + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +msgid "Config file (e.g. for credentials for Basic Auth)" +msgstr "Config file (e.g. for credentials for Basic Auth)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:187 +msgid "Connection reuse" +msgstr "Connection reuse" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:221 +msgid "Country" +msgstr "Country" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:173 +msgid "Disable JSON-RPC authorization via ubus session API" +msgstr "Disable JSON-RPC authorization via ubus session API" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:129 +msgid "Do not follow symlinks outside document root" +msgstr "Do not follow symlinks outside document root" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:132 +msgid "Do not generate directory listings." +msgstr "Do not generate directory listings." + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:148 +msgid "Document root" +msgstr "Document root" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +msgid "E.g specify with index.html and index.php when using PHP" +msgstr "E.g specify with index.html and index.php when using PHP" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +msgid "Embedded Lua interpreter is disabled if not present." +msgstr "Embedded Lua interpreter is disabled if not present." + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:169 +msgid "Enable JSON-RPC Cross-Origin Resource Support" +msgstr "Enable JSON-RPC Cross-Origin Resource Support" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +msgid "For settings primarily geared to serving more than the web UI" +msgstr "For settings primarily geared to serving more than the web UI" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:19 +msgid "Full Web Server Settings" +msgstr "Full Web Server Settings" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:160 +msgid "Full real path to handler for Lua scripts" +msgstr "Full real path to handler for Lua scripts" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:18 +msgid "General Settings" +msgstr "General Settings" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:22 +msgid "HTTP listeners (address:port)" +msgstr "HTTP listeners (address:port)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:94 +msgid "HTTPS Certificate (DER Encoded)" +msgstr "HTTPS Certificate (DER Encoded)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:96 +msgid "HTTPS Private Key (DER Encoded)" +msgstr "HTTPS Private Key (DER Encoded)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:50 +msgid "HTTPS listener (address:port)" +msgstr "HTTPS listener (address:port)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +msgid "Ignore private IPs on public interface" +msgstr "Ignore private IPs on public interface" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:122 +msgid "Index page(s)" +msgstr "Index page(s)" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:126 +msgid "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" +msgstr "" +"Interpreter to associate with file endings ('suffix=handler', e.g. '.php=/" +"usr/bin/php-cgi')" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:214 +msgid "Length of key in bits" +msgstr "Length of key in bits" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:227 +msgid "Location" +msgstr "Location" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:197 +msgid "Maximum number of connections" +msgstr "Maximum number of connections" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:201 +msgid "Maximum number of script requests" +msgstr "Maximum number of script requests" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:177 +msgid "Maximum wait time for Lua, CGI, or ubus execution" +msgstr "Maximum wait time for Lua, CGI, or ubus execution" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:182 +msgid "Maximum wait time for network activity" +msgstr "Maximum wait time for network activity" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:166 +msgid "Override path for ubus socket" +msgstr "Override path for ubus socket" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:153 +msgid "Path prefix for CGI scripts" +msgstr "Path prefix for CGI scripts" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:90 +msgid "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" +msgstr "" +"Prevent access from private (RFC1918) IPs on an interface if it has an " +"public IP address" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:138 +msgid "Realm for Basic Auth" +msgstr "Realm for Basic Auth" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:86 +msgid "Redirect all HTTP to HTTPS" +msgstr "Redirect all HTTP to HTTPS" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:109 +msgid "Remove configuration for certificate and key" +msgstr "Remove configuration for certificate and key" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:98 +msgid "Remove old certificate and key" +msgstr "Remove old certificate and key" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +msgid "Server Hostname" +msgstr "Server Hostname" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:20 +msgid "" +"Settings which are either rarely needed or which affect serving the WebUI" +msgstr "" +"Settings which are either rarely needed or which affect serving the WebUI" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:224 +msgid "State" +msgstr "State" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:192 +msgid "TCP Keepalive" +msgstr "TCP Keepalive" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:110 +msgid "This permanently deletes the cert, key, and configuration to use same." +msgstr "This permanently deletes the cert, key, and configuration to use same." + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:210 +msgid "Valid for # of Days" +msgstr "Valid for # of Days" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:145 +msgid "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" +msgstr "" +"Virtual URL or CGI script to display on status '404 Not Found'. Must begin " +"with '/'" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:156 +msgid "Virtual path prefix for Lua scripts" +msgstr "Virtual path prefix for Lua scripts" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +msgid "Virtual path prefix for ubus via JSON-RPC integration" +msgstr "Virtual path prefix for ubus via JSON-RPC integration" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:142 +msgid "Will not use HTTP authentication if not present" +msgstr "Will not use HTTP authentication if not present" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:218 +msgid "a.k.a CommonName" +msgstr "a.k.a CommonName" + +#: applications/luci-app-uhttpd/luasrc/controller/uhttpd/uhttpd.lua:13 +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:6 +msgid "uHTTPd" +msgstr "uHTTPd" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:205 +msgid "uHTTPd Self-signed Certificate Parameters" +msgstr "uHTTPd Self-signed Certificate Parameters" + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:99 +msgid "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." +msgstr "" +"uHTTPd will generate a new self-signed certificate using the configuration " +"shown below." + +#: applications/luci-app-uhttpd/luasrc/model/cbi/uhttpd/uhttpd.lua:163 +msgid "ubus integration is disabled if not present" +msgstr "ubus integration is disabled if not present" diff --git a/applications/luci-app-unbound/po/templates/unbound.pot b/applications/luci-app-unbound/po/templates/unbound.pot index 661ecc6996..d310cbbadc 100644 --- a/applications/luci-app-unbound/po/templates/unbound.pot +++ b/applications/luci-app-unbound/po/templates/unbound.pot @@ -21,8 +21,8 @@ msgstr "" msgid "Accept queries only from local subnets" msgstr "" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 -msgid "Adblock domain list '" +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:214 +msgid "Adblock domain list is too large to display in LuCI." msgstr "" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:38 @@ -53,10 +53,6 @@ msgstr "" msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" msgstr "" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 -msgid "Cache Dump" -msgstr "" - #: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:75 msgid "Choose Unbounds listening port" msgstr "" @@ -81,6 +77,10 @@ msgstr "" msgid "DHCPv4 to SLAAC" msgstr "" +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:55 msgid "DNS over TLS" msgstr "" @@ -583,16 +583,15 @@ msgstr "" msgid "This could display more statistics with the unbound-control package." msgstr "" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:170 -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:181 -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:206 +#: 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 "" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:160 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:173 msgid "" -"This shows Unbound 'cache_dump'. Useful to check if unbound is actually " -"caching dns entities." +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." msgstr "" #: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 @@ -645,6 +644,10 @@ msgstr "" msgid "Unbound Control App" msgstr "" +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:166 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 msgid "Undefined" msgstr "" diff --git a/applications/luci-app-unbound/po/zh-cn/unbound.po b/applications/luci-app-unbound/po/zh-cn/unbound.po new file mode 100644 index 0000000000..f581059519 --- /dev/null +++ b/applications/luci-app-unbound/po/zh-cn/unbound.po @@ -0,0 +1,755 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(根)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:201 +msgid ", and <var>%s</var> entries" +msgstr ",及 <var>%s</var> 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try <var>%s</var>" +msgstr ",并尝试 <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 "仅接受来自本地子网的查询" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:214 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:38 +msgid "Advanced" +msgstr "高级" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:237 +msgid "Aggressive" +msgstr "激进" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "记录不在区域中时允许递归查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "权威(区域文件)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:33 +msgid "Basic" +msgstr "基本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Break down query components for limited added privacy" +msgstr "细分查询组件以增加有限的隐私" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:69 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "打破 DNSSEC 需要 NTP,NTP 又需要 DNS 的循环" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:75 +msgid "Choose Unbounds listening port" +msgstr "选择 Unbounds 监听端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Chose the IP versions used upstream and downstream" +msgstr "选择上游和下游使用的 IP 版本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:56 +msgid "Connect to servers using TLS" +msgstr "使用 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 "DHCP 链接" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 到 SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:55 +msgid "DNS over TLS" +msgstr "DNS over TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "DNS64 Prefix" +msgstr "DNS64 前缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:68 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP 修复" + +#: 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 "默认" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:156 +msgid "Denied (nxdomain)" +msgstr "否认(nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "转移区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:77 +msgid "Directory only part of URL" +msgstr "目录只是 URL 的一部分" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "Domain Insecure" +msgstr "域不安全" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:72 +msgid "Domain name to verify TLS certificate" +msgstr "用于验证 TLS 证书的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:146 +msgid "Domain suffix for this router and DHCP clients" +msgstr "此路由器和 DHCP 客户端的域名后缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "EDNS Size" +msgstr "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 "编辑'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:14 +msgid "Edit 'server:' clause options for 'include:" +msgstr "编辑“server:”子选项,位于'include:" + +#: 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 "编辑 Unbound 使用的转发、存根或区域文件缓存区域,而不进行递归查询。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:14 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "编辑子选项,例如“forward-zone:”,位于'include:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "编辑:扩展" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "编辑:服务器" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "编辑:UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "编辑:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "启用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:93 +msgid "Enable DNS64" +msgstr "启用 DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:63 +msgid "Enable DNSSEC" +msgstr "启用 DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:45 +msgid "Enable Unbound" +msgstr "启用 Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:203 +msgid "Enable access for unbound-control" +msgstr "启用 unbound-control 访问" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Enable the DNS64 module" +msgstr "启用 DNS64 模块" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:64 +msgid "Enable the DNSSEC validator module" +msgstr "启用 DNSSEC 验证模块" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Enable the initialization scripts for Unbound" +msgstr "启用 Unbound 的初始化脚本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "启用此转移区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "启用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "Extended Statistics" +msgstr "扩展统计" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Extended statistics are printed from unbound-control" +msgstr "扩展统计信息从 unbound-control 打印" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Extra DNS" +msgstr "额外的 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "文件" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Filter Entire Subnet" +msgstr "过滤整个子网" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:81 +msgid "Filter Localhost Rebind" +msgstr "过滤本地主机重绑定" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Private Address" +msgstr "过滤私有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:86 +msgid "Filter Private Rebind" +msgstr "过滤私有地址重绑定" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "转发" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "转发(简单切换)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "转发 TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Forward to upstream nameservers (ISP)" +msgstr "转发到上游名称服务器(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,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:192 +msgid "Host Records" +msgstr "主机记录" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:193 +msgid "Host/MX/SRV RR" +msgstr "主机/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Host/MX/SRV/CNAME RR" +msgstr "主机/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 "主机名,所有地址" + +#: 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 "主机名,主要地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "How to enter the LAN or local network router in DNS" +msgstr "如何在 DNS 中进入 LAN 或本地网络路由器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "How to treat queries of this local domain" +msgstr "如何处理此本地域的查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:216 +msgid "IP4 All and IP6 Local" +msgstr "所有 IP4 及本地 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "IP4 Only" +msgstr "仅 IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "IP4 and IP6" +msgstr "IP4 及 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:217 +msgid "IP6 Only*" +msgstr "仅 IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "IP6 Preferred" +msgstr "首选 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:191 +msgid "Ignore" +msgstr "忽视" + +#: 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 "接口 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "LAN DNS" +msgstr "局域网 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Large" +msgstr "大" + +#: 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 "限制 RFC5011 副本之间的天数,以减少闪存写入" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Limit extended DNS packet size" +msgstr "限制扩展 DNS 数据包大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:132 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "链接到支持的程序,以将 DHCP 加载到 DNS 中" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "List domains to bypass checks of DNSSEC" +msgstr "列出要绕过 DNSSEC 检查的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:74 +msgid "Listening Port" +msgstr "监听端口" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "本地数据" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:145 +msgid "Local Domain" +msgstr "本地域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain Type" +msgstr "本地域名类型" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:207 +msgid "Local Host, Encrypted" +msgstr "本地主机,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:206 +msgid "Local Host, No Encryption" +msgstr "本地主机,无加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Local Service" +msgstr "本地服务" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Local Subnet, Encrypted" +msgstr "本地子网,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Local Subnet, Static Encryption" +msgstr "本地子网,静态加密" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "本地区域" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "日志" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:49 +msgid "Manual Conf" +msgstr "手动配置" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:228 +msgid "Medium" +msgstr "介质" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "Memory Resource" +msgstr "内存资源" + +#: 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 "可触发 Unbound 重新加载的网络(避免 wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:167 +msgid "No Entry" +msgstr "无条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:88 +msgid "No Filter" +msgstr "无过滤器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:133 +msgid "No Link" +msgstr "无链接" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:205 +msgid "No Remote Control" +msgstr "无远程控制" + +#: 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 "注意:SSL/TLS库缺少 API。请查看 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 "" +"组织转移转发、存根和权威区域<a href=\"%s\" target=\"_blank\">(帮助)</a>。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +msgid "Override the WAN side router entry in DNS" +msgstr "覆盖路由器中的 WAN 端 DNS 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:236 +msgid "Passive" +msgstr "被动" + +#: 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 "服务器将接收查询的端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:99 +msgid "Prefix for generated DNS64 addresses" +msgstr "生成 DNS64 地址的前缀" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Prevent excessively short cache periods" +msgstr "防止缓存期过短" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "防止 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 "防止本地子网内的上游响应" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Query Minimize" +msgstr "最小化查询" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "递归" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Recursion Protocol" +msgstr "递归协议" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Recursion Strength" +msgstr "递归强度" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "递归活动会增大内存使用和 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" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:157 +msgid "Refused" +msgstr "拒绝" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:40 +msgid "Resource" +msgstr "资源" + +#: 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 年龄" + +#: 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 "保存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Server Port" +msgstr "服务器端口" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 +msgid "Server TLS Port" +msgstr "服务器 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 "服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "该区域的服务器;有关选项格式,请参阅 README.md" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "显示:Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "显示:DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "显示:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:50 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "跳过 UCI 并使用 /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:227 +msgid "Small" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:158 +msgid "Static (local only)" +msgstr "静态(仅限本地)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "统计" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "状态" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Strict Minimize" +msgstr "严格最小化" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:249 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "严格版本的“最小化查询”,但会破坏 DNS 标准" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "存根(强制递归)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:71 +msgid "TLS Name Index" +msgstr "TLS 名称索引" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "TTL Minimum" +msgstr "最小 TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:103 +msgid "This could display more statistics with the unbound-control package." +msgstr "可以使用 unbound-control 包显示更多统计信息。" + +#: 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 "显示'" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:173 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "显示来自默认、.conf 或 control 的 Unbound “local-data:”条目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:149 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "显示来自默认、.conf 或 control 的 Unbound “local-zone:”条目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:125 +msgid "This shows Unbound self reported performance statistics." +msgstr "显示 Unbound 自我报告的性能统计信息。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:113 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "显示筛选出的涉及 Unbound 事件的 syslog。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:226 +msgid "Tiny" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Transparent (local/global)" +msgstr "透明(本地/全球)" + +#: 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 "触发网络" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "类型" + +#: 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>是一个验证、递归和缓" +"存 DNS 解析器<a href=\"%s\" target=\"_blank\">(帮助)</a>。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:202 +msgid "Unbound Control App" +msgstr "Unbound 控制应用程序" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:166 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "未定义" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "Use 'resolv.conf.auto'" +msgstr "使用“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 "使用 DHCPv4 MAC 发现 IP6 主机 SLAAC(EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:179 +msgid "Use Upstream" +msgstr "使用上游" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "使用 /etc/config/dhcp 中的额外 DNS 条目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "使用 系统/进程 菜单观察内存增长" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "包含在此区域组合中的区域(域)名称" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:76 +msgid "Zone Download URL" +msgstr "区域下载 URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "区域名称" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "区域类型" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "区域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "接受上游结果" + +#: 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 "默认" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from <var>%s</var>" +msgstr "从 <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 "从不" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "预取区域文件,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "进行递归,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "未知行为,为" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:205 +msgid "use <var>%s</var> nameservers" +msgstr "使用 <var>%s</var> 名称服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "使用名称服务器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:164 +msgid "with default certificate for <var>%s</var>" +msgstr "使用 <var>%s</var> 的默认证书" + +#~ msgid "Adblock domain list '" +#~ msgstr "Adblock 域名列表'" + +#~ msgid "Cache Dump" +#~ msgstr "缓存转储" + +#~ msgid "" +#~ "This shows Unbound 'cache_dump'. Useful to check if unbound is actually " +#~ "caching dns entities." +#~ msgstr "" +#~ "显示 Unbound的“cache_dump”。用于检查 unbound 是否实际缓存 dns 实体。" diff --git a/applications/luci-app-unbound/po/zh-tw/unbound.po b/applications/luci-app-unbound/po/zh-tw/unbound.po new file mode 100644 index 0000000000..504e33c123 --- /dev/null +++ b/applications/luci-app-unbound/po/zh-tw/unbound.po @@ -0,0 +1,755 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8\n" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 +msgid "(root)" +msgstr "(根)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:201 +msgid ", and <var>%s</var> entries" +msgstr ",及 <var>%s</var> 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:172 +msgid ", and try <var>%s</var>" +msgstr ",並嘗試 <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 "僅接受來自本地子網的查詢" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:214 +msgid "Adblock domain list is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:38 +msgid "Advanced" +msgstr "高階" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:237 +msgid "Aggressive" +msgstr "激進" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:34 +msgid "Allow open recursion when record not in zone" +msgstr "記錄不在區域中時允許遞迴查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:38 +msgid "Authoritative (zone file)" +msgstr "權威(區域檔案)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:33 +msgid "Basic" +msgstr "基本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:242 +msgid "Break down query components for limited added privacy" +msgstr "細分查詢元件以增加有限的隱私" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:69 +msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" +msgstr "打破 DNSSEC 需要 NTP,NTP 又需要 DNS 的迴圈" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:75 +msgid "Choose Unbounds listening port" +msgstr "選擇 Unbounds 監聽埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:213 +msgid "Chose the IP versions used upstream and downstream" +msgstr "選擇上游和下游使用的 IP 版本" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:56 +msgid "Connect to servers using TLS" +msgstr "使用 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 "DHCP 連結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:139 +msgid "DHCPv4 to SLAAC" +msgstr "DHCPv4 到 SLAAC" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:56 +msgid "DNS Cache" +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:55 +msgid "DNS over TLS" +msgstr "DNS over TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:98 +msgid "DNS64 Prefix" +msgstr "DNS64 字首" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:68 +msgid "DNSSEC NTP Fix" +msgstr "DNSSEC NTP 修復" + +#: 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 "預設" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:156 +msgid "Denied (nxdomain)" +msgstr "否認(nxdomain)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:22 +msgid "Directed Zone" +msgstr "轉移區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:77 +msgid "Directory only part of URL" +msgstr "目錄只是 URL 的一部分" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:106 +msgid "Domain Insecure" +msgstr "域不安全" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:72 +msgid "Domain name to verify TLS certificate" +msgstr "用於驗證 TLS 證書的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:146 +msgid "Domain suffix for this router and DHCP clients" +msgstr "此路由器和 DHCP 客戶端的域名字尾" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:254 +msgid "EDNS Size" +msgstr "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 "編輯'" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/server.lua:14 +msgid "Edit 'server:' clause options for 'include:" +msgstr "編輯“server:”子選項,位於'include:" + +#: 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 "編輯 Unbound 使用的轉發、存根或區域檔案快取區域,而不進行遞迴查詢。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/extended.lua:14 +msgid "Edit clauses such as 'forward-zone:' for 'include:" +msgstr "編輯子選項,例如“forward-zone:”,位於'include:" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:85 +msgid "Edit: Extended" +msgstr "編輯:擴充套件" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:82 +msgid "Edit: Server" +msgstr "編輯:伺服器" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:70 +msgid "Edit: UCI" +msgstr "編輯:UCI" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:77 +msgid "Edit: Unbound" +msgstr "編輯:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:39 +msgid "Enable" +msgstr "啟用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:93 +msgid "Enable DNS64" +msgstr "啟用 DNS64" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:63 +msgid "Enable DNSSEC" +msgstr "啟用 DNSSEC" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:45 +msgid "Enable Unbound" +msgstr "啟用 Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:203 +msgid "Enable access for unbound-control" +msgstr "啟用 unbound-control 訪問" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:94 +msgid "Enable the DNS64 module" +msgstr "啟用 DNS64 模組" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:64 +msgid "Enable the DNSSEC validator module" +msgstr "啟用 DNSSEC 驗證模組" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:46 +msgid "Enable the initialization scripts for Unbound" +msgstr "啟用 Unbound 的初始化指令碼" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:30 +msgid "Enable this directed zone" +msgstr "啟用此轉移區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:29 +msgid "Enabled" +msgstr "啟用" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:266 +msgid "Extended Statistics" +msgstr "擴充套件統計" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:267 +msgid "Extended statistics are printed from unbound-control" +msgstr "擴充套件統計資訊從 unbound-control 列印" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:188 +msgid "Extra DNS" +msgstr "額外的 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:33 +msgid "Fall Back" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:36 +msgid "Fallback" +msgstr "回退" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:65 +msgid "Files" +msgstr "檔案" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:90 +msgid "Filter Entire Subnet" +msgstr "過濾整個子網" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:81 +msgid "Filter Localhost Rebind" +msgstr "過濾本地主機重繫結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:89 +msgid "Filter Private Address" +msgstr "過濾私有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:86 +msgid "Filter Private Rebind" +msgstr "過濾私有地址重繫結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:71 +msgid "Forward" +msgstr "轉發" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:40 +msgid "Forward (simple handoff)" +msgstr "轉發(簡單切換)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:68 +msgid "Forward TLS" +msgstr "轉發 TLS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:52 +msgid "Forward to upstream nameservers (ISP)" +msgstr "轉發到上游名稱伺服器(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,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:192 +msgid "Host Records" +msgstr "主機記錄" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:193 +msgid "Host/MX/SRV RR" +msgstr "主機/MX/SRV RR" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:194 +msgid "Host/MX/SRV/CNAME RR" +msgstr "主機/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 "主機名,所有地址" + +#: 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 "主機名,主要地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:165 +msgid "How to enter the LAN or local network router in DNS" +msgstr "如何在 DNS 中進入 LAN 或本地網路路由器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:154 +msgid "How to treat queries of this local domain" +msgstr "如何處理此本地域的查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:216 +msgid "IP4 All and IP6 Local" +msgstr "所有 IP4 及本地 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:215 +msgid "IP4 Only" +msgstr "僅 IP4" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:219 +msgid "IP4 and IP6" +msgstr "IP4 及 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:217 +msgid "IP6 Only*" +msgstr "僅 IP6*" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:218 +msgid "IP6 Preferred" +msgstr "首選 IP6" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:191 +msgid "Ignore" +msgstr "忽視" + +#: 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 "介面 FQDN,所有地址" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:164 +msgid "LAN DNS" +msgstr "區域網 DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:229 +msgid "Large" +msgstr "大" + +#: 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 "限制 RFC5011 副本之間的天數,以減少快閃記憶體寫入" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:255 +msgid "Limit extended DNS packet size" +msgstr "限制擴充套件 DNS 資料包大小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:132 +msgid "Link to supported programs to load DHCP into DNS" +msgstr "連結到支援的程式,以將 DHCP 載入到 DNS 中" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:107 +msgid "List domains to bypass checks of DNSSEC" +msgstr "列出要繞過 DNSSEC 檢查的域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:74 +msgid "Listening Port" +msgstr "監聽埠" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:50 +msgid "Local Data" +msgstr "本地資料" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:145 +msgid "Local Domain" +msgstr "本地域名" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:153 +msgid "Local Domain Type" +msgstr "本地域名型別" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:207 +msgid "Local Host, Encrypted" +msgstr "本地主機,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:206 +msgid "Local Host, No Encryption" +msgstr "本地主機,無加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:58 +msgid "Local Service" +msgstr "本地服務" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:208 +msgid "Local Subnet, Encrypted" +msgstr "本地子網,加密" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:209 +msgid "Local Subnet, Static Encryption" +msgstr "本地子網,靜態加密" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:53 +msgid "Local Zones" +msgstr "本地區域" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:41 +msgid "Log" +msgstr "日誌" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:49 +msgid "Manual Conf" +msgstr "手動配置" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:228 +msgid "Medium" +msgstr "介質" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:223 +msgid "Memory Resource" +msgstr "記憶體資源" + +#: 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 "可觸發 Unbound 重新載入的網路(避免 wan6)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:167 +msgid "No Entry" +msgstr "無條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:88 +msgid "No Filter" +msgstr "無過濾器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:133 +msgid "No Link" +msgstr "無連結" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:205 +msgid "No Remote Control" +msgstr "無遠端控制" + +#: 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 "注意:SSL/TLS庫缺少 API。請檢視 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 "" +"組織轉移轉發、存根和權威區域<a href=\"%s\" target=\"_blank\">(幫助)</a>。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:177 +msgid "Override the WAN side router entry in DNS" +msgstr "覆蓋路由器中的 WAN 端 DNS 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:236 +msgid "Passive" +msgstr "被動" + +#: 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 "伺服器將接收查詢的埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:99 +msgid "Prefix for generated DNS64 addresses" +msgstr "生成 DNS64 地址的字首" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:261 +msgid "Prevent excessively short cache periods" +msgstr "防止快取期過短" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:82 +msgid "Protect against upstream response of 127.0.0.0/8" +msgstr "防止 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 "防止本地子網內的上游響應" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:241 +msgid "Query Minimize" +msgstr "最小化查詢" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:75 +msgid "Recurse" +msgstr "遞迴" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:212 +msgid "Recursion Protocol" +msgstr "遞迴協議" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:233 +msgid "Recursion Strength" +msgstr "遞迴強度" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:234 +msgid "Recursion activity affects memory growth and CPU load" +msgstr "遞迴活動會增大記憶體使用和 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" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:157 +msgid "Refused" +msgstr "拒絕" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:40 +msgid "Resource" +msgstr "資源" + +#: 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 年齡" + +#: 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 "儲存" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:59 +msgid "Server Port" +msgstr "伺服器埠" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:65 +msgid "Server TLS Port" +msgstr "伺服器 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 "伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:48 +msgid "Servers for this zone; see README.md for optional form" +msgstr "該區域的伺服器;有關選項格式,請參閱 README.md" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:96 +msgid "Show: Adblock" +msgstr "顯示:Adblock" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:90 +msgid "Show: DHCP" +msgstr "顯示:DHCP" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:73 +msgid "Show: Unbound" +msgstr "顯示:Unbound" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:50 +msgid "Skip UCI and use /etc/unbound/unbound.conf" +msgstr "跳過 UCI 並使用 /etc/unbound/unbound.conf" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:227 +msgid "Small" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:158 +msgid "Static (local only)" +msgstr "靜態(僅限本地)" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:47 +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:59 +msgid "Statistics" +msgstr "統計" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:38 +msgid "Status" +msgstr "狀態" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:248 +msgid "Strict Minimize" +msgstr "嚴格最小化" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:249 +msgid "Strict version of 'query minimize' but it can break DNS" +msgstr "嚴格版本的“最小化查詢”,但會破壞 DNS 標準" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:39 +msgid "Stub (forced recursion)" +msgstr "存根(強制遞迴)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:71 +msgid "TLS Name Index" +msgstr "TLS 名稱索引" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:260 +msgid "TTL Minimum" +msgstr "最小 TTL" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:103 +msgid "This could display more statistics with the unbound-control package." +msgstr "可以使用 unbound-control 包顯示更多統計資訊。" + +#: 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 "顯示'" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:173 +msgid "" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 +msgid "" +"This shows Unbound 'local-data:' entries from default, .conf, or control." +msgstr "顯示來自預設、.conf 或 control 的 Unbound “local-data:”條目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:149 +msgid "" +"This shows Unbound 'local-zone:' entries from default, .conf, or control." +msgstr "顯示來自預設、.conf 或 control 的 Unbound “local-zone:”條目。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:125 +msgid "This shows Unbound self reported performance statistics." +msgstr "顯示 Unbound 自我報告的效能統計資訊。" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:113 +msgid "This shows syslog filtered for events involving Unbound." +msgstr "顯示篩選出的涉及 Unbound 事件的 syslog。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:226 +msgid "Tiny" +msgstr "小" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:159 +msgid "Transparent (local/global)" +msgstr "透明(本地/全球)" + +#: 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 "觸發網路" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:27 +msgid "Type" +msgstr "型別" + +#: 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>是一個驗證、遞迴和緩" +"存 DNS 解析器<a href=\"%s\" target=\"_blank\">(幫助)</a>。" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:202 +msgid "Unbound Control App" +msgstr "Unbound 控制應用程式" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:166 +msgid "Unbound cache is too large to display in LuCI." +msgstr "" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:81 +msgid "Undefined" +msgstr "未定義" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:51 +msgid "Use 'resolv.conf.auto'" +msgstr "使用“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 "使用 DHCPv4 MAC 發現 IP6 主機 SLAAC(EUI64)" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:179 +msgid "Use Upstream" +msgstr "使用上游" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:189 +msgid "Use extra DNS entries found in /etc/config/dhcp" +msgstr "使用 /etc/config/dhcp 中的額外 DNS 條目" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:224 +msgid "Use menu System/Processes to observe any memory growth" +msgstr "使用 系統/程序 選單觀察記憶體增長" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua:176 +msgid "WAN DNS" +msgstr "WAN DNS" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:44 +msgid "Zone (Domain) names included in this zone combination" +msgstr "包含在此區域組合中的區域(域)名稱" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:76 +msgid "Zone Download URL" +msgstr "區域下載 URL" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:43 +msgid "Zone Names" +msgstr "區域名稱" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zone-details.lua:37 +msgid "Zone Type" +msgstr "區域型別" + +#: applications/luci-app-unbound/luasrc/controller/unbound.lua:32 +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:30 +msgid "Zones" +msgstr "區域" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:112 +msgid "accept upstream results for" +msgstr "接受上游結果" + +#: 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 "預設" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:175 +msgid "download from <var>%s</var>" +msgstr "從 <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 "從不" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:118 +msgid "prefetch zone files for" +msgstr "預取區域檔案,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:115 +msgid "select recursion for" +msgstr "進行遞迴,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:121 +msgid "unknown action for" +msgstr "未知行為,為" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:205 +msgid "use <var>%s</var> nameservers" +msgstr "使用 <var>%s</var> 名稱伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:156 +msgid "use nameservers" +msgstr "使用名稱伺服器" + +#: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:164 +msgid "with default certificate for <var>%s</var>" +msgstr "使用 <var>%s</var> 的預設證書" + +#~ msgid "Adblock domain list '" +#~ msgstr "Adblock 域名列表'" + +#~ msgid "Cache Dump" +#~ msgstr "快取轉儲" + +#~ msgid "" +#~ "This shows Unbound 'cache_dump'. Useful to check if unbound is actually " +#~ "caching dns entities." +#~ msgstr "" +#~ "顯示 Unbound的“cache_dump”。用於檢查 unbound 是否實際快取 dns 實體。" diff --git a/applications/luci-app-wifischedule/po/de/wifischedule.po b/applications/luci-app-wifischedule/po/de/wifischedule.po index 4addd09185..3ef1502b81 100644 --- a/applications/luci-app-wifischedule/po/de/wifischedule.po +++ b/applications/luci-app-wifischedule/po/de/wifischedule.po @@ -1,101 +1,139 @@ msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" +msgstr "Content-Type: text/plain; charset=UTF-8\n" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:79 msgid "Activate wifi" msgstr "WLAN aktivieren" +#: 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" msgstr "Konnte /usr/bin/wifi_schedule.sh oder /sbin/wifi nicht finden" -msgid "Could not find required programm /usr/bin/iwinfo" -msgstr "Konnte /usr/bin/iwinfo nicht finden" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:242 +msgid "Could not find required program /usr/bin/iwinfo" +msgstr "" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:41 msgid "Cron Jobs" msgstr "" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:152 msgid "Day(s) of Week" msgstr "Wochentag(e)" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:39 msgid "Defines a schedule when to turn on and off wifi." -msgstr "Definiert einen Zeitplan, wann das WLAN ein- und ausgeschaltet werden soll" +msgstr "" +"Definiert einen Zeitplan, wann das WLAN ein- und ausgeschaltet werden soll" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:131 msgid "Determine Modules Automatically" msgstr "Module automatisch ermitteln" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:86 msgid "Disable wifi gracefully" msgstr "Wifi ordnungsgemäß deaktivieren" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:93 msgid "Disabled wifi forced" msgstr "Wifi abrupt deaktivieren" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:146 msgid "Enable" msgstr "Aktivieren" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:53 msgid "Enable Wifi Schedule" msgstr "Wifi-Zeitschaltung aktivieren" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:72 msgid "Enable logging" msgstr "Protokollierung aktivieren" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:233 msgid "Force disabling wifi even if stations associated" msgstr "Deaktivieren des WLANs auch bei verbundenen Stationen" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:159 msgid "Friday" msgstr "Freitag" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:46 msgid "Global Settings" msgstr "Globale Einstellungen" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:155 msgid "Monday" msgstr "Montag" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:160 msgid "Saturday" msgstr "Samstag" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:27 msgid "Schedule" msgstr "Zeitschaltung" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:140 msgid "Schedule events" msgstr "Ereignisse planen" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:194 msgid "Start Time" msgstr "Startzeit" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:165 msgid "Start WiFi" msgstr "WiFi starten" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:228 msgid "Stop Time" msgstr "Stoppzeit" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:199 msgid "Stop WiFi" msgstr "WiFi stoppen" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:161 msgid "Sunday" msgstr "Sonntag" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:33 msgid "The value %s is invalid" msgstr "Der Wert %s ist ungültig" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:158 msgid "Thursday" msgstr "Donnerstag" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:156 msgid "Tuesday" msgstr "Dienstag" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:100 msgid "Unload Modules (experimental; saves more power)" msgstr "Module entladen (experimentell - spart mehr Energie)" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:29 msgid "View Cron Jobs" msgstr "Cron-Jobs anzeigen" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:28 msgid "View Logfile" msgstr "Protokolldatei anzeigen" +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:157 msgid "Wednesday" msgstr "Mittwoch" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:26 +#: applications/luci-app-wifischedule/luasrc/model/cbi/wifischedule/wifi_schedule.lua:39 msgid "Wifi Schedule" msgstr "Wifi-Zeitschaltung" +#: applications/luci-app-wifischedule/luasrc/controller/wifischedule/wifi_schedule.lua:35 msgid "Wifi Schedule Logfile" msgstr "Protokolldatei für Wifi-Zeitschaltung" + +#~ msgid "Could not find required programm /usr/bin/iwinfo" +#~ msgstr "Konnte /usr/bin/iwinfo nicht finden" diff --git a/applications/luci-app-wireguard/po/zh-cn/wireguard.po b/applications/luci-app-wireguard/po/zh-cn/wireguard.po index 3d173e596b..1c5d2410de 100644 --- a/applications/luci-app-wireguard/po/zh-cn/wireguard.po +++ b/applications/luci-app-wireguard/po/zh-cn/wireguard.po @@ -1,16 +1,16 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. +# Yangfl <mmyangfl@gmail.com>, 2018-2019. # msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-08-07 20:23+0800\n" +"PO-Revision-Date: 2019-01-03 20:51+0800\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: zh_CN\n" @@ -79,7 +79,7 @@ msgstr "公钥" #: applications/luci-app-wireguard/luasrc/view/wireguard.htm:199 msgid "Show/Hide QR-Code" -msgstr "" +msgstr "显示/隐藏 QR 码" #: applications/luci-app-wireguard/luasrc/controller/wireguard.lua:7 msgid "WireGuard Status" diff --git a/applications/luci-app-wireguard/po/zh-tw/wireguard.po b/applications/luci-app-wireguard/po/zh-tw/wireguard.po index 84953036e6..53f26d9faa 100644 --- a/applications/luci-app-wireguard/po/zh-tw/wireguard.po +++ b/applications/luci-app-wireguard/po/zh-tw/wireguard.po @@ -1,19 +1,19 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. +# Yangfl <mmyangfl@gmail.com>, 2018-2019. # msgid "" msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2018-08-07 20:23+0800\n" +"PO-Revision-Date: 2019-01-03 20:51+0800\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Gtranslator 2.91.7\n" +"X-Generator: Gtranslator 3.30.1\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" -"Language: zh_TW\n" +"Language: zh_CN\n" #: applications/luci-app-wireguard/luasrc/view/wireguard.htm:157 msgid "Allowed IPs" @@ -79,7 +79,7 @@ msgstr "公鑰" #: applications/luci-app-wireguard/luasrc/view/wireguard.htm:199 msgid "Show/Hide QR-Code" -msgstr "" +msgstr "顯示/隱藏 QR 碼" #: applications/luci-app-wireguard/luasrc/controller/wireguard.lua:7 msgid "WireGuard Status" |