diff options
171 files changed, 12777 insertions, 11349 deletions
diff --git a/applications/luci-app-adblock/luasrc/controller/adblock.lua b/applications/luci-app-adblock/luasrc/controller/adblock.lua index 4641ac93bb..d75296275f 100644 --- a/applications/luci-app-adblock/luasrc/controller/adblock.lua +++ b/applications/luci-app-adblock/luasrc/controller/adblock.lua @@ -16,7 +16,9 @@ function index() end entry({"admin", "services", "adblock"}, firstchild(), _("Adblock"), 30).dependent = false entry({"admin", "services", "adblock", "tab_from_cbi"}, cbi("adblock/overview_tab", {hideresetbtn=true, hidesavebtn=true}), _("Overview"), 10).leaf = true - entry({"admin", "services", "adblock", "report"}, template("adblock/report"), _("DNS Query Report"), 20).leaf = true + if nixio.fs.access("/usr/sbin/tcpdump") then + entry({"admin", "services", "adblock", "report"}, template("adblock/report"), _("DNS Query Report"), 20).leaf = true + end entry({"admin", "services", "adblock", "log"}, template("adblock/logread"), _("Logfile"), 30).leaf = true entry({"admin", "services", "adblock", "advanced"}, firstchild(), _("Advanced"), 100) entry({"admin", "services", "adblock", "advanced", "blacklist"}, form("adblock/blacklist_tab"), _("Edit Blacklist"), 110).leaf = true @@ -143,14 +145,8 @@ function report_text() end function logread() - local content + local content = util.trim(util.exec("logread -e 'adblock-'")) or "" - if nixio.fs.access("/var/log/messages") then - content = util.trim(util.exec("grep -F 'adblock-' /var/log/messages")) - else - content = util.trim(util.exec("logread -e 'adblock-'")) - end - if content == "" then content = "No adblock related logs yet!" end diff --git a/applications/luci-app-adblock/luasrc/view/adblock/blocklist.htm b/applications/luci-app-adblock/luasrc/view/adblock/blocklist.htm index e145a3b4ef..c90afe7687 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/blocklist.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/blocklist.htm @@ -27,7 +27,7 @@ local anonclass = (not self.anonymous or self.sectiontitle) and "named" or "ano for i, k in ipairs(self:cfgsections()) do section = k local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k) - local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname) + local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true) isempty = false scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" } -%> diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index 40e27c4f3f..43d35997f1 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -43,7 +43,7 @@ msgstr "Versione Adblock" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Tempo addizionale in secondi di attesa prima che adblock si avvii." -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" msgstr "Avanzato" @@ -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 "" @@ -139,7 +139,7 @@ msgstr "" msgid "DNS Directory" msgstr "Directory DNS" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "" @@ -167,6 +167,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "" @@ -175,15 +179,15 @@ msgstr "" msgid "Download Utility (SSL Library)" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "Modifica Lista Nera" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "Modifica Configurazione" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "Modifica Lista Bianca" @@ -207,12 +211,6 @@ msgstr "Attiva Backup Lista di Blocco" msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" @@ -222,7 +220,7 @@ msgstr "" 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 "" @@ -230,6 +228,16 @@ msgstr "" msgid "Extra Options" msgstr "Opzioni Extra" +#: 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 "" @@ -254,10 +262,6 @@ msgstr "" msgid "Force Local DNS" msgstr "Forza DNS Locale" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "Forza Ordinamento Globale" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" @@ -278,7 +282,7 @@ 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 "" @@ -298,12 +302,12 @@ 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" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "" @@ -367,7 +371,7 @@ msgstr "" msgid "Query" msgstr "Interrogazione" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "Interrogazione domini" @@ -394,7 +398,7 @@ 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 "" @@ -473,7 +477,7 @@ 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 "" @@ -564,11 +568,11 @@ 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 "" @@ -608,5 +612,8 @@ msgid "" "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 a9eb968e67..3b4e3a1bfa 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -8,7 +8,7 @@ msgstr "" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2\n" +"X-Generator: Poedit 2.2.1\n" "Language: ja\n" #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:154 @@ -45,7 +45,7 @@ msgstr "Adblock ãƒãƒ¼ã‚¸ãƒ§ãƒ³" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Adblock ã®å‡¦ç†ãŒé–‹å§‹ã•ã‚Œã‚‹ã¾ã§ã®ã€è¿½åŠ ã®é…延時間(秒)ã§ã™ã€‚" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" 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 クエリ" @@ -147,7 +147,7 @@ msgstr "DNS ãƒãƒƒã‚¯ã‚¨ãƒ³ãƒ‰ï¼ˆDNS ディレクトリ)" msgid "DNS Directory" msgstr "DNS ディレクトリ" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "DNS クエリ レãƒãƒ¼ãƒˆ" @@ -175,6 +175,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "ダウンãƒãƒ¼ãƒ‰ ユーティリティ" @@ -183,15 +187,15 @@ msgstr "ダウンãƒãƒ¼ãƒ‰ ユーティリティ" msgid "Download Utility (SSL Library)" msgstr "ダウンãƒãƒ¼ãƒ‰ ユーティリティ(SSL ライブラリ)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "ブラックリストã®ç·¨é›†" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "è¨å®šã®ç·¨é›†" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "ホワイトリストã®ç·¨é›†" @@ -215,14 +219,6 @@ msgstr "ブãƒãƒƒã‚¯ãƒªã‚¹ãƒˆ ãƒãƒƒã‚¯ã‚¢ãƒƒãƒ—ã®æœ‰åŠ¹åŒ–" msgid "Enable DNS Query Report" msgstr "DNS クエリ レãƒãƒ¼ãƒˆã®æœ‰åŠ¹åŒ–" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" @@ -232,7 +228,7 @@ msgstr "" 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 "終了日" @@ -240,6 +236,18 @@ msgstr "終了日" msgid "Extra Options" msgstr "拡張オプション" +#: 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 "" +"DNS クエリã®çµæžœã‚»ãƒƒãƒˆã‚’ã€æŒ‡å®šã—ãŸãƒ‰ãƒ¡ã‚¤ãƒ³ã‚„クライアントã€æ—¥æ™‚ã«ã‚ˆã£ã¦ãƒ•ã‚£ãƒ«" +"ã‚¿ã—ã¾ã™ã€‚" + #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:183 msgid "Flush DNS Cache" msgstr "DNS ã‚ャッシュã®ã‚¯ãƒªã‚¢" @@ -268,10 +276,6 @@ msgstr "" msgid "Force Local DNS" msgstr "ãƒãƒ¼ã‚«ãƒ« DNS ã®å¼·åˆ¶" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "全体ソートã®å¼·åˆ¶" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "ホワイトリスト ファイルã¸ã®ãƒ•ãƒ«ãƒ‘スã§ã™ã€‚" @@ -294,7 +298,7 @@ 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 クエリ" @@ -318,12 +322,12 @@ 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 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "ãƒã‚°ãƒ•ã‚¡ã‚¤ãƒ«" @@ -388,7 +392,7 @@ msgstr "" msgid "Query" msgstr "検索" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "ドメインã®æ¤œç´¢" @@ -419,7 +423,7 @@ 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 "レãƒãƒ¼ãƒˆã‚’リフレッシュ" @@ -507,7 +511,7 @@ msgstr "" "tcpdump ã«ã‚ˆã‚Šä½¿ç”¨ã•ã‚Œã‚‹ã€ãƒ¬ãƒãƒ¼ãƒˆã‚’è¡Œã†ãƒãƒ¼ãƒˆã®ã‚¹ãƒšãƒ¼ã‚¹ã§åŒºåˆ‡ã‚‰ã‚ŒãŸãƒªã‚¹ãƒˆã§" "ã™ã€‚(è¦å®šå€¤: '53')" -#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:205 +#: applications/luci-app-adblock/luasrc/view/adblock/report.htm:256 msgid "Start Date" msgstr "開始日" @@ -608,11 +612,11 @@ 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 クエリ" diff --git a/applications/luci-app-adblock/po/pt-br/adblock.po b/applications/luci-app-adblock/po/pt-br/adblock.po index 43c8b1c4a1..389797a8ee 100644 --- a/applications/luci-app-adblock/po/pt-br/adblock.po +++ b/applications/luci-app-adblock/po/pt-br/adblock.po @@ -48,7 +48,7 @@ msgstr "" "Atraso de gatilho adicional em segundos antes do processamento do adblock " "começar." -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" msgstr "Avançado" @@ -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 "" @@ -150,7 +150,7 @@ msgstr "Serviço DNS (Diretório DNS)" msgid "DNS Directory" msgstr "Diretório DNS" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "" @@ -178,6 +178,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "Ferramenta para Baixar" @@ -186,15 +190,15 @@ msgstr "Ferramenta para Baixar" msgid "Download Utility (SSL Library)" msgstr "Utilitário de Download (Biblioteca SSL)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "Editar Lista de Bloqueio" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "Editar Configuração" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "Editar Lista Permitida" @@ -218,14 +222,6 @@ msgstr "Habilitar cópia de segurança da lista de bloqueio" msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" @@ -236,7 +232,7 @@ msgstr "" 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 "" @@ -244,6 +240,16 @@ msgstr "" msgid "Extra Options" msgstr "Opções adicionais" +#: 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" @@ -272,10 +278,6 @@ msgstr "" msgid "Force Local DNS" msgstr "Force o DNS local" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "Force Tipo Geral" - #: 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." @@ -296,7 +298,7 @@ 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 "" @@ -320,12 +322,12 @@ 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" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "" @@ -389,7 +391,7 @@ msgstr "" msgid "Query" msgstr "Consulta" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "Consulta de domÃnios" @@ -420,7 +422,7 @@ 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 "" @@ -503,7 +505,7 @@ 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 "" @@ -595,11 +597,11 @@ 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 "" @@ -642,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 58febecfc7..2eebc37d68 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -49,7 +49,7 @@ msgstr "ВерÑÐ¸Ñ Adblock" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "Ð”Ð¾Ð¿Ð¾Ð»Ð½Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð·Ð°Ð´ÐµÑ€Ð¶ÐºÐ° в Ñекундах до начала работы Adblock." -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" 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 "" @@ -148,7 +148,7 @@ msgstr "DNS бÑкенд (папка DNS)" msgid "DNS Directory" msgstr "Папка DNS" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "" @@ -176,6 +176,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "Утилита Ð´Ð»Ñ ÑкачиваниÑ" @@ -184,15 +188,15 @@ msgstr "Утилита Ð´Ð»Ñ ÑкачиваниÑ" msgid "Download Utility (SSL Library)" msgstr "Утилита Ð´Ð»Ñ ÑÐºÐ°Ñ‡Ð¸Ð²Ð°Ð½Ð¸Ñ (Ñ Ð±Ð¸Ð±Ð»Ð¸Ð¾Ñ‚ÐµÐºÐ¾Ð¹ SSL)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "Редактировать Черный ÑпиÑок" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "Редактировать config файл" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "Редактировать Белый ÑпиÑок" @@ -216,15 +220,6 @@ msgstr "БÑкап ÑпиÑка блокировок" msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "Включить подробное ведение журнала отладки в Ñлучае ошибок обработки." @@ -233,7 +228,7 @@ msgstr "Включить подробное ведение журнала отл 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 "" @@ -241,6 +236,16 @@ msgstr "" msgid "Extra Options" msgstr "Дополнительные наÑтройки" +#: 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" @@ -269,10 +274,6 @@ msgstr "" msgid "Force Local DNS" msgstr "Локальный DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "ÐŸÑ€Ð¸Ð½ÑƒÐ´Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ð°Ñ Ð¿Ð¾Ð»Ð½Ð°Ñ Ñортировка" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "Полный путь к файлу Белого ÑпиÑка." @@ -293,7 +294,7 @@ 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 "" @@ -315,12 +316,12 @@ 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 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "" @@ -383,7 +384,7 @@ msgstr "" msgid "Query" msgstr "ЗапроÑ" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ Ð´Ð¾Ð¼ÐµÐ½Ð¾Ð²" @@ -410,7 +411,7 @@ 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 "" @@ -489,7 +490,7 @@ 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 "" @@ -582,11 +583,11 @@ 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 "" @@ -629,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 90c12c7114..680e038bdc 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -33,7 +33,7 @@ msgstr "Version av Adblock" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" msgstr "Avancerat" @@ -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 "" @@ -130,7 +130,7 @@ msgstr "DNS-bakände (DNS-mapp)" msgid "DNS Directory" msgstr "DNS-mapp" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "" @@ -158,6 +158,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "" @@ -166,15 +170,15 @@ msgstr "" msgid "Download Utility (SSL Library)" msgstr "Nerladdningsprogram (SSL-bibliotek)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "Redigera svartlista" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "Redigerar konfigurationen" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "Redigera vitlista" @@ -198,12 +202,6 @@ msgstr "Aktivera säkerhetskopiering av blockeringslistan" msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" @@ -212,7 +210,7 @@ msgstr "" 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 "" @@ -220,6 +218,16 @@ msgstr "" msgid "Extra Options" msgstr "Extra alternativ" +#: 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 "" @@ -244,10 +252,6 @@ msgstr "" msgid "Force Local DNS" msgstr "Tvinga lokal DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" @@ -269,7 +273,7 @@ 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 "" @@ -289,12 +293,12 @@ 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" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "" @@ -353,7 +357,7 @@ msgstr "" msgid "Query" msgstr "FrÃ¥ga" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "FrÃ¥ga efter domäner" @@ -380,7 +384,7 @@ 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 "" @@ -459,7 +463,7 @@ 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 "" @@ -546,11 +550,11 @@ msgid "" "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 "" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index 0db673683c..20904c8350 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -33,7 +33,7 @@ msgstr "" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" 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 "" @@ -125,7 +125,7 @@ msgstr "" msgid "DNS Directory" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "" @@ -151,6 +151,10 @@ msgstr "" 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:35 msgid "Download Utility" msgstr "" @@ -159,15 +163,15 @@ msgstr "" msgid "Download Utility (SSL Library)" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "" @@ -191,12 +195,6 @@ msgstr "" msgid "Enable DNS Query Report" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "" @@ -205,7 +203,7 @@ msgstr "" 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 "" @@ -213,6 +211,16 @@ msgstr "" msgid "Extra Options" msgstr "" +#: 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 "" @@ -237,10 +245,6 @@ msgstr "" msgid "Force Local DNS" msgstr "" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "" @@ -261,7 +265,7 @@ 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 "" @@ -281,12 +285,12 @@ 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 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "" @@ -345,7 +349,7 @@ msgstr "" msgid "Query" msgstr "" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "" @@ -372,7 +376,7 @@ 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 "" @@ -451,7 +455,7 @@ 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 "" @@ -536,11 +540,11 @@ msgid "" "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 "" diff --git a/applications/luci-app-adblock/po/zh-cn/adblock.po b/applications/luci-app-adblock/po/zh-cn/adblock.po index b03f8a0bbc..0735c79f67 100644 --- a/applications/luci-app-adblock/po/zh-cn/adblock.po +++ b/applications/luci-app-adblock/po/zh-cn/adblock.po @@ -49,7 +49,7 @@ msgstr "Adblock 版本" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "è§¦å‘ Adblock 开始处ç†å‰çš„é¢å¤–延迟(秒)。" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" 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 "已拦截的 DNS 请求" @@ -145,7 +145,7 @@ msgstr "DNS åŽç«¯ï¼ˆDNS 目录)" msgid "DNS Directory" msgstr "DNS 目录" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "DNS 查询报告" @@ -171,6 +171,10 @@ msgstr "å¯åŠ¨æœŸé—´ä¸è¦è‡ªåŠ¨æ›´æ–° blocklists,改用 blocklists 的备份ã 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:35 msgid "Download Utility" msgstr "下载工具" @@ -179,15 +183,15 @@ msgstr "下载工具" msgid "Download Utility (SSL Library)" msgstr "下载实用程åºï¼ˆSSL 库)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "编辑黑åå•" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "编辑设置" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "编辑白åå•" @@ -211,12 +215,6 @@ msgstr "å¯ç”¨ Blocklist 备份" msgid "Enable DNS Query Report" msgstr "å¯ç”¨ DNS 查询报告" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "在出现任何处ç†é”™è¯¯çš„情况下å¯ç”¨è¯¦ç»†è°ƒè¯•æ—¥å¿—记录。" @@ -225,7 +223,7 @@ msgstr "在出现任何处ç†é”™è¯¯çš„情况下å¯ç”¨è¯¦ç»†è°ƒè¯•æ—¥å¿—记录。 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 "结æŸæ—¥æœŸ" @@ -233,6 +231,16 @@ msgstr "结æŸæ—¥æœŸ" msgid "Extra Options" msgstr "é¢å¤–选项" +#: 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 缓å˜" @@ -257,10 +265,6 @@ msgstr "为了进一æ¥æ高性能,您å¯ä»¥æ高æ¤å€¼ï¼Œä¾‹å¦‚:8 或 16 msgid "Force Local DNS" msgstr "强制本地 DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "强制整体排åº" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "白åå•æ–‡ä»¶çš„全路径。" @@ -281,7 +285,7 @@ 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 查询" @@ -301,12 +305,12 @@ 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 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "日志文件" @@ -367,7 +371,7 @@ msgstr "请注æ„:这需è¦æ‰‹åŠ¨å®‰è£…和设置“tcpdump-miniâ€è½¯ä»¶åŒ…。 msgid "Query" msgstr "查询" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "查询域" @@ -398,7 +402,7 @@ 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 "刷新报告" @@ -477,7 +481,7 @@ 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 "开始日期" @@ -563,11 +567,11 @@ msgid "" "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 "å‰å报告" -#: 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 查询总数" @@ -607,5 +611,14 @@ msgid "" "value to 150000." msgstr "例如:è¦æŽ¥æ”¶æ¯ä¸ª adblock 更新的电å邮件通知时将æ¤å€¼è®¾ç½®ä¸º 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 "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 e3f91b8d93..98512432d0 100644 --- a/applications/luci-app-adblock/po/zh-tw/adblock.po +++ b/applications/luci-app-adblock/po/zh-tw/adblock.po @@ -49,7 +49,7 @@ msgstr "Adblock 版本" msgid "Additional trigger delay in seconds before adblock processing begins." msgstr "觸發 Adblock 開始處ç†å‰çš„é¡å¤–延é²ï¼ˆç§’)。" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:21 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 msgid "Advanced" 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 "已攔截的 DNS 請求" @@ -145,7 +145,7 @@ msgstr "DNS 後端(DNS 目錄)" msgid "DNS Directory" msgstr "DNS 目錄" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:19 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:20 msgid "DNS Query Report" msgstr "DNS æŸ¥è©¢å ±å‘Š" @@ -171,6 +171,10 @@ msgstr "啟動期間ä¸è¦è‡ªå‹•æ›´æ–° blocklists,改用 blocklists 的備份ã 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:35 msgid "Download Utility" msgstr "下載工具" @@ -179,15 +183,15 @@ msgstr "下載工具" msgid "Download Utility (SSL Library)" msgstr "下載實用程å¼ï¼ˆSSL 庫)" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 msgid "Edit Blacklist" msgstr "編輯黑åå–®" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:24 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:26 msgid "Edit Configuration" msgstr "編輯è¨å®š" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:23 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 msgid "Edit Whitelist" msgstr "編輯白åå–®" @@ -211,13 +215,6 @@ msgstr "啟用 Blocklist 備份" msgid "Enable DNS Query Report" msgstr "啟用 DNS æŸ¥è©¢å ±å‘Š" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:226 -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:98 msgid "Enable verbose debug logging in case of any processing error." msgstr "在出ç¾ä»»ä½•è™•ç†éŒ¯èª¤çš„情æ³ä¸‹å•Ÿç”¨è©³ç´°é™¤éŒ¯æ—¥èªŒè¨˜éŒ„。" @@ -226,7 +223,7 @@ msgstr "在出ç¾ä»»ä½•è™•ç†éŒ¯èª¤çš„情æ³ä¸‹å•Ÿç”¨è©³ç´°é™¤éŒ¯æ—¥èªŒè¨˜éŒ„。 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 "çµæŸæ—¥æœŸ" @@ -234,6 +231,16 @@ msgstr "çµæŸæ—¥æœŸ" msgid "Extra Options" msgstr "é¡å¤–é¸é …" +#: 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 å¿«å–" @@ -258,10 +265,6 @@ msgstr "為了進一æ¥æ高效能,您å¯ä»¥æ高æ¤å€¼ï¼Œä¾‹å¦‚:8 或 16 msgid "Force Local DNS" msgstr "強制本地 DNS" -#: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:225 -msgid "Force Overall Sort" -msgstr "強制整體排åº" - #: applications/luci-app-adblock/luasrc/model/cbi/adblock/overview_tab.lua:173 msgid "Full path to the whitelist file." msgstr "白å單檔案的全路徑。" @@ -282,7 +285,7 @@ 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 查詢" @@ -302,12 +305,12 @@ 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 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:22 msgid "Logfile" msgstr "日誌檔案" @@ -368,7 +371,7 @@ msgstr "請注æ„:這需è¦æ‰‹å‹•å®‰è£å’Œè¨å®šâ€œtcpdump-miniâ€è»Ÿé«”包。 msgid "Query" msgstr "查詢" -#: applications/luci-app-adblock/luasrc/controller/adblock.lua:25 +#: applications/luci-app-adblock/luasrc/controller/adblock.lua:27 msgid "Query domains" msgstr "查詢域" @@ -399,7 +402,7 @@ 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 "é‡æ–°æ•´ç†å ±å‘Š" @@ -479,7 +482,7 @@ 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 "開始日期" @@ -565,11 +568,11 @@ msgid "" "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 "å‰åå ±å‘Š" -#: 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 查詢總數" @@ -609,5 +612,14 @@ msgid "" "value to 150000." msgstr "例如:è¦æŽ¥æ”¶æ¯å€‹ adblock æ›´æ–°çš„é›»å郵件通知時將æ¤å€¼è¨å®šç‚º 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 "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-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..b5828a50fb 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,17 +1,11 @@ -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"); + hide("#status_box"); data.url = $("#server").value; ubus_call("uci", "set", { "config": "attendedsysupgrade", "section": "server", values: { "url": data.url } }) ubus_call("uci", "commit", { "config": "attendedsysupgrade" }) @@ -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,33 +129,26 @@ 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() { // Asks server for new firmware // If data.upgrade_packages is set to true search for new package versions as well - hide("#error_box"); + hide("#status_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"); @@ -229,13 +215,11 @@ function upgrade_request_callback(request) { data.sysupgrade_url = request_json.sysupgrade; var filename_split = data.sysupgrade_url.split("/") - data.filename = filename_split[filename_split.length - 1] + var filename = filename_split[filename_split.length - 1] - var info_output = 'Firmware created: <a href="' + data.sysupgrade_url + '"><b>' + data.filename + '</b></a>' - if(data.advanced_mode == 1) { - info_output += '<br /><a target="_blank" href="' + data.sysupgrade_url + '.log">Build log</a>' - } - info_box(info_output); + var info_output = 'Firmware created: <a href="' + data.url + data.sysupgrade_url + '"><b>' + filename + '</b></a>' + info_output += ' <a target="_blank" href="' + data.url + request_json.log + '">Build log</a>' + set_status("info", info_output); show("#keep_container"); var upgrade_button = $("#upgrade_button") @@ -247,7 +231,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 +245,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 +257,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 +277,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 +299,7 @@ function download_image() { upload_image(blob) } }; - info_box("Downloading firmware", true); + set_status("info", "Downloading firmware", true); download_request.send(); } @@ -329,7 +313,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 +326,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 +368,18 @@ 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 3d75bec4d0..42328d7ea4 100644 --- a/applications/luci-app-banip/luasrc/controller/banip.lua +++ b/applications/luci-app-banip/luasrc/controller/banip.lua @@ -51,13 +51,7 @@ function status_update() end function log_view() - local content - - if nixio.fs.access("/var/log/messages") then - content = util.trim(util.exec("grep -F 'banIP-' /var/log/messages")) - else - content = util.trim(util.exec("logread -e 'banIP-' 2>/dev/null")) - end + local content = util.trim(util.exec("logread -e 'banIP-' 2>/dev/null")) or "" if content == "" then content = "No banIP related logs yet!" diff --git a/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm b/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm index 743886f884..12240e5ae4 100644 --- a/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm +++ b/applications/luci-app-banip/luasrc/view/banip/sourcelist.htm @@ -27,7 +27,7 @@ local anonclass = (not self.anonymous or self.sectiontitle) and "named" or "ano for i, k in ipairs(self:cfgsections()) do section = k local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k) - local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname) + local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true) isempty = false scope = { valueheader = "cbi/cell_valueheader", valuefooter = "cbi/cell_valuefooter" } -%> 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-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua b/applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua index ca078f0cd3..c055945252 100644 --- a/applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua +++ b/applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua @@ -1,4 +1,4 @@ --- Copyright 2017 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.dnscrypt-proxy", package.seeall) @@ -27,12 +27,10 @@ function view_reslist() end function logread() - local logfile - - if nixio.fs.access("/var/log/messages") then - logfile = util.trim(util.exec("cat /var/log/messages | grep 'dnscrypt-proxy'")) - else - logfile = util.trim(util.exec("logread -e 'dnscrypt-proxy'")) + local logfile = util.trim(util.exec("logread -e 'dnscrypt-proxy' 2>/dev/null")) or "" + + if logfile == "" then + logfile = "No DNSCrypt-Proxy related logs yet!" end templ.render("dnscrypt-proxy/logread", {title = i18n.translate("DNSCrypt-Proxy Logfile"), content = logfile}) end diff --git a/applications/luci-app-dnscrypt-proxy/po/ja/dnscrypt-proxy.po b/applications/luci-app-dnscrypt-proxy/po/ja/dnscrypt-proxy.po index 7c2bcd490a..a2008ec476 100644 --- a/applications/luci-app-dnscrypt-proxy/po/ja/dnscrypt-proxy.po +++ b/applications/luci-app-dnscrypt-proxy/po/ja/dnscrypt-proxy.po @@ -77,7 +77,7 @@ msgstr "DNS クエリ ãƒã‚°ãƒ•ã‚¡ã‚¤ãƒ«" msgid "DNSCrypt-Proxy" msgstr "DNSCrypt-Proxy" -#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:37 +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 msgid "DNSCrypt-Proxy Logfile" msgstr "DNSCrypt-Proxy ãƒã‚°ãƒ•ã‚¡ã‚¤ãƒ«" diff --git a/applications/luci-app-dnscrypt-proxy/po/ru/dnscrypt-proxy.po b/applications/luci-app-dnscrypt-proxy/po/ru/dnscrypt-proxy.po index 2785e48273..11c477ca49 100644 --- a/applications/luci-app-dnscrypt-proxy/po/ru/dnscrypt-proxy.po +++ b/applications/luci-app-dnscrypt-proxy/po/ru/dnscrypt-proxy.po @@ -81,7 +81,7 @@ msgstr "Файл ÑиÑтемного журнала запроÑа DNS" msgid "DNSCrypt-Proxy" msgstr "DNSCrypt-Proxy" -#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:37 +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 msgid "DNSCrypt-Proxy Logfile" msgstr "Файл ÑиÑтемного журнала DNSCrypt-Proxy" diff --git a/applications/luci-app-dnscrypt-proxy/po/templates/dnscrypt-proxy.pot b/applications/luci-app-dnscrypt-proxy/po/templates/dnscrypt-proxy.pot index f31cf1ecc7..db88bc7e8a 100644 --- a/applications/luci-app-dnscrypt-proxy/po/templates/dnscrypt-proxy.pot +++ b/applications/luci-app-dnscrypt-proxy/po/templates/dnscrypt-proxy.pot @@ -61,7 +61,7 @@ msgstr "" msgid "DNSCrypt-Proxy" msgstr "" -#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:37 +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 msgid "DNSCrypt-Proxy Logfile" msgstr "" diff --git a/applications/luci-app-dnscrypt-proxy/po/zh-cn/dnscrypt-proxy.po b/applications/luci-app-dnscrypt-proxy/po/zh-cn/dnscrypt-proxy.po index cd791a1419..e99f7b3b2c 100644 --- a/applications/luci-app-dnscrypt-proxy/po/zh-cn/dnscrypt-proxy.po +++ b/applications/luci-app-dnscrypt-proxy/po/zh-cn/dnscrypt-proxy.po @@ -75,7 +75,7 @@ msgstr "DNS 查询日志文件" msgid "DNSCrypt-Proxy" msgstr "DNSCrypt-Proxy" -#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:37 +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 msgid "DNSCrypt-Proxy Logfile" msgstr "DNSCrypt-Proxy 日志文件" diff --git a/applications/luci-app-dnscrypt-proxy/po/zh-tw/dnscrypt-proxy.po b/applications/luci-app-dnscrypt-proxy/po/zh-tw/dnscrypt-proxy.po index 34669aa5e8..fa230cee7d 100644 --- a/applications/luci-app-dnscrypt-proxy/po/zh-tw/dnscrypt-proxy.po +++ b/applications/luci-app-dnscrypt-proxy/po/zh-tw/dnscrypt-proxy.po @@ -75,7 +75,7 @@ msgstr "DNS 查詢日誌檔案" msgid "DNSCrypt-Proxy" msgstr "DNSCrypt-Proxy" -#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:37 +#: applications/luci-app-dnscrypt-proxy/luasrc/controller/dnscrypt-proxy.lua:35 msgid "DNSCrypt-Proxy Logfile" msgstr "DNSCrypt-Proxy 日誌檔案" 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/ruleconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua index 51592f8137..f20414240e 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua @@ -3,12 +3,15 @@ -- Licensed to the public under the GNU General Public License v2. 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, policy +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 {} + m = Map("mwan3", translatef("MWAN Rule Configuration - %s", arg[1])) m.redirect = dsp.build_url("admin", "network", "mwan", "rule") @@ -52,6 +55,13 @@ 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\")")) +ipset:value("", translate("-- Please choose --")) +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")) m.uci:foreach("mwan3", "policy", diff --git a/applications/luci-app-mwan3/po/de/mwan3.po b/applications/luci-app-mwan3/po/de/mwan3.po index ffc0ea72e2..54c86248f5 100644 --- a/applications/luci-app-mwan3/po/de/mwan3.po +++ b/applications/luci-app-mwan3/po/de/mwan3.po @@ -1,73 +1,77 @@ 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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "" + +#: 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 +79,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 +103,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 +111,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "Zielport" @@ -133,47 +149,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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "Aktiviert" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +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 +226,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 +238,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -226,17 +269,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +289,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "Letzter Ausweg" @@ -268,54 +311,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:63 +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 +383,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 +392,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 +421,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 +433,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 +444,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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "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 +467,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 +475,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 +492,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 +515,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 +523,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +552,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 +562,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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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 +604,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 +616,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 +628,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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +674,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 +694,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 +712,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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +760,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 +804,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "" -#: 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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "unerreichbar (rejectet)" diff --git a/applications/luci-app-mwan3/po/ja/mwan3.po b/applications/luci-app-mwan3/po/ja/mwan3.po index 4c9ad6c185..cef560bcd1 100644 --- a/applications/luci-app-mwan3/po/ja/mwan3.po +++ b/applications/luci-app-mwan3/po/ja/mwan3.po @@ -7,78 +7,82 @@ msgstr "" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.2\n" +"X-Generator: Poedit 2.2.1\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Plural-Forms: nplurals=1; plural=0;\n" "Language: ja\n" -#: applications/luci-app-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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "-- é¸æŠžã—ã¦ãã ã•ã„ --" + +#: 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 +90,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 +115,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 +123,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "宛先ãƒãƒ¼ãƒˆ" @@ -145,47 +161,70 @@ 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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "有効" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +msgid "" +"Enables firewall rule logging (global mwan3 logging must also be enabled)" +msgstr "" +"ファイアウォール ルールã®ãƒã‚°è¨˜éŒ²ã‚’有効ã«ã—ã¾ã™ã€‚(グãƒãƒ¼ãƒãƒ«ãª mwan3 ãƒã‚°è¨˜" +"録も有効ã«ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ï¼‰" + +#: 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 +242,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 +252,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -240,17 +283,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +303,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "最終手段" @@ -282,54 +325,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:63 +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 +397,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 +414,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 +435,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 +447,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 +458,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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "メトリック" -#: 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 +481,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 +489,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 +506,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 +529,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 +537,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +566,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 +585,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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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 +617,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 +629,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 +652,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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +683,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 +702,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 +736,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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +766,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 +795,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 +817,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "デフォルト(メインã®ãƒ«ãƒ¼ãƒ†ã‚£ãƒ³ã‚° テーブルを使用)" -#: 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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "unreachable (reject)" diff --git a/applications/luci-app-mwan3/po/ru/mwan3.po b/applications/luci-app-mwan3/po/ru/mwan3.po index bb5e01eaf5..6bebb3c27b 100644 --- a/applications/luci-app-mwan3/po/ru/mwan3.po +++ b/applications/luci-app-mwan3/po/ru/mwan3.po @@ -15,73 +15,77 @@ 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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "" + +#: 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 +93,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 +117,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 +125,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "Порт назначениÑ" @@ -147,46 +163,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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "Включено" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +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 +241,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 +251,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -241,17 +282,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +301,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "ПоÑледнее ÑредÑтво" @@ -282,54 +323,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:63 +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 +395,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 +411,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 +432,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 +444,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 +454,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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "Метрика" -#: 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 +477,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 +485,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 +502,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 +525,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 +533,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +562,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 +581,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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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 +613,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 +625,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 +649,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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +682,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 +702,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 +721,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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +751,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 +782,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 +803,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "по умолчанию (иÑпользовать оÑновную таблицу маршрутизации)" -#: 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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "недоÑтупен (отклонить)" diff --git a/applications/luci-app-mwan3/po/templates/mwan3.pot b/applications/luci-app-mwan3/po/templates/mwan3.pot index 36c5a3bda9..fb594d3638 100644 --- a/applications/luci-app-mwan3/po/templates/mwan3.pot +++ b/applications/luci-app-mwan3/po/templates/mwan3.pot @@ -1,91 +1,99 @@ 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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "" + +#: 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 +101,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 +109,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "" @@ -131,45 +147,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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +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 +222,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 +232,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -222,17 +263,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +281,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "" @@ -262,54 +303,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:63 +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 +375,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 +385,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 +416,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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "" -#: 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 +446,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 +469,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 +492,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 +500,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +529,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 +540,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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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 +572,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 +584,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 +597,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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +628,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 +662,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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +689,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 +733,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "" -#: 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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "" -#: 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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "" diff --git a/applications/luci-app-mwan3/po/zh-cn/mwan3.po b/applications/luci-app-mwan3/po/zh-cn/mwan3.po index 742864f301..2dcc1fbfee 100644 --- a/applications/luci-app-mwan3/po/zh-cn/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-cn/mwan3.po @@ -11,92 +11,100 @@ msgstr "" "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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "" + +#: 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 "åŒæ—¶æ‰«ææ¤è·¯ç”±è¡¨ä»¥æŸ¥æ‰¾å·²è¿žæŽ¥çš„网络" @@ -104,7 +112,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 "检查连接数é‡" @@ -112,19 +120,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "ç›®æ ‡ç«¯å£" @@ -142,45 +158,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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "å·²å¯ç”¨" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +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,7 +233,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 "rtmon 应该多久更新一次接å£è·¯ç”±è¡¨" @@ -206,25 +243,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -233,17 +274,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +292,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "备用æˆå‘˜" @@ -273,54 +314,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:63 +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 +386,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 +400,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 "最大 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 +421,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 +433,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 +443,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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "跃点数" -#: 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 +466,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 +474,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 +491,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 +514,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 +522,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +551,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,27 +567,27 @@ 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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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" @@ -545,11 +599,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 "路由表查找" -#: 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 +611,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 +629,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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +660,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 +702,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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +731,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 "查看åè®®æè¿°çš„ /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,51 +775,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "黑洞(丢弃)" -#: 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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "默认(使用主路由表)" -#: 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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "ä¸å¯è¾¾ï¼ˆæ‹’ç»ï¼‰" diff --git a/applications/luci-app-mwan3/po/zh-tw/mwan3.po b/applications/luci-app-mwan3/po/zh-tw/mwan3.po index 967d2aaeef..45b51d7dbf 100644 --- a/applications/luci-app-mwan3/po/zh-tw/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-tw/mwan3.po @@ -11,92 +11,100 @@ msgstr "" "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/ruleconfig.lua:58 +msgid "-- Please choose --" +msgstr "" + +#: 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 "åŒæ™‚掃ææ¤è·¯ç”±è¡¨ä»¥æŸ¥è©¢å·²é€£ç·šçš„網路" @@ -104,7 +112,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 "檢查連線數é‡" @@ -112,19 +120,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/rule.lua:81 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:29 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/rule.lua:87 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:33 msgid "Destination port" msgstr "ç›®æ¨™åŸ " @@ -142,45 +158,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/interface.lua:160 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:22 msgid "Enabled" msgstr "已啟用" +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:64 +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,7 +233,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 "rtmon 應該多久更新一次介é¢è·¯ç”±è¡¨" @@ -206,25 +243,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/member.lua:27 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:18 #: applications/luci-app-mwan3/luasrc/view/mwan/status_detail.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:10 #: applications/luci-app-mwan3/luasrc/view/mwan/status_diagnostics.htm:62 @@ -233,17 +274,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/interface.lua:208 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:209 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/interface.lua:219 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:223 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 +292,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/policy.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:25 msgid "Last resort" msgstr "備用æˆå“¡" @@ -273,54 +314,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:63 +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 +386,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/" @@ -346,24 +396,24 @@ msgid "" "rules" msgstr "" "MWAN 支æ´æœ€å¤š 252 個物ç†æˆ–é‚輯介é¢ã€‚<br />MWAN è¦æ±‚所有介é¢å¿…é ˆåœ¨ /etc/" -"config/network ä¸è¨å®šå”¯ä¸€çš„é–˜é“器èºé»žã€‚<br />åç¨±å¿…é ˆèˆ‡ /etc/config/network ä¸" -"的介é¢å稱匹é…。<br />å稱å…許包括 A-Zã€a-zã€0-9ã€_ 但是ä¸èƒ½æœ‰ç©ºæ ¼ã€‚<br />接" -"å£ä¸æ‡‰è©²èˆ‡æˆå“¡ã€ç–ç•¥ã€è¦å‰‡ä¸çš„ä»»æ„一個è¨å®šé …使用相åŒçš„å稱" +"config/network ä¸è¨å®šå”¯ä¸€çš„é–˜é“器èºé»žã€‚<br />åç¨±å¿…é ˆèˆ‡ /etc/config/network " +"ä¸çš„介é¢å稱匹é…。<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 "最大 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 +421,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,32 +433,32 @@ 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 "" -"“æˆå“¡â€ç”¨ä¾†è¨å®šæ¯ä¸€å€‹ MWAN 介é¢çš„èºé»žæ•¸ï¼ˆå³ä»‹é¢å„ªå…ˆé †åºï¼‰å’Œæ‰€ä½”比é‡ã€‚<br />å稱" -"å…許包括 A-Z〠a-ã€0-9ã€_ 但是ä¸èƒ½æœ‰ç©ºæ ¼ã€‚<br />æˆå“¡ä¸æ‡‰è©²èˆ‡ä»‹é¢ã€ç–ç•¥ã€è¦å‰‡" -"ä¸çš„ä»»æ„一個è¨å®šé …使用相åŒçš„å稱" +"“æˆå“¡â€ç”¨ä¾†è¨å®šæ¯ä¸€å€‹ MWAN 介é¢çš„èºé»žæ•¸ï¼ˆå³ä»‹é¢å„ªå…ˆé †åºï¼‰å’Œæ‰€ä½”比é‡ã€‚<br />å" +"稱å…許包括 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/interface.lua:230 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:245 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/member.lua:33 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:25 msgid "Metric" msgstr "èºé»žæ•¸" -#: 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 +466,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 +474,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 +491,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 +514,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 +522,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/interface.lua:192 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:158 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 +551,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,27 +567,27 @@ 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/rule.lua:99 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:66 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/rule.lua:93 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:36 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" @@ -545,11 +599,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 "路由表查詢" -#: 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 +611,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 " @@ -569,36 +623,36 @@ msgid "" "z, 0-9, _ and no spaces<br />Rules may not share the same name as configured " "interfaces, members or policies" msgstr "" -"è¦å‰‡æŒ‡å®šå“ªäº›æµé‡å°‡ä½¿ç”¨ç‰¹å®šçš„ MWAN ç–ç•¥<br />è¦å‰‡åŸºæ–¼ IP ä½å€ï¼ŒåŸ 或å”è°<br /" -">è¦å‰‡å¾žä¸Šåˆ°ä¸‹åŒ¹é…<br />匹é…è¦å‰‡ä»¥ä¸‹çš„è¦å‰‡è¢«å¿½ç•¥<br />ä¸ç¬¦åˆä»»ä½•è¦å‰‡çš„æµé‡å°‡ä½¿" +"è¦å‰‡æŒ‡å®šå“ªäº›æµé‡å°‡ä½¿ç”¨ç‰¹å®šçš„ MWAN ç–ç•¥<br />è¦å‰‡åŸºæ–¼ IP ä½å€ï¼ŒåŸ 或å”è°<br />" +"è¦å‰‡å¾žä¸Šåˆ°ä¸‹åŒ¹é…<br />匹é…è¦å‰‡ä»¥ä¸‹çš„è¦å‰‡è¢«å¿½ç•¥<br />ä¸ç¬¦åˆä»»ä½•è¦å‰‡çš„æµé‡å°‡ä½¿" "用主路由表進行路由<br />目的地為已知(éžé è¨ï¼‰ç¶²è·¯çš„æµé‡ç”±ä¸»è·¯ç”±è¡¨è™•ç†<br />" "æµé‡ç¬¦åˆè¦å‰‡ï¼Œä½†è©²ç–略的所有 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/rule.lua:69 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:22 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/rule.lua:75 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:26 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 +660,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 " @@ -640,29 +694,29 @@ msgid "" "\"wwan0\")<br /><br />" msgstr "" "這裡å…許您修改“/etc/mwan3.userâ€çš„內容。<br />該檔案在 sysupgrade 期間也會ä¿" -"留。<br /><br />注æ„:<br />該檔案會作為 shell 指令碼解釋。<br />指令碼的第一行必" -"é ˆæ˜¯ "#!/bin/sh",ä¸å¸¶å¼•è™Ÿã€‚<br />以 # é–‹é 的行是註釋,ä¸æœƒé‹è¡Œã€‚" +"留。<br /><br />注æ„:<br />該檔案會作為 shell 指令碼解釋。<br />指令碼的第一" +"è¡Œå¿…é ˆæ˜¯ "#!/bin/sh",ä¸å¸¶å¼•è™Ÿã€‚<br />以 # é–‹é 的行是註釋,ä¸æœƒé‹è¡Œã€‚" "<br />將您的自定義 mwan3 動作放在這裡,他們將<br />在啟用 mwan3 的介é¢ä¸Š<br /" ">在 netifd hotplug 介é¢äº‹ä»¶æ™‚é‹è¡Œã€‚<br /><br />有三個主è¦çš„環境變數傳éžçµ¦é€™å€‹" -"指令碼。<br /><br />$ACTION “ifupâ€æˆ–“ifdownâ€<br />$INTERFACE 啟動或åœæ¢çš„介é¢å" -"(例如“wanâ€æˆ–“wwanâ€ï¼‰<br />$DEVICE 啟動或åœæ¢ä»‹é¢çš„物ç†è£ç½®å(例" +"指令碼。<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/interface.lua:170 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:40 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/interface.lua:181 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua:58 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 +731,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 "檢視å”è°æè¿°çš„ /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,51 +775,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/member.lua:39 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/memberconfig.lua:29 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/policy.lua:80 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:29 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:73 msgid "blackhole (drop)" msgstr "黑洞(丟棄)" -#: 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/policy.lua:82 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:30 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:74 msgid "default (use main routing table)" msgstr "é è¨ï¼ˆä½¿ç”¨ä¸»è·¯ç”±è¡¨ï¼‰" -#: 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/policy.lua:84 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/policyconfig.lua:28 +#: applications/luci-app-mwan3/luasrc/model/cbi/mwan/ruleconfig.lua:72 msgid "unreachable (reject)" msgstr "ä¸å¯é”(拒絕)" diff --git a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js index e5ae69b3a7..8a01b1db49 100644 --- a/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js +++ b/applications/luci-app-nlbwmon/htdocs/luci-static/resources/view/nlbw.js @@ -226,13 +226,15 @@ function renderPeriods() var sel = document.getElementById('nlbw.period'); for (var e, i = trafficPeriods.length - 1; e = trafficPeriods[i]; i--) { - var d1 = new Date(e); - var d2, pd; + var ymd1 = e.split(/-/); + var d1 = new Date(+ymd1[0], +ymd1[1] - 1, +ymd1[2]); + var ymd2, d2, pd; if (i) { - d2 = new Date(trafficPeriods[i - 1]); + ymd2 = trafficPeriods[i - 1].split(/-/); + d2 = new Date(+ymd2[0], +ymd2[1] - 1, +ymd2[2]); d2.setDate(d2.getDate() - 1); - pd = '%04d-%02d-%02d'.format(d1.getFullYear(), d1.getMonth() + 1, d1.getDate()); + pd = e; } else { d2 = new Date(); diff --git a/applications/luci-app-nut/po/zh-tw/nut.po b/applications/luci-app-nut/po/zh-tw/nut.po index 33f0a0259d..6d0e07a5ae 100644 --- a/applications/luci-app-nut/po/zh-tw/nut.po +++ b/applications/luci-app-nut/po/zh-tw/nut.po @@ -122,7 +122,8 @@ msgstr "啟用" msgid "" "Enables a hotplug script that makes all ttyUSB devices (e.g. serial USB) " "group read-write as user 'nut'" -msgstr "啟用熱æ’拔指令碼,使所有 ttyUSB è£ç½®ï¼ˆä¾‹å¦‚åºåˆ— USB)組讀寫為使用者“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 diff --git a/applications/luci-app-openvpn/po/ru/openvpn.po b/applications/luci-app-openvpn/po/ru/openvpn.po index 824e26a2c9..64139efb32 100644 --- a/applications/luci-app-openvpn/po/ru/openvpn.po +++ b/applications/luci-app-openvpn/po/ru/openvpn.po @@ -69,8 +69,7 @@ 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" @@ -181,8 +180,8 @@ msgstr "Папка Ð´Ð»Ñ Ð¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ñ‚ÐµÐ»ÑŒÑких config файлов Ð #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:23 msgid "Disable Paging" msgstr "" -"Отключить пейджинг, путём вызвова функции 'POSIX mlockall'. ТребуетÑÑ, " -"чтобы OpenVPN был первоначально запущен от root.<br />Ð¥Ð¾Ñ‚Ñ OpenVPN может " +"Отключить пейджинг, путём вызвова функции 'POSIX mlockall'. ТребуетÑÑ, чтобы " +"OpenVPN был первоначально запущен от root.<br />Ð¥Ð¾Ñ‚Ñ OpenVPN может " "впоÑледÑтвии понизить Ñвой UID Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ опции '-user'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:27 @@ -193,21 +192,20 @@ msgstr "Выключить проверку ÑоглаÑованноÑти Ð¿Ð°Ñ #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua:41 msgid "Do not bind to local address and port" msgstr "" -"Ðе выполнÑÑ‚ÑŒ привÑзку к локальному адреÑу и порту. ИÑпользуетÑÑ " -"динамичеÑкий порт, подключение только Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ 'remote'" +"Ðе выполнÑÑ‚ÑŒ привÑзку к локальному адреÑу и порту. ИÑпользуетÑÑ Ð´Ð¸Ð½Ð°Ð¼Ð¸Ñ‡ÐµÑкий " +"порт, подключение только Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð¼ 'remote'" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:216 msgid "Don't actually execute ifconfig" msgstr "" -"Ðа Ñамом деле не выполнÑÑ‚ÑŒ команды 'ifconfig/netsh'. ВмеÑто Ñтого " -"передавать параметры '-ifconfig' ÑценариÑм Ñ Ð¸Ñпользованием переменных " -"окружениÑ" +"Ðа Ñамом деле не выполнÑÑ‚ÑŒ команды 'ifconfig/netsh'. ВмеÑто Ñтого передавать " +"параметры '-ifconfig' ÑценариÑм Ñ Ð¸Ñпользованием переменных окружениÑ" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:236 msgid "Don't add routes automatically" msgstr "" -"Ðе добавлÑÑ‚ÑŒ маршруты автоматичеÑки. ВмеÑто Ñтого передавать маршруты в " -"'-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" @@ -458,8 +456,7 @@ 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" @@ -574,8 +571,7 @@ msgstr "" #: 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" @@ -843,8 +839,8 @@ 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 Кб)" +"Размер OPVN файла (%s) Ñлишком большой Ð´Ð»Ñ Ð¾Ð½Ð»Ð°Ð¹Ð½ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¸Ñ€Ð¾Ð²Ð°Ð½Ð¸Ñ Ð² LuCI (&ge " +"100 Кб)" #: applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua:762 msgid "This completely disables cipher negotiation" 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 3d1d619bf8..033a4bd35d 100644 --- a/applications/luci-app-opkg/po/pl/opkg.po +++ b/applications/luci-app-opkg/po/pl/opkg.po @@ -18,7 +18,7 @@ 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 "Automatycznie usuwaj nieużywane zależnoÅ›ci" @@ -26,22 +26,23 @@ msgstr "Automatycznie usuwaj nieużywane zależnoÅ›ci" 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 "" -"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: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" @@ -54,21 +55,21 @@ msgstr "Wyczyść" msgid "Configure opkg…" 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 "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 "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 "Odrzuć" @@ -80,12 +81,12 @@ msgstr "WyÅ›wietlanie %d-%d z %d" 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 "Wykonywanie menedżera pakietów" @@ -97,19 +98,19 @@ 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 "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>?" @@ -122,21 +123,21 @@ msgstr "" msgid "Install…" 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 "Å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 "Å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 "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" @@ -158,12 +159,12 @@ msgstr "Brak pakietów" msgid "No packages matching \"<strong>%h</strong>\"." 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 "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 zainstalowany" @@ -172,9 +173,9 @@ msgstr "Nie zainstalowany" 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" @@ -192,25 +193,25 @@ msgstr "Nazwa pakietu lub URL…" msgid "Previous page" 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 "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 "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 "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" @@ -218,13 +219,13 @@ 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 "Wymaga aktualizacji do %h %h" @@ -232,17 +233,17 @@ msgstr "Wymaga aktualizacji do %h %h" 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" @@ -255,29 +256,32 @@ 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>." +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." +"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." +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." +"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…" @@ -298,34 +302,34 @@ msgstr "Aktualizacje" msgid "Upgrade…" 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 "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 "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 "~%.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 "~%.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 e5be37a56e..b8ba3d6914 100644 --- a/applications/luci-app-opkg/po/ru/opkg.po +++ b/applications/luci-app-opkg/po/ru/opkg.po @@ -19,7 +19,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 "ÐвтоматичеÑки удалÑÑ‚ÑŒ неиÑпользуемые завиÑимоÑти" @@ -27,23 +27,23 @@ 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 " "custom repository entries. The configuration in the other files may be " "changed but is usually not preserved by <em>sysupgrade</em>." msgstr "" -"Ðиже приведен ÑпиÑок различных файлов конфигурации, иÑпользуемых " -"<em>opkg</em>. ИÑпользуйте файл <em>opkg.conf</em> Ð´Ð»Ñ Ð³Ð»Ð¾Ð±Ð°Ð»ÑŒÐ½Ñ‹Ñ… наÑтроек и " +"Ðиже приведен ÑпиÑок различных файлов конфигурации, иÑпользуемых <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: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 "Отменить" @@ -55,21 +55,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 "ÐŸÐ¾Ð´Ñ€Ð¾Ð±Ð½Ð°Ñ Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾ пакете <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 "Отклонить" @@ -81,11 +81,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 "ЗапуÑк менеджера пакетов" @@ -97,18 +97,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>?" @@ -120,19 +120,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 "ТребуетÑÑ Ð¾Ð±Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ðµ" @@ -152,11 +152,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 "Ðе уÑтановлено" @@ -164,9 +164,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" @@ -182,26 +182,26 @@ 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 "" "ТребуетÑÑ Ð¿Ñ€Ð¸Ð¼ÐµÑ€Ð½Ð¾ %.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" @@ -209,14 +209,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> не доÑтупен ни в одном " -"из Ñконфигурированных репозиториев." +"Требуемый в качеÑтве завиÑимоÑти пакет <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" @@ -224,16 +224,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 "Размер" @@ -246,11 +246,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." @@ -258,12 +258,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." @@ -288,33 +288,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 "~%.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 "~%.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-radicale2/luasrc/model/cbi/radicale2/auth.lua b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua index 71fd3a32ee..b352bb46aa 100644 --- a/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua +++ b/applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua @@ -135,33 +135,19 @@ function encpass(self, section) return encvalue and encvalue.encrypted_password end -pass.parse = function(self, section, novld) - local encvalue - if self:cfgvalue(section) then - if not plainpass:cfgvalue(section) then - return Value.parse(self, section) - else - encvalue = encpass(self, section) - if encvalue then - self.formvalue = function(self, section) - return encvalue - end - return Value.parse(self, section, novld) - else - self.formvalue = self.cfgvalue - return Value.parse(self, section, novld) - end - end +pass.cfgvalue = function(self, section) + if not plainpass:formvalue(section) then + return Value.cfgvalue(self, section) else - encvalue = encpass(self, section) - if encvalue then - self.formvalue = function(self, section) - return encvalue - end - return Value.parse(self, section, novld) - else - return nil - end + 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 diff --git a/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm index 2f449d7b0b..1bcf388bd6 100644 --- a/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm +++ b/applications/luci-app-radicale2/luasrc/view/cbi/raduigo.htm @@ -1,7 +1,7 @@ <% local uci = require "luci.model.uci".cursor() local http_port = uci:get("radicale2", "server", "host") -local usessl = uci:get("radicale2", "server", "ssl") +local usessl = uci:get_bool("radicale2", "server", "ssl") if type(http_port) == "table" then http_port = http_port[1] end diff --git a/applications/luci-app-radicale2/po/en/radicale2.po b/applications/luci-app-radicale2/po/en/radicale2.po index 7a1bb2527d..fa7d88559d 100644 --- a/applications/luci-app-radicale2/po/en/radicale2.po +++ b/applications/luci-app-radicale2/po/en/radicale2.po @@ -37,7 +37,7 @@ msgstr "Authentication / Users" msgid "Authentication Type" msgstr "Authentication Type" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:185 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:171 msgid "Based on settings in 'Rights File'" msgstr "Based on settings in 'Rights File'" @@ -85,7 +85,7 @@ msgstr "Default (htpasswd file from users below)" msgid "Default (multifilesystem)" msgstr "Default (multifilesystem)" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:167 msgid "Default (owner only)" msgstr "Default (owner only)" @@ -114,7 +114,7 @@ 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 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:155 msgid "Encrypted Password" msgstr "Encrypted Password" @@ -142,7 +142,7 @@ msgstr "For verifying client certificates" msgid "General Settings" msgstr "General Settings" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:155 msgid "" "Generate this field using an generator for Apache htpasswd-style " "authentication files (for the hash format you have chosen above), or install " @@ -299,19 +299,19 @@ msgstr "Private Key" msgid "REMOTE_USER from web server" msgstr "REMOTE_USER from web server" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:186 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:172 msgid "RO: All, RW: All" msgstr "RO: All, RW: All" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:184 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:170 msgid "RO: Authenticated Users, RW: Owner" msgstr "RO: Authenticated Users, RW: Owner" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:183 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 msgid "RO: None, RW: Authenticated Users" msgstr "RO: None, RW: Authenticated Users" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:168 msgid "RO: None, RW: Owner" msgstr "RO: None, RW: Owner" @@ -343,7 +343,7 @@ msgstr "Remove configuration for certificate, key, and CA" msgid "Remove configuration for logging" msgstr "Remove configuration for logging" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:195 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 msgid "Remove configuration for rights file" msgstr "Remove configuration for rights file" @@ -359,15 +359,15 @@ msgstr "Required time between a failed authentication attempt and trying again" msgid "Retry Delay" msgstr "Retry Delay" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:162 msgid "Rights" msgstr "Rights" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:190 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 msgid "Rights File" msgstr "Rights File" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:180 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:166 msgid "Rights Type" msgstr "Rights Type" @@ -430,7 +430,7 @@ msgstr "This permanently deletes configuration for logging" 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 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 msgid "This permanently deletes the rights file and configuration to use same." msgstr "" "This permanently deletes the rights file and configuration to use same." @@ -451,7 +451,7 @@ msgstr "Use Protocol" msgid "User" msgstr "User" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:162 msgid "User-based ACL Settings" msgstr "User-based ACL Settings" diff --git a/applications/luci-app-radicale2/po/templates/radicale2.pot b/applications/luci-app-radicale2/po/templates/radicale2.pot index be11ff1fe0..40789b0ca0 100644 --- a/applications/luci-app-radicale2/po/templates/radicale2.pot +++ b/applications/luci-app-radicale2/po/templates/radicale2.pot @@ -28,7 +28,7 @@ msgstr "" msgid "Authentication Type" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:185 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:171 msgid "Based on settings in 'Rights File'" msgstr "" @@ -76,7 +76,7 @@ msgstr "" msgid "Default (multifilesystem)" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:167 msgid "Default (owner only)" msgstr "" @@ -105,7 +105,7 @@ 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 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:155 msgid "Encrypted Password" msgstr "" @@ -133,7 +133,7 @@ msgstr "" msgid "General Settings" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:155 msgid "" "Generate this field using an generator for Apache htpasswd-style " "authentication files (for the hash format you have chosen above), or install " @@ -279,19 +279,19 @@ msgstr "" msgid "REMOTE_USER from web server" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:186 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:172 msgid "RO: All, RW: All" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:184 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:170 msgid "RO: Authenticated Users, RW: Owner" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:183 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:169 msgid "RO: None, RW: Authenticated Users" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:168 msgid "RO: None, RW: Owner" msgstr "" @@ -323,7 +323,7 @@ msgstr "" msgid "Remove configuration for logging" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:195 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:181 msgid "Remove configuration for rights file" msgstr "" @@ -339,15 +339,15 @@ msgstr "" msgid "Retry Delay" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:162 msgid "Rights" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:190 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 msgid "Rights File" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:180 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:166 msgid "Rights Type" msgstr "" @@ -410,7 +410,7 @@ msgstr "" msgid "This permanently deletes the cert, key, and configuration to use same." msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:196 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:182 msgid "This permanently deletes the rights file and configuration to use same." msgstr "" @@ -430,7 +430,7 @@ msgstr "" msgid "User" msgstr "" -#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:176 +#: applications/luci-app-radicale2/luasrc/model/cbi/radicale2/auth.lua:162 msgid "User-based ACL Settings" 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 553b297ac0..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") 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 cbe32afde6..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 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..4765dd4821 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,7 +199,7 @@ 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 @@ -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..6e35a1bfb4 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,7 +195,7 @@ 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 @@ -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..d483136034 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,7 +197,7 @@ 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 @@ -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..7a5e3228fe 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,7 +199,7 @@ 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 @@ -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..4be5d1a9fe 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,7 +197,7 @@ 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 @@ -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..a0cc465786 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,7 +197,7 @@ 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 @@ -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..bd2011bb19 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,7 +197,7 @@ 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 @@ -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..848b89b7be 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,7 +194,7 @@ 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 @@ -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..7a0ee1e037 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,7 +195,7 @@ 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 @@ -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..3388e0d7ff 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,7 +197,7 @@ 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 @@ -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..9c63e559d3 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,7 +196,7 @@ 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 @@ -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..6914ab1e9f 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,7 +191,7 @@ 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 @@ -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..b99ae17fca 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,7 +188,7 @@ 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 @@ -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..2ae1879dfb 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,7 +198,7 @@ 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 @@ -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..491caaa722 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,7 +197,7 @@ 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 @@ -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..660f1a3867 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,7 +197,7 @@ 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 @@ -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..0802685811 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,7 +198,7 @@ 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 @@ -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..434b7ab756 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,7 +198,7 @@ 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 @@ -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..3f4afe8a36 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,7 +189,7 @@ 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 @@ -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..fdf9eb2f4b 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,7 +193,7 @@ 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 @@ -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..eebbb0577c 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,7 +182,7 @@ 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 @@ -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..20443b9a6f 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,7 +190,7 @@ 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 @@ -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..bdd9dfc942 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,7 +195,7 @@ 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 @@ -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..7b22ae052f 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,7 +198,7 @@ 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 @@ -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 f7891e548a..3ead4901ba 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-2019. +# Yangfl <mmyangfl@gmail.com>, 2017-2019, 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: 2019-01-03 21:39+0800\n" +"PO-Revision-Date: 2019-02-11 22:41+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 3.30.1\n" +"X-Generator: Gtranslator 2.91.7\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 "连接用户总数" @@ -59,7 +59,7 @@ msgstr "基本监控" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/contextswitch.lua:4 msgid "CPU Context Switches Plugin Configuration" -msgstr "CPU Context Switches æ’件é…ç½®" +msgstr "CPU 上下文切æ¢æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:30 msgid "CPU Frequency" @@ -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 区间" @@ -164,7 +164,7 @@ msgstr "åé…置目录" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/disk.lua:5 msgid "Disk Plugin Configuration" -msgstr "Disk æ’件é…ç½®" +msgstr "ç£ç›˜æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:33 msgid "Disk Space Usage" @@ -199,7 +199,7 @@ 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 @@ -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 "å¯ç”¨è¯¥æ’件" @@ -240,7 +240,7 @@ msgstr "熵" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:5 msgid "Entropy Plugin Configuration" -msgstr "熵值æ’件é…ç½®" +msgstr "熵æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:38 msgid "Exec" @@ -260,13 +260,13 @@ msgstr "防ç«å¢™" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:100 msgid "Flush cache after" -msgstr "清空缓å˜åŽ" +msgstr "清空缓å˜æ—¶é—´" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:71 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,9 +274,9 @@ 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 "为æ¯ä¸ªè®°å½•çš„用户生æˆä¸€ä¸ªå•ç‹¬çš„图表" +msgstr "为æ¯ä¸ªç™»å½•ç”¨æˆ·ç”Ÿæˆå•ç‹¬çš„图表" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:101 msgid "Graphs" @@ -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,17 +334,17 @@ 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 "入接å£" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:8 msgid "Interface Plugin Configuration" -msgstr "Interface æ’件é…ç½®" +msgstr "接å£æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:39 msgid "Interfaces" -msgstr "Interfaces" +msgstr "接å£" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:41 msgid "Interrupts" @@ -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 æ’件é…ç½®" @@ -376,7 +376,7 @@ msgstr "监å¬æŽ¥å£" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:5 msgid "Load Plugin Configuration" -msgstr "Load æ’件é…ç½®" +msgstr "è´Ÿè½½æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:60 msgid "" @@ -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,16 +402,16 @@ 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 "监测所有(除特别注明外)" +msgstr "监测所有(特别注明除外)" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/tcpconns.lua:19 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 "ç›‘æŽ§æ‰€æœ‰ä¼ æ„Ÿå™¨" @@ -469,7 +469,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 "规则å" @@ -483,17 +483,17 @@ msgstr "Netlink æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:46 msgid "Network" -msgstr "Network" +msgstr "网络" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:5 msgid "Network Plugin Configuration" -msgstr "Network æ’件é…ç½®" +msgstr "网络æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:24 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 "出接å£" @@ -571,7 +571,7 @@ msgstr "进程æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/processes.lua:20 msgid "Processes to monitor separated by space" -msgstr "è¿‡ç¨‹ç›‘æŽ§ï¼Œç”¨ç©ºæ ¼éš”å¼€" +msgstr "ç›‘æŽ§çš„è¿›ç¨‹ï¼Œç”¨ç©ºæ ¼éš”å¼€" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:29 msgid "Processor" @@ -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,9 +628,9 @@ 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 æ’件é…ç½®" +msgstr "ä¼ æ„Ÿå™¨æ’件é…ç½®" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:54 msgid "Server host" @@ -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 区间" @@ -712,7 +712,7 @@ msgstr "å˜å‚¨æ—¶é—´è·¨åº¦" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:43 msgid "System Load" -msgstr "ç³»ç»ŸåŠ è½½" +msgstr "系统负载" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:55 msgid "TCP Connections" @@ -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 连接当å‰çŠ¶æ€" +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." @@ -768,7 +768,7 @@ msgstr "cpu æ’件获å–处ç†å™¨ç›¸å…³ä¿¡æ¯ã€‚" msgid "" "The csv plugin stores collected data in csv file format for further " "processing by external programs." -msgstr "csvæ’件用于å˜å‚¨æ•°æ®ï¼Œä»¥æ–¹ä¾¿å…¶ä»–程åºå¤„ç†æ•°æ®ã€‚" +msgstr "csv æ’件用于å˜å‚¨æ•°æ®ï¼Œä»¥æ–¹ä¾¿å…¶ä»–程åºå¤„ç†æ•°æ®ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/df.lua:6 msgid "" @@ -780,7 +780,7 @@ msgstr "df æ’件收集ç£ç›˜ç©ºé—´ä½¿ç”¨æƒ…况ã€æŒ‚载点åŠæ–‡ä»¶ç³»ç»Ÿç›¸å…³ msgid "" "The disk plugin collects detailed usage statistics for selected partitions " "or whole disks." -msgstr "disk æ’件收集ç£ç›˜åˆ†åŒºä½¿ç”¨æƒ…况åŠç›¸å…³ä¿¡æ¯ã€‚" +msgstr "ç£ç›˜æ’件收集ç£ç›˜åˆ†åŒºä½¿ç”¨æƒ…况åŠç›¸å…³ä¿¡æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/dns.lua:9 msgid "" @@ -801,7 +801,7 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/entropy.lua:6 msgid "The entropy plugin collects statistics about the available entropy." -msgstr "entropy æ’件收集å¯ç”¨ç†µçš„统计信æ¯ã€‚" +msgstr "熵æ’件收集å¯ç”¨ç†µçš„统计信æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/exec.lua:6 msgid "" @@ -813,9 +813,9 @@ msgstr "" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/interface.lua:9 msgid "" "The interface plugin collects traffic statistics on selected interfaces." -msgstr "Interface æ’件用于收集选定接å£çš„æ•°æ®åŒ…的统计信æ¯ã€‚" +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." @@ -837,17 +837,17 @@ msgstr "iwinfo æ’ä»¶æ”¶é›†æ— çº¿ä¿¡å·å¼ºåº¦ã€å™ªå£°å’Œè´¨é‡çš„统计信æ¯ã€ #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/load.lua:6 msgid "The load plugin collects statistics about the general system load." -msgstr "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 "memory æ’件收集关于内å˜ä½¿ç”¨æƒ…况的统计信æ¯ã€‚" +msgstr "内å˜æ’件收集关于内å˜ä½¿ç”¨æƒ…况的统计信æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/netlink.lua:11 msgid "" "The netlink plugin collects extended information like qdisc-, class- and " "filter-statistics for selected interfaces." -msgstr "netlink æ’ä»¶æ”¶é›†ä¸ºé€‰å®šæŽ¥å£ qdisc-ã€class- å’Œ filter- 的扩展数æ®ã€‚" +msgstr "netlink æ’件为选定接å£æ”¶é›†å¦‚ qdiscã€class å’Œ filter çš„æ•°æ®ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:6 msgid "" @@ -858,7 +858,7 @@ msgid "" msgstr "" "network æ’件æ供了基于网络的ä¸åŒ Collectd 实例。Collectd å¯ä»¥å·¥ä½œåœ¨å®¢æˆ·ç«¯å’Œæœ" "务器两个模å¼ã€‚在客户端模å¼ä¸‹æ”¶é›†æœ¬åœ°ä¿¡æ¯ï¼Œç„¶åŽè½¬ç§»åˆ°ä¸€ä¸ª Collectd æœåŠ¡å™¨å®žä¾‹" -"ä¸,在æœåŠ¡å™¨æ¨¡å¼å°†ä»Žå…¶ä»–主机收集信æ¯ã€‚" +"ä¸ï¼Œåœ¨æœåŠ¡å™¨æ¨¡å¼å°†ä»Žå…¶ä»–主机收集信æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/ping.lua:6 msgid "" @@ -870,7 +870,7 @@ msgstr "ping æ’件将å‘é€ icmp echo replies 到选定主机æ¥æµ‹é‡æ¯å°ä¸» msgid "" "The processes plugin collects information like cpu time, page faults and " "memory usage of selected processes." -msgstr "processes æ’件收集选定进程的 cpu 时间ã€é¡µé¢é”™è¯¯å’Œå†…å˜ä½¿ç”¨ä¿¡æ¯ã€‚" +msgstr "进程æ’件收集选定进程的 cpu 时间ã€é¡µé¢é”™è¯¯å’Œå†…å˜ä½¿ç”¨ä¿¡æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/rrdtool.lua:6 msgid "" @@ -883,11 +883,11 @@ 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." -msgstr "sensors æ’件使用 Linux Sensors 框架æ¥æ”¶é›†çŽ¯å¢ƒç»Ÿè®¡ä¿¡æ¯ã€‚" +msgstr "ä¼ æ„Ÿå™¨æ’件使用 Linux Sensors 框架æ¥æ”¶é›†çŽ¯å¢ƒç»Ÿè®¡ä¿¡æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/splash_leases.lua:6 msgid "" @@ -909,7 +909,7 @@ msgstr "" msgid "" "The tcpconns plugin collects information about open tcp connections on " "selected ports." -msgstr "tcpconns æ’ä»¶æ”¶é›†é€‰å®šç«¯å£ TCP 连接信æ¯ã€‚" +msgstr "tcpconns æ’件收集选定端å£çš„ TCP 连接信æ¯ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/thermal.lua:5 msgid "" @@ -917,8 +917,8 @@ msgid "" "read from /sys/class/thermal/*/temp ( '*' denotes the thermal device to be " "read, e.g. thermal_zone1 )" msgstr "" -"thermal æ’件将会监控系统温度。数æ®ä¸»è¦å–自 /sys/class/thermal/*/temp ('*' 表" -"示温感设备的åå—,比如 thermal_zone1) 。" +"温感æ’件将会监控系统温度。数æ®ä¸»è¦å–自 /sys/class/thermal/*/temp ('*' 表示温" +"感设备的åå—,比如 thermal_zone1) 。" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/unixsock.lua:6 msgid "" @@ -926,9 +926,9 @@ 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 æ’件收集系统å¯åŠ¨æ—¶é—´çš„统计信æ¯ã€‚" +msgstr "è¿è¡Œæ—¶é—´æ’件收集系统å¯åŠ¨æ—¶é—´çš„统计信æ¯ã€‚" #: applications/luci-app-statistics/luasrc/controller/luci_statistics/luci_statistics.lua:56 msgid "Thermal" @@ -950,7 +950,7 @@ msgstr "æ¤æ’件收集处ç†å™¨é¢‘率调整的统计信æ¯ã€‚" msgid "" "This section defines on which interfaces collectd will wait for incoming " "connections." -msgstr "定义 Collectd 将监å¬å“ªä¸ªæŽ¥å£æ¥ä¼ 入连接收集数æ®ã€‚" +msgstr "定义 Collectd å°†ç‰å¾…ä¼ å…¥è¿žæŽ¥çš„æŽ¥å£ã€‚" #: applications/luci-app-statistics/luasrc/model/cbi/luci_statistics/network.lua:46 msgid "" @@ -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 "使用更高级的命å规则" @@ -1032,19 +1032,19 @@ msgstr "cUrl" 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 "例如: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 0f70d8b5a8..abaef793b3 100644 --- a/applications/luci-app-statistics/po/zh-tw/statistics.po +++ b/applications/luci-app-statistics/po/zh-tw/statistics.po @@ -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 å€é–“" @@ -199,7 +199,7 @@ 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 @@ -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 "監控所有感測器" @@ -469,7 +469,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 "è¦å‰‡å" @@ -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 外掛收集系統啟動時間的統計資訊。" @@ -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 "使用更高階的命åè¦å‰‡" @@ -1032,19 +1032,19 @@ msgstr "cUrl" 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 "例如: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 0dbba9cb81..a2641aa858 100644 --- a/applications/luci-app-travelmate/po/zh-cn/travelmate.po +++ b/applications/luci-app-travelmate/po/zh-cn/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 "连接é™åˆ¶" @@ -154,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 "å¯ç”¨è¯¦ç»†è°ƒè¯•æ—¥å¿—" @@ -169,7 +169,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 "é¢å¤–选项" @@ -212,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 上行连接æˆåŠŸæœ€é•¿æ—¶é—´ã€‚" @@ -233,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 "接å£è¶…æ—¶" @@ -249,7 +249,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." @@ -271,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 "总体é‡è¯•è¶…时(秒)。" @@ -337,7 +337,7 @@ 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 "æ— çº¿ç”µé€‰æ‹©/顺åº" @@ -354,7 +354,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')." @@ -362,7 +362,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 "连接到上行连接的é‡è¯•é™åˆ¶ã€‚" @@ -397,7 +397,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 "ä¿¡å·è´¨é‡é˜ˆå€¼" @@ -463,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 "触å‘延迟" diff --git a/applications/luci-app-travelmate/po/zh-tw/travelmate.po b/applications/luci-app-travelmate/po/zh-tw/travelmate.po index eaa2dd4c71..00cf3a90f2 100644 --- a/applications/luci-app-travelmate/po/zh-tw/travelmate.po +++ b/applications/luci-app-travelmate/po/zh-tw/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 處ç†é–‹å§‹å‰çš„é¡å¤–觸發延é²ï¼ˆç§’)。" @@ -73,7 +73,8 @@ msgstr "強制門戶檢測" msgid "" "Check the internet availability, log captive portal redirections and keep " "the uplink connection 'alive'." -msgstr "檢查網際網路å¯ç”¨æ€§ï¼Œè¨˜éŒ„強制網路門戶é‡å®šå‘,並ä¿æŒä¸Šè¡Œé€£ç·šç‚ºâ€œæ´»å‹•â€ç‹€æ…‹ã€‚" +msgstr "" +"檢查網際網路å¯ç”¨æ€§ï¼Œè¨˜éŒ„強制網路門戶é‡å®šå‘,並ä¿æŒä¸Šè¡Œé€£ç·šç‚ºâ€œæ´»å‹•â€ç‹€æ…‹ã€‚" #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:69 #: applications/luci-app-travelmate/luasrc/model/cbi/travelmate/wifi_add.lua:86 @@ -88,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 "連線é™åˆ¶" @@ -154,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 "啟用詳細除錯日誌" @@ -169,7 +170,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 "é¡å¤–é¸é …" @@ -212,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 上行連線æˆåŠŸæœ€é•·æ™‚間。" @@ -233,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 "介é¢è¶…時" @@ -249,7 +250,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." @@ -271,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 "總體é‡è©¦è¶…時(秒)。" @@ -337,7 +338,7 @@ 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 "ç„¡ç·šé›»é¸æ“‡/é †åº" @@ -354,7 +355,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')." @@ -362,7 +363,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 "連線到上行連線的é‡è©¦é™åˆ¶ã€‚" @@ -397,7 +398,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 "訊號質é‡é–¾å€¼" @@ -463,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 "觸發延é²" 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 index a87b74ca78..f581059519 100644 --- a/applications/luci-app-unbound/po/zh-cn/unbound.po +++ b/applications/luci-app-unbound/po/zh-cn/unbound.po @@ -1,5 +1,5 @@ msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" +msgstr "Content-Type: text/plain; charset=UTF-8\n" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 msgid "(root)" @@ -21,9 +21,9 @@ msgstr "AXFR" msgid "Accept queries only from local subnets" msgstr "仅接å—æ¥è‡ªæœ¬åœ°å网的查询" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 -msgid "Adblock domain list '" -msgstr "Adblock 域å列表'" +#: 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" @@ -53,10 +53,6 @@ msgstr "ç»†åˆ†æŸ¥è¯¢ç»„ä»¶ä»¥å¢žåŠ æœ‰é™çš„éšç§" msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" msgstr "æ‰“ç ´ DNSSEC éœ€è¦ NTP,NTP åˆéœ€è¦ DNS 的循环" -#: 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 "选择 Unbounds 监å¬ç«¯å£" @@ -81,6 +77,10 @@ msgstr "DHCP 链接" 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" @@ -584,17 +584,16 @@ msgstr "æœ€å° TTL" msgid "This could display more statistics with the unbound-control package." msgstr "å¯ä»¥ä½¿ç”¨ unbound-control 包显示更多统计信æ¯ã€‚" -#: 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." -msgstr "显示 Unbound的“cache_dumpâ€ã€‚用于检查 unbound 是å¦å®žé™…ç¼“å˜ dns 实体。" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" #: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 msgid "" @@ -648,6 +647,10 @@ msgstr "" 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 "未定义" @@ -738,3 +741,15 @@ 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 index b51ad0a800..504e33c123 100644 --- a/applications/luci-app-unbound/po/zh-tw/unbound.po +++ b/applications/luci-app-unbound/po/zh-tw/unbound.po @@ -1,5 +1,5 @@ msgid "" -msgstr "Content-Type: text/plain; charset=UTF-8" +msgstr "Content-Type: text/plain; charset=UTF-8\n" #: applications/luci-app-unbound/luasrc/model/cbi/unbound/zones.lua:96 msgid "(root)" @@ -21,9 +21,9 @@ msgstr "AXFR" msgid "Accept queries only from local subnets" msgstr "僅接å—來自本地å網的查詢" -#: applications/luci-app-unbound/luasrc/controller/unbound.lua:198 -msgid "Adblock domain list '" -msgstr "Adblock 域å列表'" +#: 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" @@ -53,10 +53,6 @@ msgstr "ç´°åˆ†æŸ¥è©¢å…ƒä»¶ä»¥å¢žåŠ æœ‰é™çš„éš±ç§" msgid "Break the loop where DNSSEC needs NTP and NTP needs DNS" msgstr "æ‰“ç ´ DNSSEC éœ€è¦ NTP,NTP åˆéœ€è¦ DNS 的迴圈" -#: 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 "é¸æ“‡ Unbounds 監è½åŸ " @@ -81,6 +77,10 @@ msgstr "DHCP 連çµ" 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" @@ -584,17 +584,16 @@ msgstr "æœ€å° TTL" msgid "This could display more statistics with the unbound-control package." msgstr "å¯ä»¥ä½¿ç”¨ unbound-control 包顯示更多統計資訊。" -#: 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." -msgstr "顯示 Unbound的“cache_dumpâ€ã€‚用於檢查 unbound 是å¦å¯¦éš›å¿«å– dns 實體。" +"This shows 'ubound-control dump_cache' for auditing records including DNSSEC." +msgstr "" #: applications/luci-app-unbound/luasrc/controller/unbound.lua:137 msgid "" @@ -648,6 +647,10 @@ msgstr "" 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 "未定義" @@ -738,3 +741,15 @@ 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/contrib/package/lucihttp/Makefile b/contrib/package/lucihttp/Makefile index 408994435a..fd448e0fcd 100644 --- a/contrib/package/lucihttp/Makefile +++ b/contrib/package/lucihttp/Makefile @@ -5,9 +5,9 @@ PKG_RELEASE:=1 PKG_SOURCE_PROTO:=git PKG_SOURCE_URL=https://github.com/jow-/lucihttp.git -PKG_SOURCE_DATE:=2018-05-18 -PKG_SOURCE_VERSION:=cb119deddee5f0f8f1da883b20c60aea7611b175 -PKG_MIRROR_HASH:=573a20817c73344b17c8fa1b8112f14af9dccc25fef017ae072ecd09140cf9e1 +PKG_SOURCE_DATE:=2019-01-24 +PKG_SOURCE_VERSION:=1afbdcc31016fac9e85285d032d27184db884bfd +PKG_MIRROR_HASH:=7fe11f0e0cb6dc810a47c708d38865124324660a8986305d299f5b8d771fc5e9 CMAKE_INSTALL:=1 PKG_LICENSE:=ISC @@ -22,8 +22,8 @@ include $(INCLUDE_DIR)/cmake.mk define Package/liblucihttp SECTION:=libs CATEGORY:=Libraries - ABI_VERSION:=$(PKG_VERSION) TITLE:=LuCI HTTP utility library + ABI_VERSION:=0 endef define Package/liblucihttp-lua @@ -40,9 +40,16 @@ CMAKE_OPTIONS = \ -DBUILD_LUA=$(if $(CONFIG_PACKAGE_liblucihttp-lua),ON,OFF) \ -DBUILD_TESTS=OFF +define Build/InstallDev + $(INSTALL_DIR) $(1)/usr/lib + $(INSTALL_DIR) $(1)/usr/include + $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblucihttp.so* $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/include/* $(1)/usr/include/ +endef + define Package/liblucihttp/install $(INSTALL_DIR) $(1)/usr/lib - $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblucihttp.so $(1)/usr/lib/ + $(CP) $(PKG_INSTALL_DIR)/usr/lib/liblucihttp.so.* $(1)/usr/lib/ endef define Package/liblucihttp-lua/install diff --git a/modules/luci-base/luasrc/dispatcher.lua b/modules/luci-base/luasrc/dispatcher.lua index d85cb58243..626a46dfd2 100644 --- a/modules/luci-base/luasrc/dispatcher.lua +++ b/modules/luci-base/luasrc/dispatcher.lua @@ -328,7 +328,7 @@ function dispatch(request) assert(media, "No valid theme found") end - local function _ifattr(cond, key, val) + local function _ifattr(cond, key, val, noescape) if cond then local env = getfenv(3) local scope = (type(env.self) == "table") and env.self @@ -339,13 +339,16 @@ function dispatch(request) val = util.serialize_json(val) end end - return string.format( - ' %s="%s"', tostring(key), - util.pcdata(tostring( val - or (type(env[key]) ~= "function" and env[key]) - or (scope and type(scope[key]) ~= "function" and scope[key]) - or "" )) - ) + + val = tostring(val or + (type(env[key]) ~= "function" and env[key]) or + (scope and type(scope[key]) ~= "function" and scope[key]) or "") + + if noescape ~= true then + val = util.pcdata(val) + end + + return string.format(' %s="%s"', tostring(key), val) else return '' end diff --git a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm index ea0568f409..cb11d8f61a 100644 --- a/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm +++ b/modules/luci-base/luasrc/view/cbi/cell_valueheader.htm @@ -6,7 +6,7 @@ <div class="td cbi-value-field<% if self.error and self.error[section] then %> cbi-value-error<% end %>"<%= attr("data-name", self.option) .. ifattr(ftype and #ftype > 0, "data-type", ftype) .. - ifattr(title and #title > 0, "data-title", title) .. - ifattr(descr and #descr > 0, "data-description", descr) + ifattr(title and #title > 0, "data-title", title, true) .. + ifattr(descr and #descr > 0, "data-description", descr, true) %>> <div id="cbi-<%=self.config.."-"..section.."-"..self.option%>" data-index="<%=self.index%>" data-depends="<%=pcdata(self:deplist2json(section))%>"> diff --git a/modules/luci-base/luasrc/view/cbi/tblsection.htm b/modules/luci-base/luasrc/view/cbi/tblsection.htm index 408dfa7fe8..11c2206d8c 100644 --- a/modules/luci-base/luasrc/view/cbi/tblsection.htm +++ b/modules/luci-base/luasrc/view/cbi/tblsection.htm @@ -127,7 +127,7 @@ end section = k local sectionname = striptags((type(self.sectiontitle) == "function") and self:sectiontitle(section) or k) - local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname) + local sectiontitle = ifattr(sectionname and (not self.anonymous or self.sectiontitle), "data-title", sectionname, true) local colorclass = (self.extedit or self.rowcolors) and rowstyle() or "" local scope = { valueheader = "cbi/cell_valueheader", diff --git a/modules/luci-base/po/ca/base.po b/modules/luci-base/po/ca/base.po index f9b02ae561..9caad89a98 100644 --- a/modules/luci-base/po/ca/base.po +++ b/modules/luci-base/po/ca/base.po @@ -57,16 +57,16 @@ msgstr "(sense interfÃcies adjuntes)" msgid "-- Additional Field --" msgstr "-- Camp addicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Escolliu, si us plau --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalitzat --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Cà rrega d'1 minut:" @@ -98,7 +102,7 @@ msgstr "Cà rrega d'1 minut:" msgid "15 Minute Load:" msgstr "Cà rrega de 15 minuts:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Cà rrega de 5 minuts:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Es consultaran els servidors <abbr title=\"Domain Name System\">DNS</abbr> " "segons l'ordre del fitxer de resolució" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -311,7 +315,7 @@ msgid "Access Concentrator" msgstr "Concentrador d'accés" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Punt d'accés" @@ -402,6 +406,10 @@ msgstr "Adreça per accedir al relay bridge local" msgid "Administration" msgstr "Administració" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -417,7 +425,7 @@ msgstr "Parà metres avançats" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" @@ -450,12 +458,12 @@ msgstr "" "Permetre l'autenticació <abbr title=\"Secure Shell\">SSH</abbr> amb " "contrasenya" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Permet-les totes menys les llistades" @@ -463,8 +471,8 @@ msgstr "Permet-les totes menys les llistades" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Permet només les llistades" @@ -586,7 +594,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -658,7 +666,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autenticació" @@ -680,8 +688,8 @@ msgstr "Es requereix autenticació" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Refresc automà tic" @@ -979,7 +987,7 @@ msgstr "" "ompliu el camp <em>crea</em> per definir una nova zona i adjuntar-hi la " "interfÃcie." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -987,7 +995,7 @@ msgstr "" "Trieu les xarxes que voleu adjuntar a la interfÃcie sense fil o ompliu el " "camp <em>crea</em> per definir una xarxa nova." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Xifra" @@ -1010,7 +1018,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Client" @@ -1068,7 +1076,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuració comuna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1164,11 +1172,11 @@ msgstr "Crea interfÃcie" msgid "Create a bridge over multiple interfaces" msgstr "Crea un pont entre múltiples interfÃcies" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "CrÃtic" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nivell de registre del Cron" @@ -1201,15 +1209,15 @@ msgstr "" "Personalitza el comportament dels <abbr title=\"Light Emitting Diode\">LED</" "abbr>s del dispositiu, si és possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1293,7 +1301,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1305,14 +1313,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depuració" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "%d per defecte" @@ -1363,7 +1371,7 @@ msgstr "" msgid "Delete this network" msgstr "Suprimeix aquesta xarxa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1435,7 +1443,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1453,11 +1461,11 @@ msgstr "" msgid "Disabled" msgstr "Inhabilitat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1592,7 +1600,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Mètode EAP" @@ -1617,7 +1625,7 @@ msgstr "Edita aquesta interfÃcie" msgid "Edit this network" msgstr "Edita aquesta xarxa" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergència" @@ -1656,7 +1664,7 @@ msgstr "Habilita negociació IPv6 en la enllaç PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Habilita el passatge de trames enormes" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Habilita el client NTP" @@ -1672,11 +1680,11 @@ msgstr "Habilita el servidor TFTP" msgid "Enable VLAN functionality" msgstr "Habilita la funcionalitat VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1722,7 +1730,7 @@ msgstr "Habilitat" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1739,7 +1747,7 @@ msgstr "Mode d'encapsulació" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1770,7 +1778,7 @@ msgstr "Esborrant..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" @@ -1811,23 +1819,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor de registre del sistema extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port del servidor de registre del sistema extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protocol del servidor de registre del sistema extern" @@ -1835,15 +1843,15 @@ msgstr "Protocol del servidor de registre del sistema extern" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1953,7 +1961,7 @@ msgstr "Força" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Força el CCMP (AES)" @@ -1961,11 +1969,11 @@ msgstr "Força el CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Força el DHCP en aquesta xarxa encara que es detecti altre servidor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Força el TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Força el TKIP i el CCMP (AES)" @@ -2006,7 +2014,7 @@ msgid "Forwarding mode" msgstr "Mode de reenviament" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Llindar de fragmentació" @@ -2068,7 +2076,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2097,7 +2105,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Vés a la configuració de contrasenya" @@ -2146,9 +2154,9 @@ msgstr "" "Acà pots configurar els aspectes bà sics del teu dispositiu, com el nom de la " "mà quina o el fus horari." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "No mostris l'<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2183,7 +2191,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nom de mà quina" @@ -2404,7 +2412,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identitat" @@ -2516,7 +2524,7 @@ msgstr "Temps d'espera d'inactivitat" msgid "Inbound:" msgstr "Entrant:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informació" @@ -2570,7 +2578,7 @@ msgstr "Visió de conjunt de la interfÃcie" msgid "Interface is reconnecting..." msgstr "La interfÃcie s'està reconnectant..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2610,7 +2618,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Usuari i/o contrasenya invà lids! Si us plau prova-ho de nou." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2627,7 +2635,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Es requereix JavaScript!" @@ -2656,15 +2664,16 @@ msgstr "Registre del nucli" msgid "Kernel Version" msgstr "Versió del nucli" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Clau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Clau #%d" @@ -2707,7 +2716,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Llengua" @@ -2792,7 +2801,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2801,7 +2810,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2890,7 +2899,7 @@ msgid "Local Startup" msgstr "Inici local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora local" @@ -2926,7 +2935,7 @@ msgstr "Localitza les peticions" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nivell de sortida de registre" @@ -2968,8 +2977,8 @@ msgstr "" msgid "MAC-Address" msgstr "Adreça MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtre d'adreces MAC" @@ -2978,8 +2987,8 @@ msgstr "Filtre d'adreces MAC" msgid "MAC-Filter" msgstr "Filtre MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Llista MAC" @@ -3029,7 +3038,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3101,7 +3110,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Manca l'extensió de protocol del protocol %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3138,9 +3147,9 @@ msgstr "" msgid "Modem init timeout" msgstr "Temps d'espera d'inici de mòdem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3203,7 +3212,7 @@ msgstr "Baixa" msgid "Move up" msgstr "Puja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3227,7 +3236,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidats de servidor NTP" @@ -3256,7 +3265,7 @@ msgstr "Mà scara de xarxa" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3330,7 +3339,7 @@ msgstr "Cap nom de xarxa especificat" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "No hi ha cap contrasenya establerta!" @@ -3379,7 +3388,7 @@ msgstr "" msgid "None" msgstr "Cap" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3401,7 +3410,7 @@ msgstr "No connectat" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "AvÃs" @@ -3413,7 +3422,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3495,7 +3504,7 @@ msgstr "Opció canviada" msgid "Option removed" msgstr "Opció treta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3602,7 +3611,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3664,7 +3673,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3717,7 +3726,7 @@ msgid "Part of zone %q" msgstr "Part de la zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3728,11 +3737,11 @@ msgstr "Contrasenya" msgid "Password authentication" msgstr "Autenticació per contrasenya" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Contrasenya de la clau privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3744,27 +3753,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Ruta als Certificats CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Ruta a la clau privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3842,6 +3851,14 @@ msgstr "Si us plau entra el teu nom d'usuari i contrasenya." msgid "Policy" msgstr "PolÃtica" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3889,8 +3906,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Evita la comunicació client a client" @@ -3931,7 +3948,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Habilita el servidor NTP" @@ -3939,7 +3956,7 @@ msgstr "Habilita el servidor NTP" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3974,11 +3991,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3986,8 +4003,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Llindar RTS/CTS" @@ -4001,27 +4022,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Velocitat RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4077,7 +4098,7 @@ msgstr "Trà nsit en temps real" msgid "Realtime Wireless" msgstr "Dispositiu sense fils en temps real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4171,7 +4192,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4194,10 +4215,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4439,7 +4460,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Clients separats" @@ -4474,7 +4495,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configura la sincronització de l'hora" @@ -4499,7 +4520,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4542,7 +4563,7 @@ msgstr "Mida" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4683,7 +4704,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4787,7 +4808,7 @@ msgstr "Registre del sistema" msgid "System Properties" msgstr "Propietats del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Mida de la memòria intermèdia per al registre del sistema" @@ -5027,7 +5048,7 @@ msgstr "" "La imatge pujada no conté un format suportat. Assegura't de triar el format " "d'imatge genèric per la teva plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5058,7 +5079,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5152,20 +5173,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Aquesta secció encara no conté cap valor" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronització de l'hora" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "La sincronització de hora encara no s'ha configurat." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zona horà ria" @@ -5208,7 +5229,7 @@ msgstr "Trà nsit" msgid "Transfer" msgstr "Transferència" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Taxa de transmissió" @@ -5511,11 +5532,11 @@ msgstr "" msgid "Used" msgstr "Usat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5593,18 +5614,18 @@ msgstr "Verifica" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Sistema obert WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Clau compartit WEP" @@ -5612,8 +5633,8 @@ msgstr "Clau compartit WEP" msgid "WEP passphrase" msgstr "Contrasenya WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Mode WMM" @@ -5621,9 +5642,9 @@ msgstr "Mode WMM" msgid "WPA passphrase" msgstr "Contrasenya WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5647,8 +5668,8 @@ msgstr "" msgid "Waiting for device..." msgstr "Esperant el dispositiu..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Advertència" @@ -5656,7 +5677,7 @@ msgstr "Advertència" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5743,7 +5764,7 @@ msgstr "La xarxa sense fils està habilitada" msgid "Write received DNS requests to syslog" msgstr "Escriure les peticions DNS rebudes al registre del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Escriure el registre del sistema al fitxer" @@ -5766,7 +5787,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5780,19 +5801,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5807,7 +5828,7 @@ msgstr "qualsevol" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5860,8 +5881,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "inhabilita" @@ -5965,7 +5986,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "fitxer <abbr title=\"Domain Name System\">DNS</abbr> local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5998,7 +6019,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "parat" @@ -6006,7 +6027,7 @@ msgstr "parat" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "engegat" @@ -6050,8 +6071,8 @@ msgstr "" msgid "routed" msgstr "encaminat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6076,7 +6097,7 @@ msgstr "" msgid "tagged" msgstr "etiquetat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/cs/base.po b/modules/luci-base/po/cs/base.po index 9bc284ce3a..024c022359 100644 --- a/modules/luci-base/po/cs/base.po +++ b/modules/luci-base/po/cs/base.po @@ -55,16 +55,16 @@ msgstr "(bez rozhranà pÅ™ipojenÃ)" msgid "-- Additional Field --" msgstr "-- DoplňujÃcà pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- ProsÃm vyberte --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- vlastnà --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "ZatÞenà za 1 minutu:" @@ -96,7 +100,7 @@ msgstr "ZatÞenà za 1 minutu:" msgid "15 Minute Load:" msgstr "ZatÞenà za 15 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "ZatÞenà za 5 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servery budou dotazovány podle " "poÅ™adà resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -306,7 +310,7 @@ msgid "Access Concentrator" msgstr "PÅ™Ãstupový koncentrátor" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "PÅ™Ãstupový bod" @@ -400,6 +404,10 @@ msgstr "Adresa pro pÅ™Ãstup k mÃstnÃmu relay bridge" msgid "Administration" msgstr "Správa" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -415,7 +423,7 @@ msgstr "PokroÄilé nastavenÃ" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "UpozornÄ›nÃ" @@ -446,12 +454,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Povolit <abbr title=\"Secure Shell\">SSH</abbr> autentizaci heslem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Povolit vÅ¡e mimo uvedené" @@ -459,8 +467,8 @@ msgstr "Povolit vÅ¡e mimo uvedené" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Povolit pouze uvedené" @@ -582,7 +590,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -654,7 +662,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autentizace" @@ -676,8 +684,8 @@ msgstr "Vyžadována autorizace" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automaticky obnovovat" @@ -974,7 +982,7 @@ msgstr "" "zóny a jejà následné pÅ™iÅ™azenà danému rozhranà vyplňte pole <em>vytvoÅ™it</" "em>." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -982,7 +990,7 @@ msgstr "" "Vyberte sÃÅ¥(Ä›), které chcete pÅ™ipojit k tomuto bezdrátovému rozhranÃ, nebo " "vyplňte pole <em>vytvoÅ™it</em> a pojmenujte novou sÃÅ¥." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Å ifra" @@ -1004,7 +1012,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Klient" @@ -1064,7 +1072,7 @@ msgstr "" msgid "Common Configuration" msgstr "SpoleÄná nastavenÃ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1160,11 +1168,11 @@ msgstr "VytvoÅ™it rozhranÃ" msgid "Create a bridge over multiple interfaces" msgstr "VytvoÅ™it sÃÅ¥ový most pÅ™es vÃce rozhranÃ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritické" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Úroveň protokolovánà Cronu" @@ -1197,15 +1205,15 @@ msgstr "" "Upravà chovánà <abbr title=\"Light Emitting Diode\">LED</abbr> diod zaÅ™Ãzenà " "pokud je to možné." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1289,7 +1297,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1301,14 +1309,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "LadÄ›nÃ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Výchozà %d" @@ -1361,7 +1369,7 @@ msgstr "" msgid "Delete this network" msgstr "Odstranit tuto sÃÅ¥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1433,7 +1441,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1451,11 +1459,11 @@ msgstr "" msgid "Disabled" msgstr "Zakázáno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1594,7 +1602,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Metoda EAP" @@ -1619,7 +1627,7 @@ msgstr "Upravit toto rozhranÃ" msgid "Edit this network" msgstr "Upravit tuto sÃÅ¥" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Záchrana" @@ -1658,7 +1666,7 @@ msgstr "Na PPP spoji povolit vyjednánà IPv6" msgid "Enable Jumbo Frame passthrough" msgstr "Povolit průchod jumbo rámců" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Povolit NTP klienta" @@ -1674,11 +1682,11 @@ msgstr "Povolit TFTP server" msgid "Enable VLAN functionality" msgstr "Povolit funkcionalitu VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1724,7 +1732,7 @@ msgstr "Povoleno" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1741,7 +1749,7 @@ msgstr "Režim zapouzdÅ™enÃ" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1772,7 +1780,7 @@ msgstr "OdstraňovánÃ..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Chyba" @@ -1815,23 +1823,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Externà protokolovacà server" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port externÃho protokolovacÃho serveru" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1839,15 +1847,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1957,7 +1965,7 @@ msgstr "Vynutit" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Vynutit CCMP (AES)" @@ -1965,11 +1973,11 @@ msgstr "Vynutit CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Na této sÃti vynutit DHCP i v pÅ™ÃpadÄ› detekovánà jiného serveru." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Vynutit TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Vynutit TKIP a CCMP (AES)" @@ -2010,7 +2018,7 @@ msgid "Forwarding mode" msgstr "Režim pÅ™eposÃlánÃ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Hranice fragmentace" @@ -2072,7 +2080,7 @@ msgstr "Obecné nastavenÃ" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2099,7 +2107,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "PÅ™ejÃt na nastavenà hesla..." @@ -2148,9 +2156,9 @@ msgstr "" "Nastavenà základnÃch vlastnostà zaÅ™Ãzenà jako je Äasová zóna nebo název " "zaÅ™ÃzenÃ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Skrývat <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2185,7 +2193,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Jméno hostitele" @@ -2406,7 +2414,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identita" @@ -2518,7 +2526,7 @@ msgstr "ÄŒasový limit neÄinnosti" msgid "Inbound:" msgstr "PÅ™ÃchozÃ:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2572,7 +2580,7 @@ msgstr "PÅ™ehled rozhranÃ" msgid "Interface is reconnecting..." msgstr "Rozhranà se znovu pÅ™ipojuje..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2614,7 +2622,7 @@ msgstr "Uvedené VLAN ID je neplatné! Každé ID musà být jedineÄné" msgid "Invalid username and/or password! Please try again." msgstr "Å patné uživatelské jméno a/nebo heslo! ProsÃm zkuste to znovu." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2631,7 +2639,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Vyžadován JavaScript!" @@ -2660,15 +2668,16 @@ msgstr "Záznam jádra" msgid "Kernel Version" msgstr "Verze jádra" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "KlÃÄ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "KlÃÄ #%d" @@ -2711,7 +2720,7 @@ msgstr "LLC" msgid "Label" msgstr "Popis" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Jazyk" @@ -2798,7 +2807,7 @@ msgstr "" "Seznam <abbr title=\"Domain Name System\">DNS</abbr> serverů, na které " "pÅ™eposÃlat požadavky" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2807,7 +2816,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2895,7 +2904,7 @@ msgid "Local Startup" msgstr "MÃstnà startup" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "MÃstnà Äas" @@ -2937,7 +2946,7 @@ msgstr "LokalizaÄnà dotazy" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Úroveň logovánÃ" @@ -2979,8 +2988,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-Adresa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtr MAC adres" @@ -2989,8 +2998,8 @@ msgstr "Filtr MAC adres" msgid "MAC-Filter" msgstr "Filtr MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Seznam Mac" @@ -3040,7 +3049,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3112,7 +3121,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "ChybÄ›jÃcà rozÅ¡ÃÅ™enà protokolu %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3149,9 +3158,9 @@ msgstr "" msgid "Modem init timeout" msgstr "ÄŒasový limit inicializace modemu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "SledovánÃ" @@ -3214,7 +3223,7 @@ msgstr "PÅ™esunout dolů" msgid "Move up" msgstr "PÅ™esunout nahoru" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3238,7 +3247,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Kandidáti NTP serveru" @@ -3267,7 +3276,7 @@ msgstr "SÃÅ¥ová maska" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3341,7 +3350,7 @@ msgstr "Neuvedeno jméno sÃtÄ›" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Žádné heslo!" @@ -3390,7 +3399,7 @@ msgstr "" msgid "None" msgstr "Žádný" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "NormálnÃ" @@ -3412,7 +3421,7 @@ msgstr "NepÅ™ipojeno" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "OznámenÃ" @@ -3424,7 +3433,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3505,7 +3514,7 @@ msgstr "Volba zmÄ›nÄ›na" msgid "Option removed" msgstr "Volba odstranÄ›na" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3612,7 +3621,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3676,7 +3685,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3729,7 +3738,7 @@ msgid "Part of zone %q" msgstr "Část zóny %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3740,11 +3749,11 @@ msgstr "Heslo" msgid "Password authentication" msgstr "Autentizace heslem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Heslo privátnÃho klÃÄe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3756,27 +3765,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Cesta k certifikátu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Cesta k certifikátu klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Cesta k privátnÃmu klÃÄi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3854,6 +3863,14 @@ msgstr "ProsÃm vložte vaÅ¡e uživatelské jméno a heslo." msgid "Policy" msgstr "Politika" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3903,8 +3920,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Zabraňuje komunikaci klient-klient" @@ -3945,7 +3962,7 @@ msgstr "Protokol nového rozhranÃ" msgid "Protocol support is not installed" msgstr "Podpora pro protokol nenà nainstalována" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Poskytovánà NTP serveru" @@ -3953,7 +3970,7 @@ msgstr "Poskytovánà NTP serveru" msgid "Provide new network" msgstr "Poskytovánà nové sÃtÄ›" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3988,11 +4005,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4000,8 +4017,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Práh RTS/CTS" @@ -4015,27 +4036,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Port pro Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Tajný klÃÄ pro Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Server Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "VýbÄ›r ověřovánà portů" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Tajný klÃÄ pro Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Server Radius-Authentication" @@ -4094,7 +4115,7 @@ msgstr "Provoz v reálném Äase" msgid "Realtime Wireless" msgstr "Wireless v reálném Äase" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4188,7 +4209,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4212,10 +4233,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4458,7 +4479,7 @@ msgstr "" "OdesÃlat LCP echo požadaveky každých x sekund, úÄinné pouze ve spojenà s " "prahem selhánÃ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "OddÄ›lovat klienty" @@ -4493,7 +4514,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Nastavit synchronizaci Äasu" @@ -4518,7 +4539,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4561,7 +4582,7 @@ msgstr "Velikost" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4710,7 +4731,7 @@ msgstr "" "jmen DHCP klientům. Jsou také vyžadovány pro nedynamické konfigurace " "rozhranÃ, kde jsou povoleni pouze hosté s odpovÃdajÃcÃm nastavenÃm." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4814,7 +4835,7 @@ msgstr "Systémový log" msgid "System Properties" msgstr "Vlastnosti systému" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Velikost bufferu systémového logu" @@ -5061,7 +5082,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Vzhled" @@ -5094,7 +5115,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5185,20 +5206,20 @@ msgstr "Tato stránka zobrazuje pÅ™ehled aktivnÃch sÃÅ¥ových spojenÃ." msgid "This section contains no values yet" msgstr "Tato sekce zatÃm neobsahuje žádné hodnoty" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronizace Äasu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synchronizace Äasu dosud nenà nakonfigurována." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "ÄŒasové pásmo" @@ -5240,7 +5261,7 @@ msgstr "Provoz" msgid "Transfer" msgstr "PÅ™enos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "VysÃlacà rychlost" @@ -5546,11 +5567,11 @@ msgstr "" msgid "Used" msgstr "Použit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5628,18 +5649,18 @@ msgstr "Ověřit" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP Open System" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "SdÃlený klÃÄ WEP" @@ -5647,8 +5668,8 @@ msgstr "SdÃlený klÃÄ WEP" msgid "WEP passphrase" msgstr "WEP heslo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM mód" @@ -5656,9 +5677,9 @@ msgstr "WMM mód" msgid "WPA passphrase" msgstr "WPA heslo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5682,8 +5703,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "VarovánÃ" @@ -5691,7 +5712,7 @@ msgstr "VarovánÃ" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5778,7 +5799,7 @@ msgstr "Bezdrátová sÃÅ¥ je povolena" msgid "Write received DNS requests to syslog" msgstr "Zapisovat pÅ™ijaté požadavky DNS do systemového logu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5800,7 +5821,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5813,19 +5834,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5840,7 +5861,7 @@ msgstr "libovolný" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5893,8 +5914,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "zakázat" @@ -5998,7 +6019,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "mÃstnà <abbr title=\"Domain Name System\">DNS</abbr> soubor" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6031,7 +6052,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "off" @@ -6039,7 +6060,7 @@ msgstr "off" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "on" @@ -6083,8 +6104,8 @@ msgstr "" msgid "routed" msgstr "smÄ›rované" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6109,7 +6130,7 @@ msgstr "" msgid "tagged" msgstr "oznaÄený" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/de/base.po b/modules/luci-base/po/de/base.po index b39871f73e..9964f3530a 100644 --- a/modules/luci-base/po/de/base.po +++ b/modules/luci-base/po/de/base.po @@ -57,16 +57,16 @@ msgstr "(keine Schnittstellen)" msgid "-- Additional Field --" msgstr "-- Zusätzliches Feld --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Bitte auswählen --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- benutzerdefiniert --" @@ -90,6 +90,10 @@ msgstr "-- UUID vergleichen --" msgid "-- please select --" msgstr "-- Bitte auswählen --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Systemlast (1 Minute):" @@ -98,7 +102,7 @@ msgstr "Systemlast (1 Minute):" msgid "15 Minute Load:" msgstr "Systemlast (15 Minuten):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "vierstellige hexadezimale ID" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Systemlast (5 Minuten):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "sechstellige hexadezimale ID (ohne Doppelpunkte)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r: Schnelle Client-Ãœbergabe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "Maximales Timeout für Quelladressprüfungen (SA Query)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "Wiederholungsintervall für Quelladressprüfungen (SA Query)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "802.11w: Schutz von Management-Frames aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "802.11w: Maximales Timeout" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "802.11w: Wiederholungsintervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr>-Server in der Reihenfolge der " "Resolv-Datei abfragen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -312,7 +316,7 @@ msgid "Access Concentrator" msgstr "Access Concentrator" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Access Point" @@ -402,6 +406,10 @@ msgstr "Adresse der lokalen Relay-Brücke" msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -417,7 +425,7 @@ msgstr "Erweiterte Einstellungen" msgid "Aggregate Transmit Power(ACTATP)" msgstr "Vollständige Sendeleistung (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alarm" @@ -450,14 +458,14 @@ msgstr "IPs sequenziell vergeben" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Erlaube Anmeldung per Passwort" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Erlaubt dem Access-Point die Trennung von Clients mit schlechter " "Signalqualität" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Alle außer gelistete erlauben" @@ -465,8 +473,8 @@ msgstr "Alle außer gelistete erlauben" msgid "Allow legacy 802.11b rates" msgstr "Veraltete 802.11b Raten erlauben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Nur gelistete erlauben" @@ -595,7 +603,7 @@ msgstr "Angekündigte Suchdomains" msgid "Announced DNS servers" msgstr "Angekündigte DNS Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "Anonyme Identität" @@ -673,7 +681,7 @@ msgstr "Assoziierungen" msgid "Auth Group" msgstr "Berechtigungsgruppe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Authentifizierung" @@ -695,8 +703,8 @@ msgstr "Autorisierung benötigt" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatisches Neuladen" @@ -1001,7 +1009,7 @@ msgstr "" "oder das <em>erstellen</em> Feld ausfüllen um eine neue Zone direkt " "anzulegen und zuzuweisen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1009,7 +1017,7 @@ msgstr "" "Wählt die Netzwerke die dieser WLAN-Schnittstelle zugeordnet werden. Das " "<em>erstelle</em>-Feld ausfüllen um ein neues Netzwerk zu erzeugen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Verschlüsselungsalgorithmus" @@ -1035,7 +1043,7 @@ msgstr "" "gedacht!)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Client" @@ -1095,7 +1103,7 @@ msgstr "Kommentar" msgid "Common Configuration" msgstr "Allgemeine Konfiguration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1199,11 +1207,11 @@ msgstr "Erzeuge Schnittstelle" msgid "Create a bridge over multiple interfaces" msgstr "Erzeuge Netzwerkbrücke über mehrere Schnittstellen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisch" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron Protokolllevel" @@ -1237,15 +1245,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "Passt das Verhalten der Geräte-LEDs an - wenn dies möglich ist." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1329,7 +1337,7 @@ msgstr "" msgid "DSL line mode" msgstr "DSL Leitungsmodus" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1341,14 +1349,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "Datenrate" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Standard %d" @@ -1401,7 +1409,7 @@ msgstr "Schlüssel löschen" msgid "Delete this network" msgstr "Dieses Netzwerk löschen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1473,7 +1481,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Verschlüsselung deaktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "Inaktivitäts-Proben deaktivieren" @@ -1491,11 +1499,11 @@ msgstr "Dieses Netzwerk deaktivieren" msgid "Disabled" msgstr "Deaktiviert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Deaktiviert (Standard)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "Trennung bei schlechtem Antwortverhalten" @@ -1635,7 +1643,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-Bitlänge" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-Methode" @@ -1662,7 +1670,7 @@ msgstr "Diese Schnittstelle bearbeiten" msgid "Edit this network" msgstr "Dieses Netzwerk bearbeiten" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Notfall" @@ -1703,7 +1711,7 @@ msgstr "Aushandeln von IPv6-Adressen auf der PPP-Verbindung aktivieren" msgid "Enable Jumbo Frame passthrough" msgstr "Aktiviere Jumbo Frame Durchleitung" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktiviere NTP-Client" @@ -1719,11 +1727,11 @@ msgstr "TFTP-Server aktivieren" msgid "Enable VLAN functionality" msgstr "VLAN-Funktionalität aktivieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WPS-via-Knopfdruck aktivieren, erfordert WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Key Reinstallation (KRACK) Gegenmaßnahmen aktivieren" @@ -1769,7 +1777,7 @@ msgstr "Aktiviert" msgid "Enables IGMP snooping on this bridge" msgstr "Aktiviert die automatische IGMP-Erkennung auf dieser Netzwerkbrücke" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1788,7 +1796,7 @@ msgstr "Kapselung" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1819,7 +1827,7 @@ msgstr "Lösche..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Fehler" @@ -1863,23 +1871,23 @@ msgstr "" msgid "External" msgstr "Extern" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "Externe R0-Key-Holder-List" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "Externe R1-Key-Holder-List" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Externer Protokollserver IP" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Externer Protokollserver Port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Externes Protokollserver Protokoll" @@ -1887,15 +1895,15 @@ msgstr "Externes Protokollserver Protokoll" msgid "Extra SSH command options" msgstr "Zusätzliche SSH-Kommando-Optionen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "FT-über-DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "FT-drahtlos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "FT Protokoll" @@ -2010,7 +2018,7 @@ msgstr "Start erzwingen" msgid "Force 40MHz mode" msgstr "40MHz-Modus forcieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "CCMP (AES) erzwingen" @@ -2020,11 +2028,11 @@ msgstr "" "Aktiviere DHCP-Server für dieses Netzwerk, selbst wenn ein anderer aktiver " "Server erkannt wurde." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Erzwinge TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Erzwinge TKIP und CCMP (AES)" @@ -2065,7 +2073,7 @@ msgid "Forwarding mode" msgstr "Weiterleitungstyp" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Fragmentierungsschwelle" @@ -2129,7 +2137,7 @@ msgstr "Allgemeine Einstellungen" msgid "Generate Config" msgstr "Konfiguration generieren" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "PMK lokal generieren" @@ -2158,7 +2166,7 @@ msgstr "Globale Netzwerkeinstellungen" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Zur Passwortkonfiguration..." @@ -2207,9 +2215,9 @@ msgstr "" "An dieser Stelle können Grundeinstellungen des Systems wie Hostname oder " "Zeitzone vorgenommen werden." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "ESSID verstecken" @@ -2243,7 +2251,7 @@ msgstr "\"Host-Uniq\"-Bezeichner" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Hostname" @@ -2464,7 +2472,7 @@ msgstr "IPv6-über-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-über-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identität" @@ -2581,7 +2589,7 @@ msgstr "Timeout bei Inaktivität" msgid "Inbound:" msgstr "Eingehend:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2638,7 +2646,7 @@ msgstr "Schnittstellenübersicht" msgid "Interface is reconnecting..." msgstr "Schnittstelle verbindet neu..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Schnittstellenname" @@ -2679,7 +2687,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "Ungültiger Benutzername oder ungültiges Passwort! Bitte erneut versuchen. " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Clients isolieren" @@ -2696,7 +2704,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript benötigt!" @@ -2725,15 +2733,16 @@ msgstr "Kernelprotokoll" msgid "Kernel Version" msgstr "Kernel Version" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Schlüssel Nr. %d" @@ -2776,7 +2785,7 @@ msgstr "LLC" msgid "Label" msgstr "Label" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Sprache" @@ -2865,7 +2874,7 @@ msgstr "" "Liste von <abbr title=\"Domain Name System\">DNS</abbr>-Servern an welche " "Requests weitergeleitet werden" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2880,7 +2889,7 @@ msgstr "" "werden kann, mit der sich der Client wärend der anfänglichen " "Mobilitätsdomänen-Assoziation verbunden hat." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2975,7 +2984,7 @@ msgid "Local Startup" msgstr "Lokales Startskript" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokale Zeit" @@ -3019,7 +3028,7 @@ msgstr "Lokalisiere Anfragen" msgid "Locked to channel %s used by: %s" msgstr "Festgelegt auf Kanal %s, verwendet durch: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Protokolllevel" @@ -3061,8 +3070,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-Adressfilter" @@ -3071,8 +3080,8 @@ msgstr "MAC-Adressfilter" msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-Adressliste" @@ -3122,7 +3131,7 @@ msgstr "Manuell" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Maximal erreichbare Datenrate (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "Maximal erlaubter Inaktivitätszeitraum" @@ -3197,7 +3206,7 @@ msgstr "Spiegel-Quell-Port" msgid "Missing protocol extension for proto %q" msgstr "Erweiterung für Protokoll %q fehlt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "Mobilitätsbereich" @@ -3234,9 +3243,9 @@ msgstr "Modem-Informationsabfrage fehlgeschlagen" msgid "Modem init timeout" msgstr "Wartezeit für Modeminitialisierung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3299,7 +3308,7 @@ msgstr "Nach unten schieben" msgid "Move up" msgstr "Nach oben schieben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3323,7 +3332,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP Server Kandidaten" @@ -3352,7 +3361,7 @@ msgstr "Netzmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3426,7 +3435,7 @@ msgstr "Netzwerkname nicht angegeben" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Kein Passwort gesetzt!" @@ -3475,7 +3484,7 @@ msgstr "An Schnittstellen binden" msgid "None" msgstr "keine" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3497,7 +3506,7 @@ msgstr "Nicht verbunden" msgid "Note: interface name length" msgstr "Hinweis: Länge des Namens beachten" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notiz" @@ -3511,7 +3520,7 @@ msgstr "" "Anzahl der zwischengespeicherten DNS-Einträge. Maximum sind 10000 Einträge, " "\"0\" deaktiviert die Zwischenspeicherung." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "Für Kompression benutze parallele Prozessanzahl" @@ -3593,7 +3602,7 @@ msgstr "Option geändert" msgid "Option removed" msgstr "Option entfernt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Optional" @@ -3714,7 +3723,7 @@ msgstr "TOS-Wert überschreiben" msgid "Override TTL" msgstr "TTL-Wert überschreiben" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "Standard Schnittstellennamen überschreiben" @@ -3778,7 +3787,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN-Code abgelehnt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3831,7 +3840,7 @@ msgid "Part of zone %q" msgstr "Teil von Zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3842,11 +3851,11 @@ msgstr "Passwort" msgid "Password authentication" msgstr "Passwortanmeldung" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Passwort des privaten Schlüssels" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "Password des inneren, privaten Schlüssels" @@ -3858,27 +3867,27 @@ msgstr "Passwort Bestätigung" msgid "Paste or drag SSH key file…" msgstr "Schlüssel einfügen oder Schlüsseldatei hereinziehen…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Pfad zum CA-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Pfad zu Client-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Pfad zum Privaten Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "Pfad zum inneren CA-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "Pfad zum inneren Client-Zertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "Pfad zum inneren, privaten Schlüssel" @@ -3956,6 +3965,14 @@ msgstr "Bitte Benutzernamen und Passwort eingeben." msgid "Policy" msgstr "Standardregel" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -4005,8 +4022,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Verhindert das Binden an diese Schnittstellen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Unterbindet Client-Client-Verkehr" @@ -4047,7 +4064,7 @@ msgstr "Protokoll für die neue Schnittstelle" msgid "Protocol support is not installed" msgstr "Protokollunterstützung ist nicht installiert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTP-Server anbieten" @@ -4055,7 +4072,7 @@ msgstr "NTP-Server anbieten" msgid "Provide new network" msgstr "Neues Netzwerk anbieten" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4098,11 +4115,11 @@ msgid "" "servers" msgstr "Alle verfügbaren übergeordneten DNS-Server abfragen" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "R0-Schlüsselgültigkeit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "R1-Schlüsselinhaber" @@ -4110,8 +4127,12 @@ msgstr "R1-Schlüsselinhaber" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 \"NAT-T\"-Modus" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS-Schwelle" @@ -4126,27 +4147,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX-Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radius-Accounting-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radius-Accounting-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radius-Accounting-Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radius-Authentication-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radius-Authentication-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radius-Authentication-Server" @@ -4209,7 +4230,7 @@ msgstr "Echtzeitverkehr" msgid "Realtime Wireless" msgstr "Echtzeit-WLAN-Signal" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "Reassoziierungsfrist" @@ -4303,7 +4324,7 @@ msgstr "IPv6-Adresse anfordern" msgid "Request IPv6-prefix of length" msgstr "IPv6-Präfix dieser Länge anfordern" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Benötigt" @@ -4331,10 +4352,10 @@ msgstr "" "Tunnels nutzen darf. Entspricht üblicherweise der Tunnel-IP-Adresse des " "Verbindungspartners und den Netzwerken, die dieser durch den Tunnel routet." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "Benötigt die \"volle\" Variante des wpad oder hostapd Paketes und " "Unterstützung vom WLAN-Treiber." @@ -4585,7 +4606,7 @@ msgstr "" "Sende LCP Echo Anforderungen im angegebenem Interval in Sekunden, nur " "effektiv in Verbindung mit einem Fehler-Schwellwert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Clients isolieren" @@ -4623,7 +4644,7 @@ msgstr "" "Option ausgewählt, so werden die Hotplug-Skripte bei Änderung nicht " "aufgerufen)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Zeitsynchronisierung einrichten" @@ -4648,7 +4669,7 @@ msgstr "schwerwiegende Fehlersekunden (SES)" msgid "Short GI" msgstr "kurzes Guardintervall" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Kurze Präambel" @@ -4691,7 +4712,7 @@ msgstr "Größe" msgid "Size of DNS query cache" msgstr "Größe des DNS-Caches" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Größe der ZRAM-Gerätedatei in Megabytes." @@ -4848,7 +4869,7 @@ msgstr "" "Konfigurationen benötigt auf denen lediglich Hosts mit zugehörigem " "statischem Lease-Eintrag bedient werden." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "Client-Inaktivitäts-Limit" @@ -4955,7 +4976,7 @@ msgstr "Systemprotokoll" msgid "System Properties" msgstr "Systemeigenschaften" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Größe des Systemprotokoll-Puffers" @@ -5222,7 +5243,7 @@ msgstr "" "Das hochgeladene Firmware-Image hat ein nicht unterstütztes Format. Stellen " "Sie sicher dass Sie das generische Format für Ihre Platform gewählt haben." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Thema" @@ -5255,7 +5276,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5358,20 +5379,20 @@ msgstr "Diese Seite gibt eine Ãœbersicht über aktive Netzwerkverbindungen." msgid "This section contains no values yet" msgstr "Diese Sektion enthält noch keine Einträge" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Zeitsynchronisation" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Die Zeitsynchronisation wurde noch nicht konfiguriert." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "Zeitintervall für die neubestimmung des Gruppenschlüssels" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zeitzone" @@ -5415,7 +5436,7 @@ msgstr "Traffic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Ãœbertragungsrate" @@ -5722,11 +5743,11 @@ msgstr "" msgid "Used" msgstr "Belegt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Benutzer Schlüsselindex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5806,18 +5827,18 @@ msgstr "Verifizieren" msgid "Virtual dynamic interface" msgstr "Virtuelle dynamisches Schnittstelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP Open System" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP Shared Key" @@ -5825,8 +5846,8 @@ msgstr "WEP Shared Key" msgid "WEP passphrase" msgstr "WEP Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Modus" @@ -5834,9 +5855,9 @@ msgstr "WMM Modus" msgid "WPA passphrase" msgstr "WPA Schlüssel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5860,8 +5881,8 @@ msgstr "Warte auf das Anwenden der Konfigurationsänderungen... %d Sekunden" msgid "Waiting for device..." msgstr "Warte auf Gerät..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Warnung" @@ -5871,7 +5892,7 @@ msgstr "" "Achtung: Es gibt ungespeicherte Änderungen die bei einem Neustart verloren " "gehen!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5961,7 +5982,7 @@ msgstr "Das WLAN-Netzwerk ist aktiviert" msgid "Write received DNS requests to syslog" msgstr "Empfangene DNS-Anfragen in das Systemprotokoll schreiben" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Systemprotokoll in Datei schreiben" @@ -5984,7 +6005,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -6001,19 +6022,19 @@ msgstr "" "korrekt darzustellen. Bitte mindestens auf Version 7 upgraden oder einen " "anderen Browser wie Firefox, Opera oder Safari benutzen." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRAM Kompressionsalgorithmus" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRAM Kompressionsprozesse" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRAM Einstellungen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRAM Größe" @@ -6028,7 +6049,7 @@ msgstr "beliebig" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6081,8 +6102,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "deaktivieren" @@ -6184,7 +6205,7 @@ msgstr "Schlüssel mit exakt 5 oder 13 Zeichen" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Lokale DNS-Datei" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "Minuten" @@ -6217,7 +6238,7 @@ msgstr "nicht vorhanden" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "aus" @@ -6225,7 +6246,7 @@ msgstr "aus" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ein" @@ -6271,8 +6292,8 @@ msgstr "Relay-Modus" msgid "routed" msgstr "routed" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "Sekunden" @@ -6297,7 +6318,7 @@ msgstr "zustandslos + zustandsorientiert" msgid "tagged" msgstr "tagged" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "Zeiteinheiten (TUs / 1024 ms) [1000-65535]" diff --git a/modules/luci-base/po/el/base.po b/modules/luci-base/po/el/base.po index a208eea92a..e82e4f2b4c 100644 --- a/modules/luci-base/po/el/base.po +++ b/modules/luci-base/po/el/base.po @@ -57,16 +57,16 @@ msgstr "(χωÏίς Ï€ÏοσαÏτημÎνες διεπαφÎÏ‚)" msgid "-- Additional Field --" msgstr "-- ΕπιπλÎον Πεδίο --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- ΠαÏακαλώ επιλÎξτε --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- Ï€ÏοσαÏμοσμÎνο --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "ΦοÏτίο 1 λεπτοÏ:" @@ -98,7 +102,7 @@ msgstr "ΦοÏτίο 1 λεπτοÏ:" msgid "15 Minute Load:" msgstr "ΦοÏτίο 15 λεπτών:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "ΦοÏτίο 5 λεπτών:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Οι <abbr title=\"ΣÏστημα Ονόματος ΤομÎα\">DNS</abbr> εξυπηÏετητÎÏ‚ θα " "εÏωτηθοÏν με την σειÏά εμφάνισης στο αÏχείο resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -309,7 +313,7 @@ msgid "Access Concentrator" msgstr "ΣυγκεντÏωτής Î Ïόσβασης " #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Σημείο Î Ïόσβασης" @@ -402,6 +406,10 @@ msgstr "ΔιεÏθυνση για Ï€Ïόσβαση σε την τοπική γΠmsgid "Administration" msgstr "ΔιαχείÏιση" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -417,7 +425,7 @@ msgstr "Î ÏοχωÏημÎνες Ρυθμίσεις" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Ειδοποίηση" @@ -450,12 +458,12 @@ msgstr "" "ΕπιτÏÎπει την εξουσιοδότηση <abbr title=\"Secure Shell\">SSH</abbr> με " "κωδικό Ï€Ïόσβασης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Îα επιτÏÎπονται όλες, εκτός από αυτÎÏ‚ στη λίστα" @@ -463,8 +471,8 @@ msgstr "Îα επιτÏÎπονται όλες, εκτός από αυτÎÏ‚ ÏƒÏ msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Îα επιτÏÎπονται μόνο αυτÎÏ‚ στην λίστα" @@ -589,7 +597,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -661,7 +669,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Εξουσιοδότηση" @@ -683,8 +691,8 @@ msgstr "Απαιτείται Εξουσιοδότηση" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Αυτόματη ΑνανÎωση" @@ -983,13 +991,13 @@ msgstr "" "από την συσχετισμÎνη ζώνη ή συμπληÏώστε το <em>δημιουÏγία</em> πεδίο για να " "Ï€ÏοσδιοÏίσετε μία νÎα ζώνη και να Ï€ÏοσαÏτήσετε την διεπαφή σε αυτό." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -1012,7 +1020,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Πελάτης" @@ -1073,7 +1081,7 @@ msgstr "" msgid "Common Configuration" msgstr "Κοινή ΠαÏαμετÏοποίηση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1169,11 +1177,11 @@ msgstr "ΔημιουÏγία Διεπαφής" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Επίπεδο ΚαταγÏαφής Cron" @@ -1206,15 +1214,15 @@ msgstr "" "Ρυθμίζει, αν είναι δυνατόν, την συμπεÏιφοÏά των <abbr title=\"Light Emitting " "Diode\">LED</abbr> της συσκευής." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1298,7 +1306,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1310,14 +1318,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Αποσφαλμάτωση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Î Ïοεπιλογή %d" @@ -1370,7 +1378,7 @@ msgstr "" msgid "Delete this network" msgstr "ΔιαγÏαφή Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… δικτÏου" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1442,7 +1450,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1460,11 +1468,11 @@ msgstr "" msgid "Disabled" msgstr "ΑπενεÏγοποιημÎνο" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1606,7 +1614,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "ÎœÎθοδος EAP" @@ -1631,7 +1639,7 @@ msgstr "ΕπεξεÏγασία αυτής της διεπαφής" msgid "Edit this network" msgstr "ΕπεξεÏγασία Î±Ï…Ï„Î¿Ï Ï„Î¿Ï… δικτÏου" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Έκτακτη ανάγκη" @@ -1670,7 +1678,7 @@ msgstr "ΕνεÏγοποίηση διαπÏαγμάτευσης IPv6 πάνω σ msgid "Enable Jumbo Frame passthrough" msgstr "ΕνεÏγοποίηση διÎλευσης Jumbo Frame" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1686,11 +1694,11 @@ msgstr "ΕνεÏγοποίηση εξυπηÏετητή TFTP" msgid "Enable VLAN functionality" msgstr "ΕνεÏγοποίηση λειτουÏγίας VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1736,7 +1744,7 @@ msgstr "ΕνεÏγοποιημÎνο" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1753,7 +1761,7 @@ msgstr "ΛειτουÏγία ενθυλάκωσης" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1784,7 +1792,7 @@ msgstr "ΔιαγÏάφεται..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Σφάλμα" @@ -1828,23 +1836,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "ΕξωτεÏικός εξυπηÏετητής καταγÏαφής συστήματος" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1852,15 +1860,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1970,7 +1978,7 @@ msgstr "Επιβολή" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Επιβολή CCMP (AES)" @@ -1979,11 +1987,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Επιβολή DHCP σε αυτό το δίκτυο ακόμα κι αν Îχει εντοπιστεί άλλος εξυπηÏετητής" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Επιβολή TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Επιβολή TKIP και CCMP (AES)" @@ -2024,7 +2032,7 @@ msgid "Forwarding mode" msgstr "ÎœÎθοδος Ï€Ïοώθησης" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "ÎŒÏιο ΚατακεϵατισµοÏ" @@ -2086,7 +2094,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2113,7 +2121,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2162,9 +2170,9 @@ msgstr "" "Εδώ μποÏείτε να παÏαμετÏοποιήσετε βασικÎÏ‚ πλευÏÎÏ‚ της συσκευής σας όπως το " "όνομα υπολογιστή ή τη ζώνη ÏŽÏας." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "ΚÏυφό <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2199,7 +2207,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Όνομα Υπολογιστή" @@ -2420,7 +2428,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Ταυτότητα" @@ -2536,7 +2544,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "ΠληÏοφοÏίες" @@ -2590,7 +2598,7 @@ msgstr "Επισκόπηση Διεπαφής" msgid "Interface is reconnecting..." msgstr "Η διεπαφή επανασυνδÎεται..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2630,7 +2638,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "ΆκυÏο όνομα χÏήστη και/ή κωδικός Ï€Ïόσβασης! ΠαÏακαλώ Ï€Ïοσπαθήστε ξανά." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2647,7 +2655,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Απαιτείται JavaScript!" @@ -2676,15 +2684,16 @@ msgstr "ΚαταγÏαφή Î Ï…Ïήνα" msgid "Kernel Version" msgstr "Έκδοση Î Ï…Ïήνα" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Κλειδί" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Κλειδί #%d" @@ -2727,7 +2736,7 @@ msgstr "LLC" msgid "Label" msgstr "ΕτικÎτα" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Γλώσσα" @@ -2812,7 +2821,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2821,7 +2830,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2908,7 +2917,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Τοπική ÎÏα" @@ -2944,7 +2953,7 @@ msgstr "Τοπικά εÏωτήματα" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Επίπεδο εξόδου αÏχείων καταγÏαφής" @@ -2986,8 +2995,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-ΔιεÏθυνση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "ΦίλτÏο MAC ΔιευθÏνσεων" @@ -2996,8 +3005,8 @@ msgstr "ΦίλτÏο MAC ΔιευθÏνσεων" msgid "MAC-Filter" msgstr "MAC-ΦίλτÏο" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Λίστα MAC" @@ -3047,7 +3056,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3120,7 +3129,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3157,9 +3166,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "ΠαÏακολοÏθηση" @@ -3223,7 +3232,7 @@ msgstr "Μετακίνηση κάτω" msgid "Move up" msgstr "Μετακίνηση πάνω" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3247,7 +3256,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3276,7 +3285,7 @@ msgstr "Μάσκα δικτÏου" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3350,7 +3359,7 @@ msgstr "Δεν Îχει οÏιστεί όνομα δικτÏου" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Δεν Îχει οÏιστεί κωδικός Ï€Ïόσβασης!" @@ -3399,7 +3408,7 @@ msgstr "" msgid "None" msgstr "ΚανÎνα" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Φυσιολογικό" @@ -3421,7 +3430,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Επισήμανση" @@ -3433,7 +3442,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3515,7 +3524,7 @@ msgstr "Η επιλογή άλλαξε" msgid "Option removed" msgstr "Η επιλογή αφαιÏÎθηκε" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3622,7 +3631,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3684,7 +3693,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3737,7 +3746,7 @@ msgid "Part of zone %q" msgstr "ÎœÎÏος της ζώνης %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3748,11 +3757,11 @@ msgstr "Κωδικός Î Ïόσβασης" msgid "Password authentication" msgstr "Εξουσιοδότηση με κωδικό Ï€Ïόσβασης" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Κωδικός Î Ïόσβασης του Î™Î´Î¹Ï‰Ï„Î¹ÎºÎ¿Ï ÎšÎ»ÎµÎ¹Î´Î¹Î¿Ï" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3764,27 +3773,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "ΔιαδÏομή για Πιστοποιητικό CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "ΔιαδÏομή για Πιστοποιητικό-Πελάτη" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "ΔιαδÏομή για Ιδιωτικό Κλειδί" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3862,6 +3871,14 @@ msgstr "ΠαÏακαλώ εισάγετε όνομα χÏήστη και κωδΠmsgid "Policy" msgstr "Πολιτική" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "ΘÏÏα" @@ -3909,8 +3926,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 #, fuzzy msgid "Prevents client-to-client communication" msgstr "ΑποτÏÎπει την επικοινωνία Î¼ÎµÏ„Î±Î¾Ï Ï€ÎµÎ»Î±Ï„ÏŽÎ½" @@ -3952,7 +3969,7 @@ msgstr "Î Ïωτόκολλο νÎας διεπαφής" msgid "Protocol support is not installed" msgstr "Η υποστήÏιξη Ï€Ïωτοκόλλου δεν Îχει εκγατασταθεί" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3960,7 +3977,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ψευδό Ad-Hoc (ahdemo)" @@ -3995,11 +4012,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4007,8 +4024,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "ÎŒÏιο RTS/CTS" @@ -4022,27 +4043,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4098,7 +4119,7 @@ msgstr "Κίνηση Ï€ÏÎ±Î³Î¼Î±Ï„Î¹ÎºÎ¿Ï Ï‡Ïόνου" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4192,7 +4213,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4215,10 +4236,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4461,7 +4482,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 #, fuzzy msgid "Separate Clients" msgstr "Απομόνωση Πελατών" @@ -4497,7 +4518,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4521,7 +4542,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4564,7 +4585,7 @@ msgstr "ÎœÎγεθος" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4707,7 +4728,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4811,7 +4832,7 @@ msgstr "ΚαταγÏαφή Συστήματος" msgid "System Properties" msgstr "Ιδιότητες Συστήματος" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -5038,7 +5059,7 @@ msgstr "" "Η εικόνα που ανεβάσατε δεν πεÏιÎχει κάποια υποστηÏιζόμενη μοÏφή. Βεβαιωθείτε " "ότι επιλÎξατε την γενική μοÏφή εικόνας για την πλατφόÏμα σας." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Εμφάνιση" @@ -5069,7 +5090,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5157,20 +5178,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Αυτό το τμήμα δεν πεÏιÎχει τιμÎÏ‚ ακόμη" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Ζώνη ÏŽÏας" @@ -5213,7 +5234,7 @@ msgstr "Κίνηση" msgid "Transfer" msgstr "ΜεταφÎÏθηκαν" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Ρυθμός Εκπομπής" @@ -5513,11 +5534,11 @@ msgstr "" msgid "Used" msgstr "Σε χÏήση" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "ΧÏησιμοποιοÏμενη Υποδοχή ΚλειδιοÏ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5595,18 +5616,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "ΜοιÏαζόμενο κλειδί WEP" @@ -5614,8 +5635,8 @@ msgstr "ΜοιÏαζόμενο κλειδί WEP" msgid "WEP passphrase" msgstr "Κωδική φÏάση WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "ΥποστήÏιξη WMM" @@ -5623,9 +5644,9 @@ msgstr "ΥποστήÏιξη WMM" msgid "WPA passphrase" msgstr "Κωδική φÏάση WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5647,8 +5668,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Î Ïοειδοποίηση" @@ -5656,7 +5677,7 @@ msgstr "Î Ïοειδοποίηση" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5743,7 +5764,7 @@ msgstr "Το ασÏÏματο δίκτυο είναι ενεÏγό" msgid "Write received DNS requests to syslog" msgstr "ΚαταγÏαφή των ληφθÎντων DNS αιτήσεων στο syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5766,7 +5787,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5778,19 +5799,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5805,7 +5826,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5859,8 +5880,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "ανενεÏγό" @@ -5964,7 +5985,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "τοπικό αÏχείο <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5997,7 +6018,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "κλειστό" @@ -6005,7 +6026,7 @@ msgstr "κλειστό" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ανοιχτό" @@ -6049,8 +6070,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6075,7 +6096,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/en/base.po b/modules/luci-base/po/en/base.po index 02cc7a1fad..eae8317c35 100644 --- a/modules/luci-base/po/en/base.po +++ b/modules/luci-base/po/en/base.po @@ -57,16 +57,16 @@ msgstr "(no interfaces attached)" msgid "-- Additional Field --" msgstr "-- Additional Field --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Please choose --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- custom --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Minute Load:" @@ -98,7 +102,7 @@ msgstr "1 Minute Load:" msgid "15 Minute Load:" msgstr "15 Minute Load:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 Minute Load:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servers will be queried in the " "order of the resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -309,7 +313,7 @@ msgid "Access Concentrator" msgstr "Access Concentrator" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Access Point" @@ -399,6 +403,10 @@ msgstr "Address to access local relay bridge" msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -414,7 +422,7 @@ msgstr "Advanced Settings" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alert" @@ -445,12 +453,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Allow all except listed" @@ -458,8 +466,8 @@ msgstr "Allow all except listed" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Allow listed only" @@ -580,7 +588,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -652,7 +660,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Authentication" @@ -674,8 +682,8 @@ msgstr "Authorization Required" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Auto Refresh" @@ -972,13 +980,13 @@ msgstr "" "fill out the <em>create</em> field to define a new zone and attach the " "interface to it." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Cipher" @@ -1001,7 +1009,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Client" @@ -1061,7 +1069,7 @@ msgstr "" msgid "Common Configuration" msgstr "Common Configuration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1157,11 +1165,11 @@ msgstr "Create Interface" msgid "Create a bridge over multiple interfaces" msgstr "Create a bridge over multiple interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critical" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron Log Level" @@ -1194,15 +1202,15 @@ msgstr "" "Customizes the behaviour of the device <abbr title=\"Light Emitting Diode" "\">LED</abbr>s if possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1286,7 +1294,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1298,14 +1306,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Default %d" @@ -1359,7 +1367,7 @@ msgstr "" msgid "Delete this network" msgstr "Delete this network" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1429,7 +1437,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1447,11 +1455,11 @@ msgstr "" msgid "Disabled" msgstr "Disabled" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1586,7 +1594,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-Method" @@ -1611,7 +1619,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1650,7 +1658,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1666,11 +1674,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1716,7 +1724,7 @@ msgstr "Enabled" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1733,7 +1741,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1764,7 +1772,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" @@ -1805,23 +1813,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1829,15 +1837,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1947,7 +1955,7 @@ msgstr "Force" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1955,11 +1963,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -2000,7 +2008,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Fragmentation Threshold" @@ -2062,7 +2070,7 @@ msgstr "General Setup" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2089,7 +2097,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2138,9 +2146,9 @@ msgstr "" "Here you can configure the basic aspects of your device like its hostname or " "the timezone." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2174,7 +2182,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Hostname" @@ -2395,7 +2403,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identity" @@ -2506,7 +2514,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2560,7 +2568,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2600,7 +2608,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Invalid username and/or password! Please try again." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2617,7 +2625,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2646,15 +2654,16 @@ msgstr "Kernel Log" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2697,7 +2706,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Language" @@ -2782,7 +2791,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2791,7 +2800,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2878,7 +2887,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Local Time" @@ -2914,7 +2923,7 @@ msgstr "Localise queries" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2956,8 +2965,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-Address Filter" @@ -2966,8 +2975,8 @@ msgstr "MAC-Address Filter" msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-List" @@ -3017,7 +3026,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3089,7 +3098,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3126,9 +3135,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3191,7 +3200,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3215,7 +3224,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3244,7 +3253,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3318,7 +3327,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3367,7 +3376,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3389,7 +3398,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3401,7 +3410,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3483,7 +3492,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3590,7 +3599,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3652,7 +3661,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3705,7 +3714,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3716,11 +3725,11 @@ msgstr "Password" msgid "Password authentication" msgstr "Password authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Password of Private Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3732,27 +3741,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Path to CA-Certificate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Path to Private Key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3830,6 +3839,14 @@ msgstr "Please enter your username and password." msgid "Policy" msgstr "Policy" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3877,8 +3894,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Prevents client-to-client communication" @@ -3919,7 +3936,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3927,7 +3944,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3962,11 +3979,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3974,8 +3991,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -3989,27 +4010,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4065,7 +4086,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4159,7 +4180,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4182,10 +4203,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4427,7 +4448,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Separate Clients" @@ -4462,7 +4483,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4486,7 +4507,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4529,7 +4550,7 @@ msgstr "Size" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4670,7 +4691,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4774,7 +4795,7 @@ msgstr "System Log" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4999,7 +5020,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Theme" @@ -5030,7 +5051,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5115,20 +5136,20 @@ msgstr "This page gives an overview over currently active network connections." msgid "This section contains no values yet" msgstr "This section contains no values yet" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Timezone" @@ -5170,7 +5191,7 @@ msgstr "Traffic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Transmission Rate" @@ -5470,11 +5491,11 @@ msgstr "" msgid "Used" msgstr "Used" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5552,18 +5573,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5571,8 +5592,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Mode" @@ -5580,9 +5601,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5606,8 +5627,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5615,7 +5636,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5702,7 +5723,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5724,7 +5745,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5736,19 +5757,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5763,7 +5784,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5816,8 +5837,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "disable" @@ -5921,7 +5942,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> file" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5954,7 +5975,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5962,7 +5983,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -6006,8 +6027,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6032,7 +6053,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/es/base.po b/modules/luci-base/po/es/base.po index 092d492409..34ed42a6eb 100644 --- a/modules/luci-base/po/es/base.po +++ b/modules/luci-base/po/es/base.po @@ -57,16 +57,16 @@ msgstr "(sin interfaces conectados)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Elija, por favor --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- introducir --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga a 1 minuto:" @@ -98,7 +102,7 @@ msgstr "Carga a 1 minuto:" msgid "15 Minute Load:" msgstr "Carga a 15 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Carga a 5 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de conjunto de servicios básicos\">BSSID</abbr>" @@ -159,7 +163,7 @@ msgstr "" "Los servidores de <abbr title=\"Domain Name System\">DNS</abbr> se consultan " "en el orden en que aparecen en el fichero resolv" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de conjunto de servicios extendidos\">ESSID</" @@ -311,7 +315,7 @@ msgid "Access Concentrator" msgstr "Concentrador de acceso" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Punto de Acceso" @@ -403,6 +407,10 @@ msgstr "Dirección del puente relé local" msgid "Administration" msgstr "Administración" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -418,7 +426,7 @@ msgstr "Configuración avanzada" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" @@ -451,12 +459,12 @@ msgstr "" "Permitir autenticación de contraseña via <abbr title=\"Secure Shell\">SSH</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Permitir a todos excepto a los de la lista" @@ -464,8 +472,8 @@ msgstr "Permitir a todos excepto a los de la lista" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Permitir a los pertenecientes en la lista" @@ -586,7 +594,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -658,7 +666,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autentificación" @@ -680,8 +688,8 @@ msgstr "Conéctese" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Autorefresco" @@ -979,7 +987,7 @@ msgstr "" "asociada o rellene el campo <em>crear</em> para definir una zona nueva a la " "que asignarla." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -987,7 +995,7 @@ msgstr "" "Elija la red o redes a las que quiere unir esta interfaz inalámbrica o vacÃe " "el campo <em>crear</em> para definir una red nueva." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Cifrado" @@ -1010,7 +1018,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Cliente" @@ -1070,7 +1078,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuración común" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1166,11 +1174,11 @@ msgstr "Crear interfaz" msgid "Create a bridge over multiple interfaces" msgstr "Crear un puente sobre múltiples interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "CrÃtico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Nivel de registro de cron" @@ -1203,15 +1211,15 @@ msgstr "" "Personaliza el comportamiento de los <abbr title=\"Light Emitting Diode" "\">LED</abbr>s del dispositivo, si es posible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1295,7 +1303,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1307,14 +1315,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depuración" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "%d por defecto" @@ -1368,7 +1376,7 @@ msgstr "" msgid "Delete this network" msgstr "Borrar esta red" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1440,7 +1448,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1458,11 +1466,11 @@ msgstr "" msgid "Disabled" msgstr "Desactivar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1601,7 +1609,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Método EAP" @@ -1626,7 +1634,7 @@ msgstr "Editar esta interfaz" msgid "Edit this network" msgstr "Editar esta red" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergencia" @@ -1665,7 +1673,7 @@ msgstr "Activar negociación IPv6 en el enlace PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Activar paso de tramas jumbo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Activar cliente NTP" @@ -1681,11 +1689,11 @@ msgstr "Activar servidor TFTP" msgid "Enable VLAN functionality" msgstr "Activar funcionalidad VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1731,7 +1739,7 @@ msgstr "Activado" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1748,7 +1756,7 @@ msgstr "Modo de encapsulado" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1779,7 +1787,7 @@ msgstr "Borrando..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Error" @@ -1823,23 +1831,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Puerto del servidor externo de registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1847,15 +1855,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1965,7 +1973,7 @@ msgstr "Forzar" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forzar CCMP (AES)" @@ -1973,11 +1981,11 @@ msgstr "Forzar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forzar DHCP en esta red aunque se detecte otro servidor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forzar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forzar TKIP y CCMP (AES)" @@ -2018,7 +2026,7 @@ msgid "Forwarding mode" msgstr "Modo de retransmisión" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Umbral de fragmentación" @@ -2081,7 +2089,7 @@ msgstr "Configuración general" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2110,7 +2118,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir a configuración de contraseña..." @@ -2158,9 +2166,9 @@ msgid "" msgstr "" "Aspectos básicos de su dispositivo como la zona horaria o nombre de máquina." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Ocultar <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2196,7 +2204,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nombre de máquina" @@ -2417,7 +2425,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identidad" @@ -2535,7 +2543,7 @@ msgstr "Espera de inactividad" msgid "Inbound:" msgstr "Entrantes:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Información" @@ -2589,7 +2597,7 @@ msgstr "Resumen de interfaces" msgid "Interface is reconnecting..." msgstr "Reconectando interfaz..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2630,7 +2638,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "¡Nombre de usuario o contraseña no válidos!. Pruebe de nuevo, por favor." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2647,7 +2655,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "¡Se necesita JavaScript!" @@ -2676,15 +2684,16 @@ msgstr "Registro del Kernel" msgid "Kernel Version" msgstr "Versión del Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Clave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Clave #%d" @@ -2727,7 +2736,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2814,7 +2823,7 @@ msgstr "" "Lista de servidores <abbr title=\"Domain Name System\">DNS</abbr> a los que " "enviar solicitudes" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2823,7 +2832,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2910,7 +2919,7 @@ msgid "Local Startup" msgstr "Arranque local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora local" @@ -2953,7 +2962,7 @@ msgstr "Localizar consultas" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Nivel de registro" @@ -2995,8 +3004,8 @@ msgstr "" msgid "MAC-Address" msgstr "Dirección MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtro por dirección MAC" @@ -3005,8 +3014,8 @@ msgstr "Filtro por dirección MAC" msgid "MAC-Filter" msgstr "Filtro por dirección MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Lista de direcciones MAC" @@ -3056,7 +3065,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3128,7 +3137,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Extensión de protocolo faltante para %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3165,9 +3174,9 @@ msgstr "" msgid "Modem init timeout" msgstr "Espera de inicialización del modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3230,7 +3239,7 @@ msgstr "Bajar" msgid "Move up" msgstr "Subir" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3254,7 +3263,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Servidores NTP a consultar" @@ -3283,7 +3292,7 @@ msgstr "Máscara de red" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3357,7 +3366,7 @@ msgstr "No se ha especificado un nombre de red" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "¡Sin contraseña!" @@ -3406,7 +3415,7 @@ msgstr "" msgid "None" msgstr "Ninguno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3428,7 +3437,7 @@ msgstr "No conectado" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Aviso" @@ -3440,7 +3449,7 @@ msgstr "NSLookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3521,7 +3530,7 @@ msgstr "Opción cambiada" msgid "Option removed" msgstr "Opción eliminada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3628,7 +3637,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3692,7 +3701,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3745,7 +3754,7 @@ msgid "Part of zone %q" msgstr "Parte de zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3756,11 +3765,11 @@ msgstr "Contraseña" msgid "Password authentication" msgstr "Autentificación de contraseña" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Contraseña de la Clave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3772,27 +3781,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Ruta al Certificado CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Camino al certificado de cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Ruta a la Clave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3870,6 +3879,14 @@ msgstr "Por favor, introduzca su nombre de usuario y contraseña." msgid "Policy" msgstr "PolÃtica" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Puerto" @@ -3919,8 +3936,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Impide la comunicación cliente a cliente" @@ -3961,7 +3978,7 @@ msgstr "Protocolo de la nueva interfaz" msgid "Protocol support is not installed" msgstr "No está instalado el soporte al protocolo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Dar servicio NTP" @@ -3969,7 +3986,7 @@ msgstr "Dar servicio NTP" msgid "Provide new network" msgstr "Introduzca una nueva red" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4004,11 +4021,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4016,8 +4033,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Umbral RTS/CTS" @@ -4031,27 +4052,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Ratio RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Puerto de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Secreto de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Servidor de contabilidad Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Puerto de autentificación Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Secreto de autentificación Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Servidor de autentificación Radius" @@ -4110,7 +4131,7 @@ msgstr "Tráfico en tiempo real" msgid "Realtime Wireless" msgstr "Red inalámbrica en tiempo real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4204,7 +4225,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4227,10 +4248,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4474,7 +4495,7 @@ msgstr "" "Enviar peticiones de echo LCP cada intervalo de segundos dado, solo efectivo " "usado conjuntamente con el umbral de fallo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Aislar clientes" @@ -4509,7 +4530,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Sincronización horaria" @@ -4534,7 +4555,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4577,7 +4598,7 @@ msgstr "Tamaño" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4730,7 +4751,7 @@ msgstr "" "configuraciones de interfaz no dinámica en las que a cada máquina siempre se " "le quiere servir la misma dirección IP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4834,7 +4855,7 @@ msgstr "Registro del sistema" msgid "System Properties" msgstr "Propiedades del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Tamaño del buffer de registro del sistema" @@ -5086,7 +5107,7 @@ msgstr "" "El archivo con la imagen de firmware subido no tiene un formato adecuado. " "Asegúrese de haber elegido la imagen correcta para su plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5119,7 +5140,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5213,20 +5234,20 @@ msgstr "Conexiones de red activas." msgid "This section contains no values yet" msgstr "No hay reglas definidas" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronización horaria" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Sincronización horaria no configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zona horaria" @@ -5268,7 +5289,7 @@ msgstr "Tráfico" msgid "Transfer" msgstr "Transferencia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Tasa de Transmisión" @@ -5575,11 +5596,11 @@ msgstr "" msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Espacio de clave usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5657,18 +5678,18 @@ msgstr "Verificar" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Sistema abierto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Clave compartida WEP" @@ -5676,8 +5697,8 @@ msgstr "Clave compartida WEP" msgid "WEP passphrase" msgstr "Frase de paso WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Modo WMM" @@ -5685,9 +5706,9 @@ msgstr "Modo WMM" msgid "WPA passphrase" msgstr "Frase de paso WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5711,8 +5732,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Aviso" @@ -5720,7 +5741,7 @@ msgstr "Aviso" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5807,7 +5828,7 @@ msgstr "Red inalámbrica conectada" msgid "Write received DNS requests to syslog" msgstr "Escribir las peticiones de DNS recibidas en el registro del sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5830,7 +5851,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5843,19 +5864,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5870,7 +5891,7 @@ msgstr "cualquiera" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5923,8 +5944,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "desabilitar" @@ -6028,7 +6049,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Archvo <abbr title=\"Domain Name System\">DNS</abbr> local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6061,7 +6082,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "parado" @@ -6069,7 +6090,7 @@ msgstr "parado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "activo" @@ -6113,8 +6134,8 @@ msgstr "" msgid "routed" msgstr "enrutado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6139,7 +6160,7 @@ msgstr "" msgid "tagged" msgstr "marcado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/fr/base.po b/modules/luci-base/po/fr/base.po index 3c3fa7d305..03b8f8797a 100644 --- a/modules/luci-base/po/fr/base.po +++ b/modules/luci-base/po/fr/base.po @@ -57,16 +57,16 @@ msgstr "(pas d'interface connectée)" msgid "-- Additional Field --" msgstr "-- Champ Supplémentaire --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Choisir --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- autre --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Charge sur 1 minute :" @@ -98,7 +102,7 @@ msgstr "Charge sur 1 minute :" msgid "15 Minute Load:" msgstr "Charge sur 15 minutes :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Charge sur 5 minutes :" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "Les serveurs <abbr title=\"Domain Name System\">DNS</abbr> seront<br/" ">interrogés dans l'ordre du fichier de résolution" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -314,7 +318,7 @@ msgid "Access Concentrator" msgstr "Concentrateur d'accès" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Point d'accès" @@ -405,6 +409,10 @@ msgstr "Adresse pour accéder au pont-relais local" msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -420,7 +428,7 @@ msgstr "Paramètres avancés" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerte" @@ -453,12 +461,12 @@ msgstr "" "Autoriser l'authentification <abbr title=\"Secure Shell\">SSH</abbr> par mot " "de passe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Autoriser tout sauf ce qui est listé" @@ -466,8 +474,8 @@ msgstr "Autoriser tout sauf ce qui est listé" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Autoriser seulement ce qui est listé" @@ -592,7 +600,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -664,7 +672,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Authentification" @@ -686,8 +694,8 @@ msgstr "Autorisation requise" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Rafraîchissement automatique" @@ -984,7 +992,7 @@ msgstr "" "zone associée, ou remplissez le champ <em>créer</em> pour définir une " "nouvelle zone et y inclure cette interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -993,7 +1001,7 @@ msgstr "" "sans-fil ou remplissez le <em>créer</em> champ pour définir un nouveau " "réseau. " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Code de chiffrement" @@ -1016,7 +1024,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Client" @@ -1076,7 +1084,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuration commune" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1172,11 +1180,11 @@ msgstr "Créer une interface" msgid "Create a bridge over multiple interfaces" msgstr "Créer un pont par dessus plusieurs interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critique" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Niveau de journalisation de Cron" @@ -1209,15 +1217,15 @@ msgstr "" "Personnaliser le comportement des <abbr title=\"Diode Électro-Luminescente" "\">DEL</abbr>s si possible." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1301,7 +1309,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1313,14 +1321,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Deboguage" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "%d par défaut" @@ -1374,7 +1382,7 @@ msgstr "" msgid "Delete this network" msgstr "Supprimer ce réseau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1446,7 +1454,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1464,11 +1472,11 @@ msgstr "" msgid "Disabled" msgstr "Désactivé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1610,7 +1618,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Méthode EAP" @@ -1635,7 +1643,7 @@ msgstr "Éditer cette interface" msgid "Edit this network" msgstr "Éditer ce réseau" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Urgence" @@ -1674,7 +1682,7 @@ msgstr "Activer la négociation IPv6 sur le lien PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Activer la circulation de très grandes trames (Jumbo)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Activer client NTP" @@ -1690,11 +1698,11 @@ msgstr "Activer le serveur TFTP" msgid "Enable VLAN functionality" msgstr "Acviter la gestion des VLANs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1740,7 +1748,7 @@ msgstr "Activé" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1759,7 +1767,7 @@ msgstr "Mode encapsulé" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1790,7 +1798,7 @@ msgstr "Effacement…" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erreur" @@ -1834,23 +1842,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Serveur distant de journaux système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port du serveur distant de journaux système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1858,15 +1866,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1976,7 +1984,7 @@ msgstr "Forcer" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forcer CCMP (AES)" @@ -1984,11 +1992,11 @@ msgstr "Forcer CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Force le DHCP sur ce réseau même si un autre serveur est détecté." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forcer TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forcer TKIP et CCMP (AES)" @@ -2029,7 +2037,7 @@ msgid "Forwarding mode" msgstr "Mode de transmission" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Seuil de fragmentation" @@ -2091,7 +2099,7 @@ msgstr "Configuration générale" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2120,7 +2128,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Aller à la configuration du mot de passe…" @@ -2169,9 +2177,9 @@ msgstr "" "Ici, vous pouvez configurer les aspects basiques de votre routeur comme son " "nom ou son fuseau horaire." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Cacher le ESSID" @@ -2205,7 +2213,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nom d'hôte" @@ -2426,7 +2434,7 @@ msgstr "IPv6 sur IPv4 (6ème)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 sur IPv4 (6 vers 4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identité" @@ -2540,7 +2548,7 @@ msgstr "Délai d'inactivité" msgid "Inbound:" msgstr "Intérieur :" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2594,7 +2602,7 @@ msgstr "Vue d'ensemble de l'interface" msgid "Interface is reconnecting..." msgstr "L'interface se reconnecte…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2637,7 +2645,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Nom d'utilisateur et/ou mot de passe invalides ! Réessayez !" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2655,7 +2663,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Nécessite un Script Java !" @@ -2684,15 +2692,16 @@ msgstr "Journal du noyau" msgid "Kernel Version" msgstr "Version du noyau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Clé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Clé n° %d" @@ -2735,7 +2744,7 @@ msgstr "LLC" msgid "Label" msgstr "Étiquette" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Langue" @@ -2822,7 +2831,7 @@ msgstr "" "Liste des serveurs auquels sont transmis les requêtes <abbr title=\"Domain " "Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2831,7 +2840,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2919,7 +2928,7 @@ msgid "Local Startup" msgstr "Démarrage local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Heure Locale" @@ -2962,7 +2971,7 @@ msgstr "Localiser les requêtes" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Niveau de journalisation" @@ -3006,8 +3015,8 @@ msgstr "" msgid "MAC-Address" msgstr "Adresse MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtrage par adresses MAC" @@ -3016,8 +3025,8 @@ msgstr "Filtrage par adresses MAC" msgid "MAC-Filter" msgstr "Filtrage par adresses MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Liste des adresses MAC" @@ -3067,7 +3076,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3139,7 +3148,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Extention de protocole manquante pour le proto %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3176,9 +3185,9 @@ msgstr "" msgid "Modem init timeout" msgstr "Délai max. d'initialisation du modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3241,7 +3250,7 @@ msgstr "Descendre" msgid "Move up" msgstr "Monter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3265,7 +3274,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Serveurs NTP candidats" @@ -3294,7 +3303,7 @@ msgstr "Masque de réseau" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3368,7 +3377,7 @@ msgstr "Aucun nom de réseau donné" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Pas de mot de passe positionné !" @@ -3417,7 +3426,7 @@ msgstr "" msgid "None" msgstr "Vide" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3439,7 +3448,7 @@ msgstr "Non connecté" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Note" @@ -3451,7 +3460,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3531,7 +3540,7 @@ msgstr "Option modifiée" msgid "Option removed" msgstr "Option retirée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3638,7 +3647,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3702,7 +3711,7 @@ msgstr "code PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3755,7 +3764,7 @@ msgid "Part of zone %q" msgstr "Fait partie de la zone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3766,11 +3775,11 @@ msgstr "Mot de passe" msgid "Password authentication" msgstr "Authentification par mot de passe" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Mot de passe de la clé privée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3782,27 +3791,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Chemin de la CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Chemin du certificat-client" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Chemin de la clé privée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3880,6 +3889,14 @@ msgstr "Saisissez votre nom d'utilisateur et mot de passe." msgid "Policy" msgstr "Politique" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3929,8 +3946,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Empêche la communication directe entre clients" @@ -3971,7 +3988,7 @@ msgstr "Protocole de la nouvelle interface" msgid "Protocol support is not installed" msgstr "La gestion du protocole n'est pas installée" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fournir serveur NTP" @@ -3979,7 +3996,7 @@ msgstr "Fournir serveur NTP" msgid "Provide new network" msgstr "Donner un nouveau réseau" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4014,11 +4031,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4026,8 +4043,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Seuil RTS/CTS" @@ -4041,27 +4062,27 @@ msgstr "Reçu" msgid "RX Rate" msgstr "Débit en réception" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Port de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Secret de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Serveur de la comptabilisation Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Port de l'authentification Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Secret de l'authentification Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Serveur de l'authentification Radius" @@ -4119,7 +4140,7 @@ msgstr "Trafic temps-réel" msgid "Realtime Wireless" msgstr "Qualité de réception actuelle" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4213,7 +4234,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4236,10 +4257,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4484,7 +4505,7 @@ msgstr "" "Envoyer des demandes d'échos LCP à intervalles donnés, en secondes ; utile " "uniqument associé à un seuil d'erreurs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Isoler les clients" @@ -4519,7 +4540,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurer la synchronisation de l'heure" @@ -4544,7 +4565,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4587,7 +4608,7 @@ msgstr "Taille" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4738,7 +4759,7 @@ msgstr "" "interfaces sans configuration dynamique où l'on fournit un bail aux seuls " "hôtes configurés." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4842,7 +4863,7 @@ msgstr "Journal système" msgid "System Properties" msgstr "Propriétés système" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Taille du tampon du journal système" @@ -5095,7 +5116,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Apparence" @@ -5128,7 +5149,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5227,20 +5248,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Cette section ne contient pas encore de valeur" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronisation de l'heure" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "La synchronisation de l'heure n'est pas encore configurée." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuseau horaire" @@ -5283,7 +5304,7 @@ msgstr "Trafic" msgid "Transfer" msgstr "Transfert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Débit d'émission" @@ -5591,11 +5612,11 @@ msgstr "" msgid "Used" msgstr "Utilisé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Clé utilisée" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5673,18 +5694,18 @@ msgstr "Vérifier" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Système ouvert WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Clé partagée WEP" @@ -5692,8 +5713,8 @@ msgstr "Clé partagée WEP" msgid "WEP passphrase" msgstr "Mot de passe WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Mode WMM" @@ -5701,9 +5722,9 @@ msgstr "Mode WMM" msgid "WPA passphrase" msgstr "Mot de passe WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5727,8 +5748,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Attention" @@ -5736,7 +5757,7 @@ msgstr "Attention" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5823,7 +5844,7 @@ msgstr "Le réseau Wi-Fi est activé" msgid "Write received DNS requests to syslog" msgstr "Écrire les requêtes DNS reçues dans syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5846,7 +5867,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5860,19 +5881,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5887,7 +5908,7 @@ msgstr "n'importe lequel" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5940,8 +5961,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "désactiver" @@ -6043,7 +6064,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "fichier de résolution local" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6076,7 +6097,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "Arrêté" @@ -6084,7 +6105,7 @@ msgstr "Arrêté" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "Actif" @@ -6128,8 +6149,8 @@ msgstr "" msgid "routed" msgstr "routé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6154,7 +6175,7 @@ msgstr "" msgid "tagged" msgstr "marqué" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/he/base.po b/modules/luci-base/po/he/base.po index 37c552e7d4..8ab68202de 100644 --- a/modules/luci-base/po/he/base.po +++ b/modules/luci-base/po/he/base.po @@ -55,16 +55,16 @@ msgstr "(×ין ממשק מצורף)" msgid "-- Additional Field --" msgstr "-- שדה × ×•×¡×£ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- × × ×œ×‘×—×•×¨ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- מות×× ×ישית --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "עומס במשך דקה:" @@ -96,7 +100,7 @@ msgstr "עומס במשך דקה:" msgid "15 Minute Load:" msgstr "עומס במשך רבע שעה:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "עומס במשך 5 דקות:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -302,7 +306,7 @@ msgid "Access Concentrator" msgstr "מרכז גישות" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "× ×§×•×“×ª גישה" @@ -396,6 +400,10 @@ msgstr "" msgid "Administration" msgstr "×ž× ×”×œ×”" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -411,7 +419,7 @@ msgstr "הגדרות מתקדמות" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 #, fuzzy msgid "Alert" msgstr "×זעקה" @@ -443,12 +451,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 #, fuzzy msgid "Allow all except listed" msgstr "×פשר הכל חוץ מהרשומי×" @@ -457,8 +465,8 @@ msgstr "×פשר הכל חוץ מהרשומי×" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "×פשר ×¨×©×•×ž×™× ×‘×œ×‘×“" @@ -579,7 +587,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -653,7 +661,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "×ימות" @@ -675,8 +683,8 @@ msgstr "דרוש ×ימות" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "×¨×¢× ×•×Ÿ ×וטומטי" @@ -970,13 +978,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -997,7 +1005,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1055,7 +1063,7 @@ msgstr "" msgid "Common Configuration" msgstr "הגדרות × ×¤×•×¦×•×ª" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1151,11 +1159,11 @@ msgstr "צור ממשק" msgid "Create a bridge over multiple interfaces" msgstr "צור גשר בין מספר ממשקי×" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "קריטי" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1188,15 +1196,15 @@ msgstr "" "מת××™× ×ת הגדרות ×”-<abbr title=\"Light Emitting Diode\">LED</abbr>-×™× ×‘×ž×›×©×™×¨ " "(×× ×פשרי)." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1280,7 +1288,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1292,14 +1300,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1352,7 +1360,7 @@ msgstr "" msgid "Delete this network" msgstr "מחק רשת זו" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1422,7 +1430,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1440,11 +1448,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1572,7 +1580,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1597,7 +1605,7 @@ msgstr "ערוך ממשק ×–×”" msgid "Edit this network" msgstr "ערוך רשת זו" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "מצב חרו×" @@ -1636,7 +1644,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1652,11 +1660,11 @@ msgstr "×פשר שרת TFTP" msgid "Enable VLAN functionality" msgstr "×פשר תפקוד VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1702,7 +1710,7 @@ msgstr "×פשר" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1719,7 +1727,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1750,7 +1758,7 @@ msgstr "מוחק..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "שגי××”" @@ -1791,23 +1799,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1815,15 +1823,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1933,7 +1941,7 @@ msgstr "" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1941,11 +1949,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1986,7 +1994,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2048,7 +2056,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2075,7 +2083,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2122,9 +2130,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2158,7 +2166,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "" @@ -2379,7 +2387,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "" @@ -2485,7 +2493,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2539,7 +2547,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2579,7 +2587,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "×©× ×ž×©×ª×ž×© ו/×ו סיסמה שגויי×! ×× × × ×¡×” ×©× ×™×ª." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2593,7 +2601,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2622,15 +2630,16 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2673,7 +2682,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2758,7 +2767,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2767,7 +2776,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2854,7 +2863,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2890,7 +2899,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2932,8 +2941,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "" @@ -2942,8 +2951,8 @@ msgstr "" msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -2993,7 +3002,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3065,7 +3074,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3102,9 +3111,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3165,7 +3174,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3189,7 +3198,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3218,7 +3227,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3292,7 +3301,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "×œ× ×”×•×’×“×¨×” סיסמה!" @@ -3341,7 +3350,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3363,7 +3372,7 @@ msgstr "×œ× ×ž×—×•×‘×¨" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3375,7 +3384,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3451,7 +3460,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3558,7 +3567,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3620,7 +3629,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3673,7 +3682,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3684,11 +3693,11 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3700,27 +3709,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "× ×ª×™×‘ למפתח הפרטי" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3798,6 +3807,14 @@ msgstr "×× × ×”×–×Ÿ ×ת ×©× ×”×ž×©×ª×ž×© והסיסמה שלך:" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3845,8 +3862,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3887,7 +3904,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3895,7 +3912,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3930,11 +3947,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3942,8 +3959,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3957,27 +3978,27 @@ msgstr "" msgid "RX Rate" msgstr "קצב קליטה" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4031,7 +4052,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4125,7 +4146,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4148,10 +4169,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4391,7 +4412,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4426,7 +4447,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "×¡× ×›×¨×•×Ÿ זמן" @@ -4451,7 +4472,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4494,7 +4515,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4540,7 +4561,7 @@ msgid "" "instructions." msgstr "" "סליחה, ×ין תמיכה בעדכון מערכת, ולכן קושחה חדשה חייבת להיצרב ×™×“× ×™×ª. ×× × ×¤× ×” " -"×ל ×”-wiki של OpenWrt/LEDE עבור הור×ות ספציפיות למכשיר שלך." +"×ל ×”-wiki של OpenWrt עבור הור×ות ספציפיות למכשיר שלך." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:61 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:360 @@ -4640,7 +4661,7 @@ msgstr "" "הן × ×—×•×¦×•×ª ×’× ×¢×‘×•×¨ הגדרות ממשק ש××™× ×Ÿ ×“×™× ×מיות, בהן מטופלות רק ישויות בעלות " "הקצ××” מת×ימה." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4744,7 +4765,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4958,7 +4979,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "עיצוב" @@ -4989,7 +5010,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5070,20 +5091,20 @@ msgstr "דף ×–×” מציג סקירה של חיבורי הרשת ×”×¤×¢×™×œ×™× msgid "This section contains no values yet" msgstr "×זור ×–×” עדיין ×œ× ×ž×›×™×œ ערכי×." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "×¡× ×›×¨×•×Ÿ זמן" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "×¡× ×›×¨×•×Ÿ זמן עדיין ×œ× ×”×•×’×“×¨." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "×זור זמן" @@ -5123,7 +5144,7 @@ msgstr "תעבורה" msgid "Transfer" msgstr "העברה" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "קצב שידור" @@ -5423,11 +5444,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5505,18 +5526,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5524,8 +5545,8 @@ msgstr "" msgid "WEP passphrase" msgstr "סיסמת WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "" @@ -5533,9 +5554,9 @@ msgstr "" msgid "WPA passphrase" msgstr "סיסמת WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5557,8 +5578,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "×זהרה" @@ -5566,7 +5587,7 @@ msgstr "×זהרה" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5653,7 +5674,7 @@ msgstr "רשת ×לחוטית מ×ופשרת" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5672,7 +5693,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "×תה חייב להפעיל ×ת JavaScript בדפדפן שלך; ×חרת, LuCI ×œ× ×™×¤×¢×œ כר×וי." @@ -5684,19 +5705,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5711,7 +5732,7 @@ msgstr "כלשהו" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5764,8 +5785,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "בטל" @@ -5867,7 +5888,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5900,7 +5921,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "כבוי" @@ -5908,7 +5929,7 @@ msgstr "כבוי" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "פועל" @@ -5952,8 +5973,8 @@ msgstr "" msgid "routed" msgstr "×ž× ×•×ª×‘" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5978,7 +5999,7 @@ msgstr "" msgid "tagged" msgstr "מתויג" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/hu/base.po b/modules/luci-base/po/hu/base.po index 044962498f..58d32db464 100644 --- a/modules/luci-base/po/hu/base.po +++ b/modules/luci-base/po/hu/base.po @@ -55,16 +55,16 @@ msgstr "(nincs csatalkoztatott interfész)" msgid "-- Additional Field --" msgstr "-- További mezÅ‘ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Kérem válasszon --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egyéni --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Terhelés (utolsó 1 perc):" @@ -96,7 +100,7 @@ msgstr "Terhelés (utolsó 1 perc):" msgid "15 Minute Load:" msgstr "Terhelés (utolsó 15 perc):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Terhelés (utolsó 5 perc):" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> szerverek a resolv fájl " "sorrendjében" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -307,7 +311,7 @@ msgid "Access Concentrator" msgstr "Elérési központ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Hozzáférési pont" @@ -400,6 +404,10 @@ msgstr "Helyi közvetÃtÅ‘ hÃd elérési cÃme" msgid "Administration" msgstr "Adminisztráció" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -415,7 +423,7 @@ msgstr "Haladó beállÃtások" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Riasztás" @@ -447,12 +455,12 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> jelszó hitelesÃtés engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Összes engedélyezése a felsoroltakon kÃvül" @@ -460,8 +468,8 @@ msgstr "Összes engedélyezése a felsoroltakon kÃvül" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Csak a felsoroltak engedélyezése" @@ -585,7 +593,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -657,7 +665,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "HitelesÃtés" @@ -679,8 +687,8 @@ msgstr "HitelesÃtés szükséges" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatikus frissÃtés" @@ -979,7 +987,7 @@ msgstr "" "zónából történÅ‘ eltávolÃtásához, vagy töltse ki az <em>új</em> mezÅ‘t új zóna " "megadásához és csatlakoztassa az interfészt ahhoz." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -988,7 +996,7 @@ msgstr "" "vezetéknélküli interfészhez, vagy töltse ki az <em>új</em> mezÅ‘t egy új " "hálózat definiálásához." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "TitkosÃtó" @@ -1011,7 +1019,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Ãœgyfél" @@ -1071,7 +1079,7 @@ msgstr "" msgid "Common Configuration" msgstr "Ãlatános beállÃtás" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1167,11 +1175,11 @@ msgstr "Új interfész" msgid "Create a bridge over multiple interfaces" msgstr "HÃd létrehozása több interfész között" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritikus" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron naplózási szint" @@ -1204,15 +1212,15 @@ msgstr "" "Az eszköz <abbr title=\"Light Emitting Diode\">LED</abbr>-jei működésének " "testreszabása." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1296,7 +1304,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1308,14 +1316,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Hibakeresés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Alapértelmezés %d" @@ -1368,7 +1376,7 @@ msgstr "" msgid "Delete this network" msgstr "Hálózat törlése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1440,7 +1448,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1458,11 +1466,11 @@ msgstr "" msgid "Disabled" msgstr "Letiltva" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1603,7 +1611,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP metódus" @@ -1628,7 +1636,7 @@ msgstr "Interfész szerkesztése" msgid "Edit this network" msgstr "Hálózat szerkesztése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Vészhelyzet" @@ -1667,7 +1675,7 @@ msgstr "IPv6 egyeztetés engedélyezése a PPP linken" msgid "Enable Jumbo Frame passthrough" msgstr "Óriás keretek átengedésének engedélyezése" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTP-kliens engedélyezése" @@ -1683,11 +1691,11 @@ msgstr "TFTP kiszolgáló engedélyezése" msgid "Enable VLAN functionality" msgstr "VLAN funkció engedélyezése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1733,7 +1741,7 @@ msgstr "Engedélyezve" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1750,7 +1758,7 @@ msgstr "Beágyazási mód" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1781,7 +1789,7 @@ msgstr "Törlés..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Hiba" @@ -1823,23 +1831,23 @@ msgstr "A bérelt cÃmek lejárati ideje, a minimális érték 2 perc." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "KülsÅ‘ rendszernapló kiszolgáló" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "KülsÅ‘ rendszernapló kiszolgáló port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1847,15 +1855,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1965,7 +1973,7 @@ msgstr "KényszerÃtés" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "CCMP (AES) kényszerÃtése" @@ -1975,11 +1983,11 @@ msgstr "" "DHCP kényszerÃtése ezen a hálózaton még akkor is ha van másik szerver " "észlelve." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "TKIP kényszerÃtése" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "TKIP és CCMP (AES) kényszerÃtése" @@ -2020,7 +2028,7 @@ msgid "Forwarding mode" msgstr "TovábbÃtás módja" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Töredezettségi küszöb" @@ -2082,7 +2090,7 @@ msgstr "Ãltalános beállÃtások" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2109,7 +2117,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ugrás a jelszó beállÃtáshoz..." @@ -2158,9 +2166,9 @@ msgstr "" "Itt állÃthatja be az eszköz alapvetÅ‘ tulajdonságait, mint például a gépnév " "vagy az idÅ‘zóna." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> elrejtése" @@ -2194,7 +2202,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Gépnév" @@ -2415,7 +2423,7 @@ msgstr "IPv6 IPv4 felett (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 IPv4 felett (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identitás" @@ -2530,7 +2538,7 @@ msgstr "Inaktivitási idÅ‘túllépés" msgid "Inbound:" msgstr "BejövÅ‘" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Információk" @@ -2584,7 +2592,7 @@ msgstr "Interfész áttekintés" msgid "Interface is reconnecting..." msgstr "Interfész újracsatlakoztatása..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2627,7 +2635,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Érvénytelen felhasználói név és/vagy jelszó! Kérem próbálja újra!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2644,7 +2652,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript szükséges!" @@ -2673,15 +2681,16 @@ msgstr "Kernel napló" msgid "Kernel Version" msgstr "Kernel verzió" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Kulcs #%d" @@ -2724,7 +2733,7 @@ msgstr "LLC" msgid "Label" msgstr "CÃmke" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Nyelv" @@ -2811,7 +2820,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> szerverek listája, ahová a " "kérések továbbÃtásra kerülnek" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2820,7 +2829,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2909,7 +2918,7 @@ msgid "Local Startup" msgstr "Helyi indÃtóscript" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Helyi idÅ‘" @@ -2953,7 +2962,7 @@ msgstr "Lekérdezések lokalizációja" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Napló kimeneti szintje" @@ -2995,8 +3004,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-cÃm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-cÃm szűrÅ‘" @@ -3005,8 +3014,8 @@ msgstr "MAC-cÃm szűrÅ‘" msgid "MAC-Filter" msgstr "MAC-szűrÅ‘" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-lista" @@ -3056,7 +3065,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3128,7 +3137,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Hiányzó protokoll kiterjesztés a %q progokoll számára" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3165,9 +3174,9 @@ msgstr "" msgid "Modem init timeout" msgstr "Modem inicializálás idÅ‘túllépés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "EllenÅ‘rzés" @@ -3230,7 +3239,7 @@ msgstr "Mozgatás lefelé" msgid "Move up" msgstr "Mozgatás felfelé" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS azonosÃtó" @@ -3254,7 +3263,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Kijelölt NTP kiszolgálók" @@ -3283,7 +3292,7 @@ msgstr "Hálózati maszk" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3357,7 +3366,7 @@ msgstr "Nincs megadva hálózatnév" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nincs jelszó!" @@ -3406,7 +3415,7 @@ msgstr "" msgid "None" msgstr "Nincs" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normál" @@ -3428,7 +3437,7 @@ msgstr "Nincs kapcsolódva" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Megjegyzés" @@ -3440,7 +3449,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3521,7 +3530,7 @@ msgstr "BeállÃtás módosÃtva" msgid "Option removed" msgstr "BeállÃtás eltávolÃtva" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3628,7 +3637,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3692,7 +3701,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3745,7 +3754,7 @@ msgid "Part of zone %q" msgstr "A %q zóna része" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3756,11 +3765,11 @@ msgstr "Jelszó" msgid "Password authentication" msgstr "Jelszó hitelesÃtés" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "A privát kulcsh jelszava" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3772,27 +3781,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "CA tanúsÃtvány elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Kliens tanúsÃtvány elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "A privát kulcs elérési útja" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3870,6 +3879,14 @@ msgstr "Adja meg a felhasználónevét és a jelszavát." msgid "Policy" msgstr "Szabály" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3919,8 +3936,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Ãœgyfél-ügyfél közötti kommunikáció megakadályozása" @@ -3961,7 +3978,7 @@ msgstr "Az új interfész protokollja" msgid "Protocol support is not installed" msgstr "Protokoll támogatás nincs telepÃtve" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTP kiszolgáló" @@ -3969,7 +3986,7 @@ msgstr "NTP kiszolgáló" msgid "Provide new network" msgstr "Új hálózat nyújtása" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ãl Ad-hoc (ahdemo)" @@ -4004,11 +4021,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4016,8 +4033,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS küszöbérték" @@ -4031,27 +4052,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX sebesség" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radius-Naplózási-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radius-Naplózás-Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radius-Naplózás-Kiszolgáló" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radius-HitelesÃtés-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radius-HitelesÃtés-Kulcs" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radius-HitelesÃtés-Kiszolgáló" @@ -4110,7 +4131,7 @@ msgstr "Valósidejű forgalom" msgid "Realtime Wireless" msgstr "Valósidejű vezetéknélküli adatok" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4204,7 +4225,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4228,10 +4249,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4475,7 +4496,7 @@ msgstr "" "LCP echo kérések küldése a másodpercben megadott idÅ‘közönként, csak a " "hibaküszöbbel együtt van hatása." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Kliensek szétválasztása" @@ -4510,7 +4531,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "IdÅ‘ szinkronizálás beállÃtása" @@ -4535,7 +4556,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4578,7 +4599,7 @@ msgstr "Méret" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4729,7 +4750,7 @@ msgstr "" "szükségesek, ahol a csak a megfelelÅ‘ bérlettel rendelkezÅ‘ hosztok kerülnek " "kiszolgálásra." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4833,7 +4854,7 @@ msgstr "Rendszernapló" msgid "System Properties" msgstr "Rendszer tulajdonságok" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Rendszer napló puffer méret" @@ -5084,7 +5105,7 @@ msgstr "" "A feltöltött image fájl formátuma nem támogatott. Ãœgyeljen arra, hogy a " "platformjának megfelelÅ‘ általános image formátumot válassza ki." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Megjelenés" @@ -5117,7 +5138,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5215,20 +5236,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Ez a szakasz még nem tartalmaz értékeket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "IdÅ‘ szinkronizálás" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "IdÅ‘ szinkronizálás még nincs beállÃtva." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "IdÅ‘zóna" @@ -5271,7 +5292,7 @@ msgstr "Forgalom" msgid "Transfer" msgstr "Ãtvitel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Ãtviteli sebesség" @@ -5578,11 +5599,11 @@ msgstr "" msgid "Used" msgstr "Használt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Használt kulcsindex" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5660,18 +5681,18 @@ msgstr "EllenÅ‘rzés" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP nyÃlt rendszer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP megosztott kulcs" @@ -5679,8 +5700,8 @@ msgstr "WEP megosztott kulcs" msgid "WEP passphrase" msgstr "WEP jelmondat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM mód" @@ -5688,9 +5709,9 @@ msgstr "WMM mód" msgid "WPA passphrase" msgstr "WPA jelmondat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5714,8 +5735,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Figyelmeztetés" @@ -5723,7 +5744,7 @@ msgstr "Figyelmeztetés" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5810,7 +5831,7 @@ msgstr "Vezetéknélküli hálózat engedélyezve" msgid "Write received DNS requests to syslog" msgstr "A kapott DNS kéréseket Ãrja a rendszernaplóba" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5833,7 +5854,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5847,19 +5868,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5874,7 +5895,7 @@ msgstr "bármelyik" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5927,8 +5948,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "letiltás" @@ -6032,7 +6053,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "helyi <abbr title=\"Domain Name System\">DNS</abbr> fájl" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6065,7 +6086,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "ki" @@ -6073,7 +6094,7 @@ msgstr "ki" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "be" @@ -6117,8 +6138,8 @@ msgstr "" msgid "routed" msgstr "irányÃtott" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6143,7 +6164,7 @@ msgstr "" msgid "tagged" msgstr "cimkézett" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/it/base.po b/modules/luci-base/po/it/base.po index ce7e44eade..76e1e12779 100644 --- a/modules/luci-base/po/it/base.po +++ b/modules/luci-base/po/it/base.po @@ -57,16 +57,16 @@ msgstr "(nessuna interfaccia collegata)" msgid "-- Additional Field --" msgstr "-- Campo aggiuntivo --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Per favore scegli --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizzato --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carico in 1 minuto:" @@ -98,7 +102,7 @@ msgstr "Carico in 1 minuto:" msgid "15 Minute Load:" msgstr "Carico in 15 minut:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Carico in 5 minuti:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Servizio basilare di impostazione Identificatore\">BSSID</abbr>" @@ -159,7 +163,7 @@ msgstr "" "<abbr title=\"Sistema Nome Dominio\">DNS</abbr> I server che verranno " "interrogati nell'ordine del resolv file" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Impostazione Identificatore Servizio Esteso\">ESSID</abbr>" @@ -314,7 +318,7 @@ msgid "Access Concentrator" msgstr "Accesso Concentratore" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Punto di Accesso" @@ -409,6 +413,10 @@ msgstr "Indirizzo per accedere al ponte locale di trasmissione" msgid "Administration" msgstr "Amministrazione" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -424,7 +432,7 @@ msgstr "Opzioni Avanzate" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Allerta" @@ -457,12 +465,12 @@ msgstr "" "Permetti autenticazione <abbr title=\"Secure Shell\">SSH</abbr> tramite " "password" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Consenti tutti tranne quelli nell'elenco" @@ -470,8 +478,8 @@ msgstr "Consenti tutti tranne quelli nell'elenco" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Consenti solo quelli nell'elenco" @@ -594,7 +602,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -666,7 +674,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autenticazione PEAP" @@ -688,8 +696,8 @@ msgstr "Autorizzazione richiesta" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Aggiornamento Automatico" @@ -986,7 +994,7 @@ msgstr "" "associata o compilare il campo <em>crea</em> per definire una nuova zona e " "collegare l'interfaccia ad esso." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -994,7 +1002,7 @@ msgstr "" "Scegliere la/le rete/reti a cui vuoi collegare questa interfaccia wireless o " "riempire il campo <em>crea<em> per definire una nuova rete." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Cifratura" @@ -1017,7 +1025,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Cliente" @@ -1077,7 +1085,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configurazioni Comuni" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1173,11 +1181,11 @@ msgstr "Crea Interfaccia" msgid "Create a bridge over multiple interfaces" msgstr "Crea un ponte tra interfacce multiple" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Livello di log del Cron" @@ -1210,15 +1218,15 @@ msgstr "" "Personalizza la configurazione dei <abbr title=\"Light Emitting Diode\">LED</" "abbr> del sistema se possibile." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1302,7 +1310,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1314,14 +1322,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Predefinito %d" @@ -1375,7 +1383,7 @@ msgstr "" msgid "Delete this network" msgstr "Rimuovi questa rete" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1447,7 +1455,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Disabilita Crittografia" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1465,11 +1473,11 @@ msgstr "" msgid "Disabled" msgstr "Disabilitato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Disabilitato (default)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1607,7 +1615,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Metodo EAP" @@ -1632,7 +1640,7 @@ msgstr "Modifica questa interfaccia" msgid "Edit this network" msgstr "Modifica questa rete" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergenza" @@ -1671,7 +1679,7 @@ msgstr "Attiva la negoziazione IPv6 sul collegamento PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Abilita Jumbo Frame passthrough" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Attiva il cliente NTP" @@ -1687,11 +1695,11 @@ msgstr "Abilita il server TFTP" msgid "Enable VLAN functionality" msgstr "Abilita la funzionalità VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Abilita pulsante WPS, richiede WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1737,7 +1745,7 @@ msgstr "Abilitato" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1754,7 +1762,7 @@ msgstr "Modalità di incapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1785,7 +1793,7 @@ msgstr "Cancellazione..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Errore" @@ -1828,23 +1836,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Server Log di Sistema esterno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta Server Log di Sistema esterno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1852,15 +1860,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1970,7 +1978,7 @@ msgstr "Forza" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forza CCMP (AES)" @@ -1978,11 +1986,11 @@ msgstr "Forza CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forza DHCP su questa rete, anche se un altro server viene rilevato." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forza TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forza TKIP e CCMP (AES)" @@ -2023,7 +2031,7 @@ msgid "Forwarding mode" msgstr "Modalità di Inoltro" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Soglia di frammentazione" @@ -2085,7 +2093,7 @@ msgstr "Impostazioni Generali" msgid "Generate Config" msgstr "Genera Configurazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2114,7 +2122,7 @@ msgstr "Opzioni rete globale" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Vai alla configurazione della password..." @@ -2163,9 +2171,9 @@ msgstr "" "Qui puoi configurare gli aspetti base del tuo dispositivo come l'" "hostname o il fuso orario." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Nascondi <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2200,7 +2208,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Hostname" @@ -2421,7 +2429,7 @@ msgstr "IPv6-su-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-su-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identità PEAP" @@ -2538,7 +2546,7 @@ msgstr "Tempo di Inattività " msgid "Inbound:" msgstr "In entrata:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informazioni" @@ -2592,7 +2600,7 @@ msgstr "Riassunto Interfaccia" msgid "Interface is reconnecting..." msgstr "L'interfaccia si sta ricollegando..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Nome Interfaccia" @@ -2632,7 +2640,7 @@ msgstr "ID VLAN non valido! Solo gli ID unici sono consentiti" msgid "Invalid username and/or password! Please try again." msgstr "Username o password non validi! Per favore riprova." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Isola Clienti" @@ -2649,7 +2657,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Richiesto JavaScript!" @@ -2678,15 +2686,16 @@ msgstr "Registro del Kernel" msgid "Kernel Version" msgstr "Versione del Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Chiave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Chiave #%d" @@ -2729,7 +2738,7 @@ msgstr "LLC" msgid "Label" msgstr "Etichetta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Lingua" @@ -2816,7 +2825,7 @@ msgstr "" "Elenco di Server <abbr title=\"Sistema Nome Dimio\">DNS</abbr>a cui " "inoltrare le richieste in" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2825,7 +2834,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2912,7 +2921,7 @@ msgid "Local Startup" msgstr "Avvio Locale" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Ora locale" @@ -2954,7 +2963,7 @@ msgstr "Localizza richieste" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Livello di dettaglio registro" @@ -2996,8 +3005,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtro indirizzo MAC" @@ -3006,8 +3015,8 @@ msgstr "Filtro indirizzo MAC" msgid "MAC-Filter" msgstr "Filtro MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Lista MAC" @@ -3057,7 +3066,7 @@ msgstr "Manuale" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3129,7 +3138,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3166,9 +3175,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3231,7 +3240,7 @@ msgstr "Muovi giù" msgid "Move up" msgstr "Muovi su" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "ID della NAS" @@ -3255,7 +3264,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidati server NTP" @@ -3284,7 +3293,7 @@ msgstr "Maschera di rete" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3358,7 +3367,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nessuna password immessa!" @@ -3407,7 +3416,7 @@ msgstr "" msgid "None" msgstr "Nessuno" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normale" @@ -3429,7 +3438,7 @@ msgstr "Non connesso" msgid "Note: interface name length" msgstr "Nota: lunghezza nome interfaccia" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notifica" @@ -3441,7 +3450,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3522,7 +3531,7 @@ msgstr "Opzione cambiata" msgid "Option removed" msgstr "Opzione cancellata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3629,7 +3638,7 @@ msgstr "Sovrascrivi TOS" msgid "Override TTL" msgstr "Sovrascrivi TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "Sovrascrivi nome interfaccia di default" @@ -3693,7 +3702,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3746,7 +3755,7 @@ msgid "Part of zone %q" msgstr "Parte della zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3757,11 +3766,11 @@ msgstr "Password" msgid "Password authentication" msgstr "Password di authenticazione" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Password della chiave privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3773,27 +3782,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Percorso al certificato CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Percorso alla chiave privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3871,6 +3880,14 @@ msgstr "Per favore inserisci il tuo username e la password." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3918,8 +3935,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Impedisci la comunicazione fra Client" @@ -3960,7 +3977,7 @@ msgstr "Protocollo della nuova interfaccia" msgid "Protocol support is not installed" msgstr "Supporto protocollo non installato" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fornisci server NTP" @@ -3968,7 +3985,7 @@ msgstr "Fornisci server NTP" msgid "Provide new network" msgstr "Fornisci nuova rete" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4003,11 +4020,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4015,8 +4032,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Soglia RTS/CTS" @@ -4030,27 +4051,27 @@ msgstr "" msgid "RX Rate" msgstr "Velocità RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4109,7 +4130,7 @@ msgstr "Traffico in Tempo Reale" msgid "Realtime Wireless" msgstr "Wireless in Tempo Reale" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4203,7 +4224,7 @@ msgstr "Richiede indirizzo-IPv6" msgid "Request IPv6-prefix of length" msgstr "Richiede prefisso-IPv6 di lunghezza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Richiesto" @@ -4226,10 +4247,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4471,7 +4492,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Isola utenti" @@ -4506,7 +4527,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4530,7 +4551,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4573,7 +4594,7 @@ msgstr "Dimensione" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4726,7 +4747,7 @@ msgstr "" "di configurazione non dinamici, dove solo gli host col contratto " "corrispondente vengono serviti." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4830,7 +4851,7 @@ msgstr "Registro di Sistema" msgid "System Properties" msgstr "Proprietà di Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Dimensione Buffer Log di Sistema" @@ -5065,7 +5086,7 @@ msgstr "" "The uploaded image file does not contain a supported format. Make sure that " "you choose the generic image format for your platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5096,7 +5117,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5183,20 +5204,20 @@ msgstr "Questa pagina ti da una riassunto delle connessioni al momento attive." msgid "This section contains no values yet" msgstr "Questa sezione non contiene ancora valori" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronizzazione Orario" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Sincronizzazione Orario non ancora configurata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso orario" @@ -5238,7 +5259,7 @@ msgstr "Traffico" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Velocità di transmissione" @@ -5547,11 +5568,11 @@ msgstr "" msgid "Used" msgstr "Usato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Slot Chiave Usata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5629,18 +5650,18 @@ msgstr "Verifica" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Sistema Aperto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Chiave Condivisa WEP" @@ -5648,8 +5669,8 @@ msgstr "Chiave Condivisa WEP" msgid "WEP passphrase" msgstr "frase di accesso WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Modalità WMM" @@ -5657,9 +5678,9 @@ msgstr "Modalità WMM" msgid "WPA passphrase" msgstr "frase di accesso WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5683,8 +5704,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Avviso" @@ -5692,7 +5713,7 @@ msgstr "Avviso" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5779,7 +5800,7 @@ msgstr "La rete wireless è attivata" msgid "Write received DNS requests to syslog" msgstr "Scrittura delle richiesta DNS ricevute nel syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Scrivi registro di sistema su file" @@ -5803,7 +5824,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5817,19 +5838,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5844,7 +5865,7 @@ msgstr "qualsiasi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5897,8 +5918,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "disabilita" @@ -6002,7 +6023,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "File <abbr title=\"Sistema Nome Dominio\">DNS</abbr> locale" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6035,7 +6056,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "spento" @@ -6043,7 +6064,7 @@ msgstr "spento" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "acceso" @@ -6087,8 +6108,8 @@ msgstr "" msgid "routed" msgstr "instradato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6113,7 +6134,7 @@ msgstr "" msgid "tagged" msgstr "etichettato" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/ja/base.po b/modules/luci-base/po/ja/base.po index 8fff425530..c38a7371a3 100644 --- a/modules/luci-base/po/ja/base.po +++ b/modules/luci-base/po/ja/base.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2009-06-10 03:40+0200\n" -"PO-Revision-Date: 2018-12-26 19:48+0900\n" +"PO-Revision-Date: 2019-02-04 22:33+0900\n" "Last-Translator: INAGAKI Hiroshi <musashino.open@gmail.com>\n" "Language-Team: \n" "Language: ja\n" @@ -11,7 +11,7 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Poedit 2.2\n" +"X-Generator: Poedit 2.2.1\n" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:133 msgid "%.1f dB" @@ -57,16 +57,16 @@ msgstr "(インターフェースãŒæŽ¥ç¶šã•ã‚Œã¦ã„ã¾ã›ã‚“)" msgid "-- Additional Field --" msgstr "-- è¿½åŠ é …ç›® --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- é¸æŠžã—ã¦ãã ã•ã„ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 手動è¨å®š --" @@ -90,6 +90,10 @@ msgstr "-- UUID を指定 --" msgid "-- please select --" msgstr "-- é¸æŠžã—ã¦ãã ã•ã„ --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "0: RSSI ã—ãã„値を使用ã—ãªã„, 1: ドライãƒã®ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã‚’使用ã™ã‚‹" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "éŽåŽ»1分ã®è² è·:" @@ -98,7 +102,7 @@ msgstr "éŽåŽ»1分ã®è² è·:" msgid "15 Minute Load:" msgstr "éŽåŽ»15分ã®è² è·:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "éŽåŽ»5分ã®è² è·:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r 高速ãƒãƒ¼ãƒŸãƒ³ã‚°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w アソシエーションSAクエリã®æœ€å¤§ã‚¿ã‚¤ãƒ アウト時間ã§ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w アソシエーションSAクエリã®å†è©¦è¡Œã‚¿ã‚¤ãƒ アウト時間ã§ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "802.11w 管ç†ãƒ•ãƒ¬ãƒ¼ãƒ ä¿è·" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "802.11w 最大タイムアウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "802.11w å†è©¦è¡Œã‚¿ã‚¤ãƒ アウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "リゾルãƒãƒ•ã‚¡ã‚¤ãƒ«ã®é †ç•ªã«ã€<abbr title=\"Domain Name System\">DNS</abbr>サー" "ãƒãƒ¼ã«å•ã„åˆã‚ã›ã‚’è¡Œã„ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -309,7 +313,7 @@ msgid "Access Concentrator" msgstr "Access Concentrator" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "アクセスãƒã‚¤ãƒ³ãƒˆ" @@ -403,6 +407,10 @@ msgstr "ãƒãƒ¼ã‚«ãƒ« リレーブリッジã«ã‚¢ã‚¯ã‚»ã‚¹ã™ã‚‹ãŸã‚ã®IPアド msgid "Administration" msgstr "管ç†ç”»é¢" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "詳細è¨å®š" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -418,7 +426,7 @@ msgstr "詳細è¨å®š" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "è¦å‘Š" @@ -449,12 +457,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> パスワードèªè¨¼ã‚’許å¯ã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "AP モード動作時ã«ã€ä½Ž ACK(確èªå¿œç”)状態㮠STA ã®åˆ‡æ–を許å¯ã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "リスト内ã®ç«¯æœ«ã‹ã‚‰ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’ç¦æ¢" @@ -462,8 +470,8 @@ msgstr "リスト内ã®ç«¯æœ«ã‹ã‚‰ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’ç¦æ¢" msgid "Allow legacy 802.11b rates" msgstr "レガシー 802.11b レートを許å¯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "リスト内ã®ç«¯æœ«ã‹ã‚‰ã®ã‚¢ã‚¯ã‚»ã‚¹ã‚’許å¯" @@ -588,7 +596,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -660,7 +668,7 @@ msgstr "アソシエーション数" msgid "Auth Group" msgstr "èªè¨¼ã‚°ãƒ«ãƒ¼ãƒ—" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "èªè¨¼" @@ -682,8 +690,8 @@ msgstr "ãƒã‚°ã‚¤ãƒ³èªè¨¼" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自動更新" @@ -985,7 +993,7 @@ msgstr "" "フィールドã«ã‚¾ãƒ¼ãƒ³åを入力ã™ã‚‹ã¨ã€æ–°ã—ãゾーンを作æˆã—ã€ã“ã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹" "ã«è¨å®šã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -993,7 +1001,7 @@ msgstr "" "無線インターフェースをアタッãƒã™ã‚‹ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’é¸æŠžã—ã¦ãã ã•ã„。ã¾ãŸã¯ã€" "<em>作æˆ</em>欄をé¸æŠžã™ã‚‹ã¨æ–°ã—ã„ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’作æˆã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "æš—å·åŒ–æ–¹å¼" @@ -1018,7 +1026,7 @@ msgstr "" "リックã—ã¦ãã ã•ã„。(注: ã“ã®æ©Ÿèƒ½ã¯ãƒ—ãƒãƒ•ã‚§ãƒƒã‚·ãƒ§ãƒŠãƒ«å‘ã‘ã§ã™ï¼ï¼‰" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "クライアント" @@ -1078,7 +1086,7 @@ msgstr "コメント" msgid "Common Configuration" msgstr "一般è¨å®š" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1181,11 +1189,11 @@ msgstr "インターフェースã®ä½œæˆ" msgid "Create a bridge over multiple interfaces" msgstr "複数ã®ã‚¤ãƒ³ã‚¿ãƒ•ã‚§ãƒ¼ã‚¹ã‚’指定ã—ã¦ãƒ–リッジを作æˆã—ã¾ã™" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "é‡å¤§" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cronã®ãƒã‚°å‡ºåŠ›ãƒ¬ãƒ™ãƒ«" @@ -1220,15 +1228,15 @@ msgstr "" "<abbr title=\"Light Emitting Diode\">LED</abbr> デãƒã‚¤ã‚¹ã®æŒ™å‹•ã‚’カスタマイズ" "ã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1312,7 +1320,7 @@ msgstr "DSL ステータス" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "DTIM インターãƒãƒ«" @@ -1324,14 +1332,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "デãƒãƒƒã‚°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "標準è¨å®š %d" @@ -1384,7 +1392,7 @@ msgstr "公開éµã‚’削除" msgid "Delete this network" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’削除ã—ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "Delivery Traffic Indication Message インターãƒãƒ«" @@ -1456,7 +1464,7 @@ msgstr "" msgid "Disable Encryption" msgstr "æš—å·åŒ–を無効ã«ã™ã‚‹" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "éžã‚¢ã‚¯ãƒ†ã‚£ãƒ–状態ãƒãƒ¼ãƒªãƒ³ã‚°ã‚’無効化" @@ -1474,11 +1482,11 @@ msgstr "ã“ã®ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’無効ã«ã—ã¾ã™" msgid "Disabled" msgstr "無効" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "無効(デフォルト)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "低 Acknowledgement 時ã®ã‚¢ã‚½ã‚·ã‚¨ãƒ¼ã‚·ãƒ§ãƒ³è§£é™¤" @@ -1614,9 +1622,9 @@ msgstr "" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:53 msgid "EA-bits length" -msgstr "" +msgstr "EA ビット長" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAPメソッド" @@ -1643,7 +1651,7 @@ msgstr "インターフェースを編集ã—ã¾ã™" msgid "Edit this network" msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’編集" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "緊急" @@ -1684,7 +1692,7 @@ msgstr "PPPリンクã®IPv6 ãƒã‚´ã‚·ã‚¨ãƒ¼ã‚·ãƒ§ãƒ³ã‚’有効ã«ã™ã‚‹" msgid "Enable Jumbo Frame passthrough" msgstr "ジャンボフレームパススルーを有効ã«ã™ã‚‹" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTPクライアント機能を有効ã«ã™ã‚‹" @@ -1700,11 +1708,11 @@ msgstr "TFTPサーãƒãƒ¼ã‚’有効ã«ã™ã‚‹" msgid "Enable VLAN functionality" msgstr "VLAN機能を有効ã«ã™ã‚‹" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WPS プッシュボタンを有効化ã™ã‚‹ã«ã¯ã€WPA(2)-PSKãŒå¿…è¦ã§ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Key Reinstallation (KRACK) 対ç–ã®æœ‰åŠ¹åŒ–" @@ -1750,7 +1758,7 @@ msgstr "有効" msgid "Enables IGMP snooping on this bridge" msgstr "ブリッジ㮠IGMP スヌーピングを有効ã«ã—ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1769,7 +1777,7 @@ msgstr "カプセル化モード" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1800,7 +1808,7 @@ msgstr "消去ä¸..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "エラー" @@ -1843,23 +1851,23 @@ msgstr "" msgid "External" msgstr "外部" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部システムãƒã‚° サーãƒãƒ¼" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部システムãƒã‚°ãƒ»ã‚µãƒ¼ãƒãƒ¼ ãƒãƒ¼ãƒˆ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "外部システムãƒã‚°ãƒ»ã‚µãƒ¼ãƒãƒ¼ プãƒãƒˆã‚³ãƒ«" @@ -1867,15 +1875,15 @@ msgstr "外部システムãƒã‚°ãƒ»ã‚µãƒ¼ãƒãƒ¼ プãƒãƒˆã‚³ãƒ«" msgid "Extra SSH command options" msgstr "æ‹¡å¼µ SSHコマンドオプション" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1987,7 +1995,7 @@ msgstr "強制" msgid "Force 40MHz mode" msgstr "強制 40MHz モード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "CCMP (AES) を使用" @@ -1996,11 +2004,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "別ã®DHCPサーãƒãƒ¼ãŒæ¤œå‡ºã•ã‚ŒãŸå ´åˆã§ã‚‚ã€DHCPサーãƒãƒ¼æ©Ÿèƒ½ã‚’強制的ã«èµ·å‹•ã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "TKIP を使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "TKIP åŠã³CCMP (AES) を使用" @@ -2041,7 +2049,7 @@ msgid "Forwarding mode" msgstr "転é€ãƒ¢ãƒ¼ãƒ‰" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "フラグメンテーションã—ãã„値" @@ -2105,7 +2113,7 @@ msgstr "一般è¨å®š" msgid "Generate Config" msgstr "コンフィグ生æˆ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2132,7 +2140,7 @@ msgstr "ã‚°ãƒãƒ¼ãƒãƒ« ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚ªãƒ—ション" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "パスワードè¨å®šã¸ç§»å‹•..." @@ -2180,9 +2188,9 @@ msgid "" msgstr "" "ã“ã®ãƒšãƒ¼ã‚¸ã§ã¯ãƒ›ã‚¹ãƒˆåやタイムゾーンãªã©ã®åŸºæœ¬çš„ãªè¨å®šã‚’è¡Œã†ã“ã¨ãŒå‡ºæ¥ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>ã®éš 匿" @@ -2217,7 +2225,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "ホストå" @@ -2438,7 +2446,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "è˜åˆ¥å" @@ -2484,7 +2492,7 @@ msgstr "" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pptp.lua:24 #: protocols/luci-proto-pppossh/luasrc/model/cbi/admin_network/proto_pppossh.lua:44 msgid "If unchecked, no default route is configured" -msgstr "ãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ãªã„å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ ルートをè¨å®šã—ã¾ã›ã‚“" +msgstr "ãƒã‚§ãƒƒã‚¯ã•ã‚Œã¦ã„ãªã„å ´åˆã€ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆ ルートã¯æ§‹æˆã•ã‚Œã¾ã›ã‚“" #: modules/luci-base/luasrc/model/cbi/admin_network/proto_dhcp.lua:34 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:86 @@ -2554,7 +2562,7 @@ msgstr "未使用時タイムアウト" msgid "Inbound:" msgstr "å—ä¿¡:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "æƒ…å ±" @@ -2610,7 +2618,7 @@ msgstr "インターフェース一覧" msgid "Interface is reconnecting..." msgstr "インターフェースå†æŽ¥ç¶šä¸..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "インターフェースå" @@ -2651,7 +2659,7 @@ msgid "Invalid username and/or password! Please try again." msgstr "" "ユーザーåã‹ãƒ‘スワードã€ã‚‚ã—ãã¯ä¸¡æ–¹ãŒä¸æ£ã§ã™ï¼ã‚‚ã†ä¸€åº¦å…¥åŠ›ã—ã¦ãã ã•ã„。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "クライアント間ã®åˆ†é›¢" @@ -2667,7 +2675,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScriptを有効ã«ã—ã¦ãã ã•ã„!" @@ -2696,15 +2704,16 @@ msgstr "カーãƒãƒ« ãƒã‚°" msgid "Kernel Version" msgstr "カーãƒãƒ« ãƒãƒ¼ã‚¸ãƒ§ãƒ³" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "æš—å·ã‚ー" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "ã‚ー #%d" @@ -2747,7 +2756,7 @@ msgstr "LLC" msgid "Label" msgstr "ラベル" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "言語" @@ -2836,7 +2845,7 @@ msgstr "" "å•ã„åˆã‚ã›ã‚’転é€ã™ã‚‹<abbr title=\"Domain Name System\">DNS</abbr> サーãƒãƒ¼ã®" "リストをè¨å®šã—ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2845,7 +2854,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2934,7 +2943,7 @@ msgid "Local Startup" msgstr "ãƒãƒ¼ã‚«ãƒ« スタートアップ" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "時刻" @@ -2976,7 +2985,7 @@ msgstr "ãƒãƒ¼ã‚«ãƒ©ã‚¤ã‚ºã‚¯ã‚¨ãƒª" msgid "Locked to channel %s used by: %s" msgstr "ãƒãƒ£ãƒãƒ« %s ã«ãƒãƒƒã‚¯ã•ã‚Œã¦ã„ã¾ã™ã€‚次ã§ä½¿ç”¨ã•ã‚Œã¦ã„ã¾ã™: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "ãƒã‚°å‡ºåŠ›ãƒ¬ãƒ™ãƒ«" @@ -3019,8 +3028,8 @@ msgstr "MAC" msgid "MAC-Address" msgstr "MAC-アドレス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-アドレス フィルタ" @@ -3029,8 +3038,8 @@ msgstr "MAC-アドレス フィルタ" msgid "MAC-Filter" msgstr "MAC-フィルタ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-リスト" @@ -3081,7 +3090,7 @@ msgstr "手動" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "許容ã•ã‚Œã‚‹æœ€å¤§ Listen é–“éš”" @@ -3107,8 +3116,8 @@ msgid "" "Maximum length of the name is 15 characters including the automatic protocol/" "bridge prefix (br-, 6in4-, pppoe- etc.)" msgstr "" -"åå‰ã®é•·ã•ã¯ã€è‡ªå‹•çš„ã«å«ã¾ã‚Œã‚‹ãƒ—ãƒãƒˆã‚³ãƒ«/ブリッジ プレフィックス (br-, " -"6in4-, pppoe- ãªã©ï¼‰ã¨åˆã‚ã›ã¦æœ€å¤§15æ–‡å—ã§ã™ã€‚" +"åå‰ã®é•·ã•ã¯ã€è‡ªå‹•çš„ã«å«ã¾ã‚Œã‚‹ãƒ—ãƒãƒˆã‚³ãƒ«/ブリッジ プレフィクス (br-, 6in4-, " +"pppoe- ãªã©ï¼‰ã¨åˆã‚ã›ã¦æœ€å¤§15æ–‡å—ã§ã™ã€‚" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:482 msgid "Maximum number of leased addresses." @@ -3133,7 +3142,7 @@ msgstr "メモリ使用率 (%)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:371 msgid "Mesh Id" -msgstr "" +msgstr "メッシュ ID" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:34 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/routes.lua:76 @@ -3155,7 +3164,7 @@ msgstr "ミラー元ãƒãƒ¼ãƒˆ" msgid "Missing protocol extension for proto %q" msgstr "プãƒãƒˆã‚³ãƒ« %qã®ãƒ—ãƒãƒˆã‚³ãƒ«æ‹¡å¼µãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "モビリティ ドメイン" @@ -3192,9 +3201,9 @@ msgstr "" msgid "Modem init timeout" msgstr "モデムåˆæœŸåŒ–タイムアウト" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "モニター" @@ -3257,7 +3266,7 @@ msgstr "下ã¸ç§»å‹•" msgid "Move up" msgstr "上ã¸ç§»å‹•" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3281,7 +3290,7 @@ msgstr "NDP-プãƒã‚ã‚·" msgid "NT Domain" msgstr "NT ドメイン" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTPサーãƒãƒ¼å€™è£œ" @@ -3310,7 +3319,7 @@ msgstr "ãƒãƒƒãƒˆãƒžã‚¹ã‚¯" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3384,7 +3393,7 @@ msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯åãŒè¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "パスワードãŒè¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“!" @@ -3433,7 +3442,7 @@ msgstr "éžãƒ¯ã‚¤ãƒ«ãƒ‰ã‚«ãƒ¼ãƒ‰" msgid "None" msgstr "ãªã—" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "標準" @@ -3455,7 +3464,7 @@ msgstr "未接続" msgid "Note: interface name length" msgstr "注æ„: インターフェースåã®é•·ã•" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "注æ„" @@ -3469,7 +3478,7 @@ msgstr "" "ã‚ャッシュã•ã‚Œã‚‹ DNS エントリーã®æ•°ã§ã™ã€‚(最大 10000 件。 0ã®å ´åˆã¯ã‚ャッ" "シュã—ã¾ã›ã‚“)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "圧縮ã«ä½¿ç”¨ã•ã‚Œã‚‹ã€ä¸¦åˆ—スレッド数ã§ã™ã€‚" @@ -3551,7 +3560,7 @@ msgstr "変更ã•ã‚Œã‚‹ã‚ªãƒ—ション" msgid "Option removed" msgstr "削除ã•ã‚Œã‚‹ã‚ªãƒ—ション" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "オプション" @@ -3662,7 +3671,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "デフォルトã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹åを上書ãã—ã¾ã™ã€‚" @@ -3726,7 +3735,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN コードãŒæ‹’å¦ã•ã‚Œã¾ã—ãŸ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3756,11 +3765,11 @@ msgstr "PPtP" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 msgid "PSID offset" -msgstr "" +msgstr "PSID オフセット" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 msgid "PSID-bits length" -msgstr "" +msgstr "PSID ビット長" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 msgid "PTM/EFM (Packet Transfer Mode)" @@ -3779,7 +3788,7 @@ msgid "Part of zone %q" msgstr "ゾーン %q ã®ä¸€éƒ¨" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3790,11 +3799,11 @@ msgstr "パスワード" msgid "Password authentication" msgstr "パスワードèªè¨¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "秘密éµã®ãƒ‘スワード" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "秘密éµã®ãƒ‘スワード" @@ -3806,27 +3815,27 @@ msgstr "パスワード2" msgid "Paste or drag SSH key file…" msgstr "貼付ã‘ã¾ãŸã¯ SSH éµãƒ•ã‚¡ã‚¤ãƒ«ã‚’ドラッグ…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "CA証明書ã®ãƒ‘ス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "クライアント証明書ã®ãƒ‘ス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "秘密éµã®ãƒ‘ス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "CA 証明書ã®ãƒ‘ス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "クライアント証明書ã®ãƒ‘ス" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "秘密éµã®ãƒ‘ス" @@ -3904,6 +3913,14 @@ msgstr "ユーザーåã¨ãƒ‘スワードを入力ã—ã¦ãã ã•ã„。" msgid "Policy" msgstr "ãƒãƒªã‚·ãƒ¼" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "ãƒãƒ¼ãƒªãƒ³ã‚°é–“éš”" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "ステータス クエリã®ãƒãƒ¼ãƒªãƒ³ã‚°é–“隔(秒)ã§ã™ã€‚" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "ãƒãƒ¼ãƒˆ" @@ -3953,8 +3970,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "ã“れらã®ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹ã§ã®å¾…ã¡å—ã‘ã‚’åœæ¢ã—ã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "クライアントåŒå£«ã®é€šä¿¡ã‚’制é™ã—ã¾ã™" @@ -3995,7 +4012,7 @@ msgstr "æ–°ã—ã„インターフェースã®ãƒ—ãƒãƒˆã‚³ãƒ«" msgid "Protocol support is not installed" msgstr "プãƒãƒˆã‚³ãƒ« サãƒãƒ¼ãƒˆãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•ã‚Œã¦ã„ã¾ã›ã‚“" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "NTPサーãƒãƒ¼æ©Ÿèƒ½ã‚’有効ã«ã™ã‚‹" @@ -4003,7 +4020,7 @@ msgstr "NTPサーãƒãƒ¼æ©Ÿèƒ½ã‚’有効ã«ã™ã‚‹" msgid "Provide new network" msgstr "æ–°ã—ã„ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯ã‚’è¨å®šã—ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "擬似アドホック (ahdemo)" @@ -4044,11 +4061,11 @@ msgstr "" "アップストリームã®åˆ©ç”¨å¯èƒ½ãªå…¨ <abbr title=\"Domain Name System\">DNS</abbr> " "サーãƒã‚’å•ã„åˆã‚ã›ã¾ã™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4056,8 +4073,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-Tモード" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "ãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯å‚åŠ ã® RSSI ã—ãã„値" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTSã—ãã„値" @@ -4071,27 +4092,27 @@ msgstr "RX" msgid "RX Rate" msgstr "å—信レート" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radiusアカウントサーãƒãƒ¼ ãƒãƒ¼ãƒˆç•ªå·" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radiusアカウント秘密éµ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radiusアカウントサーãƒãƒ¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radiusèªè¨¼ã‚µãƒ¼ãƒãƒ¼ ãƒãƒ¼ãƒˆç•ªå·" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radiusèªè¨¼ç§˜å¯†éµ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radiusèªè¨¼ã‚µãƒ¼ãƒãƒ¼" @@ -4154,9 +4175,9 @@ msgstr "リアルタイム・トラフィック" msgid "Realtime Wireless" msgstr "リアルタイム・無線LAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" -msgstr "" +msgstr "å†ã‚¢ã‚½ã‚·ã‚¨ãƒ¼ã‚·ãƒ§ãƒ³åˆ¶é™æ™‚é–“" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:149 msgid "Rebind protection" @@ -4248,7 +4269,7 @@ msgstr "IPv6-アドレスã®ãƒªã‚¯ã‚¨ã‚¹ãƒˆ" msgid "Request IPv6-prefix of length" msgstr "リクエストã™ã‚‹IPv6-プレフィクス長" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "å¿…é ˆ" @@ -4271,13 +4292,13 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "'フル' ãƒãƒ¼ã‚¸ãƒ§ãƒ³ã® wpad/hostapd ã¨ã€ç„¡ç·šLANドライãƒãƒ¼ã«ã‚ˆã‚‹ã‚µãƒãƒ¼ãƒˆãŒå¿…è¦ã§" -"ã™ã€‚<br />(2017å¹´2月ç¾åœ¨: ath9k åŠã³ ath10kã€LEDE内ã§ã¯ mwlwifi åŠã³ mt76)" +"ã™ã€‚<br />(2019å¹´1月ç¾åœ¨: ath9kã€ath10kã€mwlwifi åŠã³ mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4523,7 +4544,7 @@ msgstr "" "è¨å®šã•ã‚ŒãŸç§’é–“éš”ã§LCP echoリクエストをé€ä¿¡ã—ã¾ã™ã€‚失敗数ã—ãã„値をè¨å®šã—ãŸå ´" "åˆã®ã¿ã€æ©Ÿèƒ½ãŒæœ‰åŠ¹ã«ãªã‚Šã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "クライアントã®åˆ†é›¢" @@ -4558,7 +4579,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "時刻åŒæœŸè¨å®š" @@ -4582,7 +4603,7 @@ msgstr "" msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Short Preamble" @@ -4625,7 +4646,7 @@ msgstr "サイズ" msgid "Size of DNS query cache" msgstr "DNS クエリ ã‚ャッシュã®ã‚µã‚¤ã‚º" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "ZRam デãƒã‚¤ã‚¹ã®ã‚µã‚¤ã‚º (MB) ã§ã™ã€‚" @@ -4772,7 +4793,7 @@ msgstr "" "åをアサインã—ã¾ã™ã€‚ã¾ãŸã€ã‚¯ãƒ©ã‚¤ã‚¢ãƒ³ãƒˆã¯å¯¾å¿œã™ã‚‹ãƒªãƒ¼ã‚¹ã‚’使用ã™ã‚‹ãƒ›ã‚¹ãƒˆãŒãã®1" "å°ã®ã¿ã§ã€ã‹ã¤é™çš„ãªã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹è¨å®šã«ã™ã‚‹å¿…è¦ãŒã‚ã‚Šã¾ã™ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "éžã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã‚¹ãƒ†ãƒ¼ã‚·ãƒ§ãƒ³ã®åˆ¶é™" @@ -4878,7 +4899,7 @@ msgstr "システムãƒã‚°" msgid "System Properties" msgstr "システムプãƒãƒ‘ティ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "システムãƒã‚° ãƒãƒƒãƒ•ã‚¡ã‚µã‚¤ã‚º" @@ -5066,6 +5087,7 @@ msgid "" "The length of the IPv4 prefix in bits, the remainder is used in the IPv6 " "addresses." msgstr "" +"IPv4 プレフィクスã®é•·ã• (bit) ã§ã™ã€‚残り㯠IPv6 アドレスã§ä½¿ç”¨ã•ã‚Œã¾ã™ã€‚" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:35 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:46 @@ -5132,7 +5154,7 @@ msgstr "" "マットã§ã¯ã‚ã‚Šã¾ã›ã‚“。ã“ã®ãƒ—ラットフォームã«é©åˆã—ãŸã‚¤ãƒ¡ãƒ¼ã‚¸ãƒ•ã‚¡ã‚¤ãƒ«ã‹ã©ã†" "ã‹ã€ç¢ºèªã—ã¦ãã ã•ã„。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "テーマ" @@ -5165,7 +5187,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5264,20 +5286,20 @@ msgstr "ã“ã®ãƒšãƒ¼ã‚¸ã§ã¯ã€ç¾åœ¨ã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªãƒãƒƒãƒˆãƒ¯ãƒ¼ã‚¯æŽ¥ç¶š msgid "This section contains no values yet" msgstr "ã“ã®ã‚»ã‚¯ã‚·ãƒ§ãƒ³ã¯æœªè¨å®šã§ã™ã€‚" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "時刻è¨å®š" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "時刻åŒæœŸæ©Ÿèƒ½ã¯ã¾ã è¨å®šã•ã‚Œã¦ã„ã¾ã›ã‚“。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "Group Temporal Key (GTK) å†ç”Ÿæˆé–“éš”" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "タイムゾーン" @@ -5319,7 +5341,7 @@ msgstr "トラフィック" msgid "Transfer" msgstr "転é€" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "転é€ãƒ¬ãƒ¼ãƒˆ" @@ -5627,11 +5649,11 @@ msgstr "" msgid "Used" msgstr "使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "使用ã™ã‚‹ã‚ースãƒãƒƒãƒˆ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5709,18 +5731,18 @@ msgstr "確èª" msgid "Virtual dynamic interface" msgstr "仮想ダイナミックインターフェース" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP オープンシステム" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP 共有ã‚ー" @@ -5728,8 +5750,8 @@ msgstr "WEP 共有ã‚ー" msgid "WEP passphrase" msgstr "WEP æš—å·ãƒ•ãƒ¬ãƒ¼ã‚º" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM モード" @@ -5737,9 +5759,9 @@ msgstr "WMM モード" msgid "WPA passphrase" msgstr "WPA æš—å·ãƒ•ãƒ¬ãƒ¼ã‚º" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5764,8 +5786,8 @@ msgstr "è¨å®šã‚’é©ç”¨ä¸ã§ã™... %d 秒" msgid "Waiting for device..." msgstr "デãƒã‚¤ã‚¹ã‚’èµ·å‹•ä¸ã§ã™..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "è¦å‘Š" @@ -5773,7 +5795,7 @@ msgstr "è¦å‘Š" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "è¦å‘Š: å†èµ·å‹•ã™ã‚‹ã¨æ¶ˆãˆã¦ã—ã¾ã†ã€ä¿å˜ã•ã‚Œã¦ã„ãªã„è¨å®šãŒã‚ã‚Šã¾ã™ï¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5860,7 +5882,7 @@ msgstr "ç„¡ç·šLAN機能ã¯æœ‰åŠ¹ã«ãªã£ã¦ã„ã¾ã™" msgid "Write received DNS requests to syslog" msgstr "å—ä¿¡ã—ãŸDNSリクエストをsyslogã¸è¨˜éŒ²ã—ã¾ã™" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "システムãƒã‚°ã‚’ファイルã«æ›¸ã込む" @@ -5883,7 +5905,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "JavaScriptを有効ã«ã—ãªã„å ´åˆã€LuCIã¯æ£ã—ã動作ã—ã¾ã›ã‚“。" @@ -5898,19 +5920,19 @@ msgstr "" "ãƒãƒ¼ã‚¸ãƒ§ãƒ³ 7以上ã«ã‚¢ãƒƒãƒ—グレードã™ã‚‹ã‹ã€Firefoxã‚„Operaã€Safariãªã©åˆ¥ã®ãƒ–ラウ" "ザーを使用ã—ã¦ãã ã•ã„。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRam 圧縮アルゴリズム" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRam 圧縮ストリーム" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRam è¨å®š" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRam サイズ" @@ -5925,7 +5947,7 @@ msgstr "å…¨ã¦" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5978,8 +6000,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "無効" @@ -6083,7 +6105,7 @@ msgstr "5 æ–‡å—ã¾ãŸã¯ 13 æ–‡å—ã®ã‚ー" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "ãƒãƒ¼ã‚«ãƒ« <abbr title=\"Domain Name System\">DNS</abbr>ファイル" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "分" @@ -6116,7 +6138,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "オフ" @@ -6124,7 +6146,7 @@ msgstr "オフ" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "オン" @@ -6170,8 +6192,8 @@ msgstr "リレー モード" msgid "routed" msgstr "routed" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "秒" @@ -6196,7 +6218,7 @@ msgstr "ステートレス + ステートフル" msgid "tagged" msgstr "tagged" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/ko/base.po b/modules/luci-base/po/ko/base.po index d60fd88dcd..39fee8d15b 100644 --- a/modules/luci-base/po/ko/base.po +++ b/modules/luci-base/po/ko/base.po @@ -57,16 +57,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 분 부하:" @@ -98,7 +102,7 @@ msgstr "1 분 부하:" msgid "15 Minute Load:" msgstr "15 분 부하:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 분 부하:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -302,7 +306,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "" @@ -394,6 +398,10 @@ msgstr "" msgid "Administration" msgstr "관리" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -409,7 +417,7 @@ msgstr "ê³ ê¸‰ ì„¤ì •" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" @@ -440,12 +448,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "<abbr title=\"Secure Shell\">SSH</abbr> 암호 ì¸ì¦ì„ 허용합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "" @@ -453,8 +461,8 @@ msgstr "" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "" @@ -574,7 +582,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -646,7 +654,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "" @@ -668,8 +676,8 @@ msgstr "ì¸ì¦ì´ 필요합니다" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "ìžë™ Refresh" @@ -966,7 +974,7 @@ msgstr "" "ìš´ zone ì„ ì •ì˜í•˜ê³ ì¸í„°íŽ˜ì´ìŠ¤ ì—°ê²°ì„ ì›í•œë‹¤ë©´ <em>create</em> í•ëª©ì„ ìž…ë ¥í•˜" "세요." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -974,7 +982,7 @@ msgstr "" "ì´ ë¬´ì„ ëžœ ì¸í„°íŽ˜ì´ìŠ¤ì™€ ì—°ê²°í•˜ê³ ìž í•˜ëŠ” 네트워í¬(들)ì„ ì„ íƒí•˜ì„¸ìš”. í˜¹ì€ ìƒˆë¡œ" "ìš´ 네트워í¬ë¥¼ ì •ì˜í• ë ¤ë©´ <em>create</em> ì„ ìž‘ì„±í•˜ì„¸ìš”." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -997,7 +1005,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1055,7 +1063,7 @@ msgstr "" msgid "Common Configuration" msgstr "공통 ì„¤ì •" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1151,11 +1159,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1188,15 +1196,15 @@ msgstr "" "ì›í•œë‹¤ë©´ ìž¥ì¹˜ì— ë¶€ì°©ëœ <abbr title=\"Light Emitting Diode\">LED</abbr> ë“¤ì˜ " "í–‰ë™ì„ 마ìŒëŒ€ë¡œ ë³€ê²½í• ìˆ˜ 있습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1280,7 +1288,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1292,14 +1300,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1353,7 +1361,7 @@ msgstr "" msgid "Delete this network" msgstr "ì´ ë„¤íŠ¸ì›Œí¬ë¥¼ ì‚ì œí•©ë‹ˆë‹¤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1425,7 +1433,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1443,11 +1451,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1580,7 +1588,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1605,7 +1613,7 @@ msgstr "ì´ ì¸í„°íŽ˜ì´ìŠ¤ë¥¼ ìˆ˜ì •í•©ë‹ˆë‹¤" msgid "Edit this network" msgstr "ì´ ë„¤íŠ¸ì›Œí¬ë¥¼ ìˆ˜ì •í•©ë‹ˆë‹¤" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1644,7 +1652,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "NTP client 활성화" @@ -1660,11 +1668,11 @@ msgstr "TFTP 서버 활성화" msgid "Enable VLAN functionality" msgstr "VLAN 기능 활성화" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1710,7 +1718,7 @@ msgstr "활성화ë¨" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1727,7 +1735,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1758,7 +1766,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" @@ -1799,23 +1807,23 @@ msgstr "임대한 ì£¼ì†Œì˜ ìœ íš¨ 시간. ìµœì†Œê°’ì€ 2 분 (<code>2m</code> msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "외부 system log 서버" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "외부 system log 서버 í¬íŠ¸" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "외부 system log 서버 í”„ë¡œí† ì½œ" @@ -1823,15 +1831,15 @@ msgstr "외부 system log 서버 í”„ë¡œí† ì½œ" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1941,7 +1949,7 @@ msgstr "ê°•ì œí•˜ê¸°" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1949,11 +1957,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "다른 DHCP 서버가 íƒì§€ë˜ë”ë¼ë„ ì´ ë„¤íŠ¸ì›Œí¬ì— DHCP 를 ê°•ì œí•©ë‹ˆë‹¤." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1994,7 +2002,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2056,7 +2064,7 @@ msgstr "기본 ì„¤ì •" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2083,7 +2091,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "암호 ì„¤ì • 하기" @@ -2131,9 +2139,9 @@ msgid "" msgstr "" "여기서 호스트ì´ë¦„ì´ë‚˜ 시간대와 ê°™ì€ ê¸°ë³¸ì ì¸ ìž¥ë¹„ ì„¤ì •ì„ í• ìˆ˜ 있습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr> 숨기기" @@ -2167,7 +2175,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "호스트ì´ë¦„" @@ -2388,7 +2396,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "" @@ -2494,7 +2502,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2548,7 +2556,7 @@ msgstr "ì¸í„°íŽ˜ì´ìŠ¤ 개요" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "ì¸í„°íŽ˜ì´ìŠ¤ ì´ë¦„" @@ -2588,7 +2596,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2602,7 +2610,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2631,15 +2639,16 @@ msgstr "Kernel 로그" msgid "Kernel Version" msgstr "Kernel ë²„ì „" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2682,7 +2691,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "언어" @@ -2768,7 +2777,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2777,7 +2786,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2865,7 +2874,7 @@ msgid "Local Startup" msgstr "Local 시작 프로그램" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "ì§€ì— ì‹œê°„" @@ -2901,7 +2910,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Log output ë ˆë²¨" @@ -2943,8 +2952,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-주소" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-주소 í•„í„°" @@ -2953,8 +2962,8 @@ msgstr "MAC-주소 í•„í„°" msgid "MAC-Filter" msgstr "MAC-í•„í„°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -3004,7 +3013,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3076,7 +3085,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3113,9 +3122,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3176,7 +3185,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3200,7 +3209,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP 서버 목ë¡" @@ -3229,7 +3238,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3303,7 +3312,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "암호 ì„¤ì •ì„ í•´ì£¼ì„¸ìš”!" @@ -3352,7 +3361,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3374,7 +3383,7 @@ msgstr "ì—°ê²°ë˜ì§€ ì•ŠìŒ" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3386,7 +3395,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3468,7 +3477,7 @@ msgstr "ë³€ê²½ëœ option" msgid "Option removed" msgstr "ì‚ì œëœ option" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3575,7 +3584,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "기본 ì¸í„°íŽ˜ì´ìŠ¤ ì´ë¦„ì„ ë®ì–´ì”니다" @@ -3639,7 +3648,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3692,7 +3701,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3703,11 +3712,11 @@ msgstr "암호" msgid "Password authentication" msgstr "암호 ì¸ì¦" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3719,27 +3728,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3817,6 +3826,14 @@ msgstr "사용ìžì´ë¦„ê³¼ 암호를 ìž…ë ¥í•´ 주세요." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "í¬íŠ¸" @@ -3864,8 +3881,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3906,7 +3923,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3914,7 +3931,7 @@ msgstr "" msgid "Provide new network" msgstr "새로운 네트워í¬ë¥¼ 추가합니다" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3949,11 +3966,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3961,8 +3978,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3976,27 +3997,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4052,7 +4073,7 @@ msgstr "실시간 트래픽" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4146,7 +4167,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4169,10 +4190,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4414,7 +4435,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4449,7 +4470,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4473,7 +4494,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4516,7 +4537,7 @@ msgstr "Size" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4660,7 +4681,7 @@ msgstr "" "í• ë•Œ 사용ë©ë‹ˆë‹¤. ì´ ê¸°ëŠ¥ì€ ë˜í•œ ì§€ì •ëœ host ì— ëŒ€í•´ì„œë§Œ 주소 임대를 하ë„ë¡ " "하는 non-dynamic ì¸í„°íŽ˜ì´ìŠ¤ ì„¤ì •ì—ë„ ì‚¬ìš©ë©ë‹ˆë‹¤." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4764,7 +4785,7 @@ msgstr "시스템 로그" msgid "System Properties" msgstr "시스템 ë“±ë¡ ì •ë³´" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "System log ë²„í¼ í¬ê¸°" @@ -4987,7 +5008,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "ë””ìžì¸" @@ -5018,7 +5039,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5107,20 +5128,20 @@ msgstr "ì´ íŽ˜ì´ì§€ëŠ” 현재 active ìƒíƒœì¸ ë„¤íŠ¸ì›Œí¬ ì—°ê²°ì„ ë³´ì—¬ì¤ msgid "This section contains no values yet" msgstr "ì´ section ì€ ì•„ì§ ìž…ë ¥ëœ ê°’ì´ ì—†ìŠµë‹ˆë‹¤" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "시간 ë™ê¸°í™”" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "시간 ë™ê¸°í™”ê°€ ì•„ì§ ì„¤ì •ë˜ì§€ 않았습니다." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "시간대" @@ -5162,7 +5183,7 @@ msgstr "트래픽" msgid "Transfer" msgstr "ì „ì†¡ëŸ‰" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "" @@ -5470,11 +5491,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5552,18 +5573,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5571,8 +5592,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Mode" @@ -5580,9 +5601,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5604,8 +5625,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5613,7 +5634,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5700,7 +5721,7 @@ msgstr "ë¬´ì„ ë„¤íŠ¸ì›Œí¬ê°€ ì¼œì ¸ 있ìŒ" msgid "Write received DNS requests to syslog" msgstr "ë°›ì€ DNS ìš”ì² ë‚´ìš©ì„ systlog ì— ê¸°ë¡í•©ë‹ˆë‹¤" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "System log ì¶œë ¥ íŒŒì¼ ê²½ë¡œ" @@ -5723,7 +5744,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5735,19 +5756,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5762,7 +5783,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5815,8 +5836,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "" @@ -5920,7 +5941,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "local <abbr title=\"Domain Name System\">DNS</abbr> 파ì¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5953,7 +5974,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5961,7 +5982,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -6005,8 +6026,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6031,7 +6052,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/ms/base.po b/modules/luci-base/po/ms/base.po index 5e1f47a4d7..21c4e071e7 100644 --- a/modules/luci-base/po/ms/base.po +++ b/modules/luci-base/po/ms/base.po @@ -57,16 +57,16 @@ msgstr "(tiada interface dipasang)" msgid "-- Additional Field --" msgstr "-- Gelanggang Tambahan --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Sila pilih --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- memperibadi --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"perkhidmatan set mengenalpasti diperpanjangkan\">ESSID</abbr>" @@ -299,7 +303,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Pusat akses" @@ -389,6 +393,10 @@ msgstr "" msgid "Administration" msgstr "Pentadbiran" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -404,7 +412,7 @@ msgstr "Tetapan Lanjutan" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" @@ -435,12 +443,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Membenarkan pengesahan kata laluan SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Izinkan semua kecualian yang disenaraikan" @@ -448,8 +456,8 @@ msgstr "Izinkan semua kecualian yang disenaraikan" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Izinkan senarai saja" @@ -569,7 +577,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -641,7 +649,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Authentifizierung" @@ -663,8 +671,8 @@ msgstr "Otorisasi Diperlukan" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -954,13 +962,13 @@ msgid "" "interface to it." msgstr "Pilih zon firewall yang anda ingin tetapkan untuk antar muka ini." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -981,7 +989,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 #, fuzzy msgid "Client" msgstr "Pelanggan" @@ -1040,7 +1048,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1136,11 +1144,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1171,15 +1179,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "Mengkustomisasi perilaku peranti LED jika mungkin." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1263,7 +1271,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1275,14 +1283,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1333,7 +1341,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1403,7 +1411,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1421,11 +1429,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1557,7 +1565,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-Kaedah" @@ -1582,7 +1590,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1621,7 +1629,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1637,11 +1645,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1687,7 +1695,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1704,7 +1712,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1735,7 +1743,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Kesalahan" @@ -1776,23 +1784,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1800,15 +1808,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1918,7 +1926,7 @@ msgstr "Paksa" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1926,11 +1934,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1971,7 +1979,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Fragmentasi Ambang" @@ -2033,7 +2041,7 @@ msgstr "Setup Umum" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2060,7 +2068,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2109,9 +2117,9 @@ msgstr "" "Di sini anda boleh mengkonfigurasi aspek asas peranti anda seperti nama host " "atau zon." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Menyembunyikan ESSID" @@ -2145,7 +2153,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nama Host" @@ -2366,7 +2374,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identiti" @@ -2477,7 +2485,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2531,7 +2539,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2571,7 +2579,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Username dan / atau password tak sah! Sila cuba lagi." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2588,7 +2596,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2618,15 +2626,16 @@ msgstr "Log Kernel" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Kunci" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2669,7 +2678,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Bahasa" @@ -2754,7 +2763,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2763,7 +2772,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2850,7 +2859,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Masa Tempatan" @@ -2886,7 +2895,7 @@ msgstr "Soalan tempatan" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2928,8 +2937,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Penapis alamat MAC" @@ -2938,8 +2947,8 @@ msgstr "Penapis alamat MAC" msgid "MAC-Filter" msgstr "Penapis MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Senarai MAC" @@ -2989,7 +2998,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3061,7 +3070,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3098,9 +3107,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3163,7 +3172,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3187,7 +3196,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3216,7 +3225,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3290,7 +3299,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3339,7 +3348,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3361,7 +3370,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3373,7 +3382,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3454,7 +3463,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3561,7 +3570,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3623,7 +3632,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3676,7 +3685,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3687,11 +3696,11 @@ msgstr "Kata laluan" msgid "Password authentication" msgstr "Kata laluan pengesahan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Kata Laluan Kunci Swasta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3703,27 +3712,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Path ke CA-Sijil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Path ke Kunci Swasta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3801,6 +3810,14 @@ msgstr "Sila masukkan username dan kata laluan anda." msgid "Policy" msgstr "Dasar" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3848,8 +3865,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Mencegah komunikasi sesama Pelanggan" @@ -3890,7 +3907,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3898,7 +3915,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3933,11 +3950,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3945,8 +3962,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS-Ambang" @@ -3961,27 +3982,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4035,7 +4056,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4129,7 +4150,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4152,10 +4173,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4397,7 +4418,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Pisahkan Pelanggan" @@ -4432,7 +4453,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4456,7 +4477,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4499,7 +4520,7 @@ msgstr "Saiz" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4640,7 +4661,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4744,7 +4765,7 @@ msgstr "Log Sistem" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4971,7 +4992,7 @@ msgstr "" "Format Fail gambar yang diupload tidak disokongkan. Pastikan anda memilih " "fail format gambar yang generik untuk platform anda." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5002,7 +5023,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5089,20 +5110,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Bahagian ini belum mengandungi nilai-nilai lagi" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Zon masa" @@ -5141,7 +5162,7 @@ msgstr "Lalu lintas" msgid "Transfer" msgstr "Pemindahan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Kelajuan Penghantaran" @@ -5441,11 +5462,11 @@ msgstr "" msgid "Used" msgstr "Diguna" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5523,18 +5544,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5542,8 +5563,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Mod" @@ -5551,9 +5572,9 @@ msgstr "WMM Mod" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5577,8 +5598,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5586,7 +5607,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5673,7 +5694,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5692,7 +5713,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5704,19 +5725,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5731,7 +5752,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5784,8 +5805,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "mematikan" @@ -5887,7 +5908,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Fail DNS tempatan" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5920,7 +5941,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5928,7 +5949,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5972,8 +5993,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5998,7 +6019,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/no/base.po b/modules/luci-base/po/no/base.po index 36c0f83c73..a16ac35293 100644 --- a/modules/luci-base/po/no/base.po +++ b/modules/luci-base/po/no/base.po @@ -52,16 +52,16 @@ msgstr "(ingen grensesnitt tilknyttet)" msgid "-- Additional Field --" msgstr "-- Tilleggs Felt --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vennligst velg --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- egendefinert --" @@ -85,6 +85,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 minutts belastning:" @@ -93,7 +97,7 @@ msgstr "1 minutts belastning:" msgid "15 Minute Load:" msgstr "15 minutters belastning:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -105,35 +109,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 minutters belastning:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -153,7 +157,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> servere skal følge rekkefølgen " "i oppslagsfilen ved spørringer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -308,7 +312,7 @@ msgid "Access Concentrator" msgstr "Tilgangskonsentrator" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Aksesspunkt" @@ -398,6 +402,10 @@ msgstr "Adresse for tilgang til lokal relébro" msgid "Administration" msgstr "Administrasjon" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -413,7 +421,7 @@ msgstr "Avanserte Innstillinger" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Varsle" @@ -444,12 +452,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Tillat <abbr title=\"Secure Shell\">SSH</abbr> passord godkjenning" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Tillat alle unntatt oppførte" @@ -457,8 +465,8 @@ msgstr "Tillat alle unntatt oppførte" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Tillat kun oppførte" @@ -578,7 +586,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -650,7 +658,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Godkjenning" @@ -672,8 +680,8 @@ msgstr "Autorisasjon er nødvendig" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatisk oppdatering" @@ -970,7 +978,7 @@ msgstr "" "Eller fyll ut <em>Opprett</em> feltet for Ã¥ definere en ny sone og tilknytte " "grensesnittet til det." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -978,7 +986,7 @@ msgstr "" "Velg det eller de nettverk du vil legge til dette trÃ¥dløse grensesnittet, " "eller fyll ut <em>Opprett</em> feltet for Ã¥ definere et nytt nettverk." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Krypteringsmetode" @@ -1001,7 +1009,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Klient" @@ -1061,7 +1069,7 @@ msgstr "" msgid "Common Configuration" msgstr "Vanlige Innstillinger" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1157,11 +1165,11 @@ msgstr "Opprett Grensesnitt" msgid "Create a bridge over multiple interfaces" msgstr "Opprett en bro over flere grensesnitt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisk" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron logg nivÃ¥" @@ -1194,15 +1202,15 @@ msgstr "" "Tilpasser oppførselen til enhetens <abbr title=\"Light Emitting Diode\">LED</" "abbr>s om mulig." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1286,7 +1294,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1298,14 +1306,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Feilsøking" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Standard %d" @@ -1358,7 +1366,7 @@ msgstr "" msgid "Delete this network" msgstr "Fjern dette nettverket" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1430,7 +1438,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1448,11 +1456,11 @@ msgstr "" msgid "Disabled" msgstr "Deaktivert" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1591,7 +1599,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-metode" @@ -1616,7 +1624,7 @@ msgstr "Endre dette grensesnittet" msgid "Edit this network" msgstr "Endre dette nettverket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Krisesituasjon" @@ -1655,7 +1663,7 @@ msgstr "Aktiver IPv6 pÃ¥ PPP lenke" msgid "Enable Jumbo Frame passthrough" msgstr "Aktiver Jumbo Frames gjennomgang" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktiver NTP klient" @@ -1671,11 +1679,11 @@ msgstr "Aktiver TFTP server" msgid "Enable VLAN functionality" msgstr "Aktiver VLAN funksjonalitet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1721,7 +1729,7 @@ msgstr "Aktivert" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1738,7 +1746,7 @@ msgstr "Innkapsling modus" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1769,7 +1777,7 @@ msgstr "Sletter..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Feil" @@ -1811,23 +1819,23 @@ msgstr "Utløpstid pÃ¥ leide adresser, minimum er 2 minutter (<code>2m</code>)." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Ekstern systemlogg server" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Ekstern systemlogg server port" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1835,15 +1843,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1953,7 +1961,7 @@ msgstr "Bruk" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Bruk CCMP (AES)" @@ -1962,11 +1970,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Bruk DHCP i dette nettverket, selv om en annen DHCP server er oppdaget." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Bruk TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Bruk TKIP og CCMP (AES)" @@ -2007,7 +2015,7 @@ msgid "Forwarding mode" msgstr "Videresending modus" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Fragmenterings Terskel" @@ -2069,7 +2077,7 @@ msgstr "Generelt Oppsett" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2096,7 +2104,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "GÃ¥ til passord konfigurasjon..." @@ -2145,9 +2153,9 @@ msgstr "" "Her kan du konfigurere grunnleggende aspekter av enheten som f.eks. dens " "vertsnavn eller tidssone." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Skjul <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2182,7 +2190,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Vertsnavn" @@ -2403,7 +2411,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6til4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identitet" @@ -2513,7 +2521,7 @@ msgstr "Tidsavbrudd etter innaktivitet" msgid "Inbound:" msgstr "Innkommende:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informasjon" @@ -2567,7 +2575,7 @@ msgstr "Grensesnitt Oversikt" msgid "Interface is reconnecting..." msgstr "Grensesnittet kobler til igjen..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2607,7 +2615,7 @@ msgstr "Ugyldig VLAN ID gitt! Bare unike ID'er er tillatt" msgid "Invalid username and/or password! Please try again." msgstr "Ugyldig brukernavn og/eller passord! Vennligst prøv igjen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2624,7 +2632,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript kreves!" @@ -2653,15 +2661,16 @@ msgstr "Kjerne Logg" msgid "Kernel Version" msgstr "Kjerne Versjon" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Nøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Nøkkel #%d" @@ -2704,7 +2713,7 @@ msgstr "LLC" msgid "Label" msgstr "Volumnavn" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "SprÃ¥k" @@ -2791,7 +2800,7 @@ msgstr "" "Liste med <abbr title=\"Domain Name System\">DNS</abbr> servere som " "forespørsler blir videresendt til" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2800,7 +2809,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2888,7 +2897,7 @@ msgid "Local Startup" msgstr "Lokal Oppstart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokal tid" @@ -2929,7 +2938,7 @@ msgstr "Lokalisere søk" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Logg nivÃ¥" @@ -2971,8 +2980,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-Adresse" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-Addresse Filter" @@ -2981,8 +2990,8 @@ msgstr "MAC-Addresse Filter" msgid "MAC-Filter" msgstr "MAC-Filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-Liste" @@ -3032,7 +3041,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3104,7 +3113,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Mangler protokoll utvidelse for proto %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3141,9 +3150,9 @@ msgstr "" msgid "Modem init timeout" msgstr "Modem initiering tidsavbrudd" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3206,7 +3215,7 @@ msgstr "Flytt ned" msgid "Move up" msgstr "Flytt opp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3230,7 +3239,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP server kandidater" @@ -3259,7 +3268,7 @@ msgstr "Nettmaske" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3333,7 +3342,7 @@ msgstr "Ingen nettverksnavn spesifisert" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Ruteren er ikke passordbeskyttet!" @@ -3382,7 +3391,7 @@ msgstr "" msgid "None" msgstr "Ingen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3404,7 +3413,7 @@ msgstr "Ikke tilkoblet" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Merk" @@ -3416,7 +3425,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3498,7 +3507,7 @@ msgstr "Innstilling endret" msgid "Option removed" msgstr "Innstilling fjernet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3605,7 +3614,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3669,7 +3678,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3722,7 +3731,7 @@ msgid "Part of zone %q" msgstr "En del av sone %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3733,11 +3742,11 @@ msgstr "Passord" msgid "Password authentication" msgstr "Passord godkjenning" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Passord for privatnøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3749,27 +3758,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Sti til CA-sertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Sti til klient-sertifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Sti til privatnøkkel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3847,6 +3856,14 @@ msgstr "Skriv inn ditt brukernavn og passord." msgid "Policy" msgstr "Policy" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3896,8 +3913,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Hindrer klient-til-klient kommunikasjon" @@ -3938,7 +3955,7 @@ msgstr "Protokoll til det nye grensesnittet" msgid "Protocol support is not installed" msgstr "Protokoll støtte er ikke installert" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Funger som NTP Server" @@ -3946,7 +3963,7 @@ msgstr "Funger som NTP Server" msgid "Provide new network" msgstr "Lag nytt nettverk" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3981,11 +3998,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3993,8 +4010,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Terskel" @@ -4008,27 +4029,27 @@ msgstr "RX" msgid "RX Rate" msgstr "RX Rate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radius-Accounting-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radius-Accounting-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radius-Accounting-Server" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radius-Authentication-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radius-Authentication-Secret" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radius-Authentication-Server" @@ -4086,7 +4107,7 @@ msgstr "Trafikk Sanntid" msgid "Realtime Wireless" msgstr "TrÃ¥dløst i sanntid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4180,7 +4201,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4203,10 +4224,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4450,7 +4471,7 @@ msgstr "" "Send LCP ekko forespørsler etter angitt intervall i sekunder, dette er kun " "gjeldene dersom feilterskelen er nÃ¥dd" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Separerte Klienter" @@ -4485,7 +4506,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Oppsett tidssynkronisering" @@ -4510,7 +4531,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4553,7 +4574,7 @@ msgstr "Størrelse" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4701,7 +4722,7 @@ msgstr "" "vertsnavn til DHCP klienter. Dette er nødvendig om grensesnittet ikke er " "dynamisk konfigurert og kun klienter med dhcp leieavtale fÃ¥r IP." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4805,7 +4826,7 @@ msgstr "System Logg" msgid "System Properties" msgstr "System Egenskaper" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "System logg buffer størrelse" @@ -5055,7 +5076,7 @@ msgstr "" "Den opplastede programvaren er av et format som ikke støttes. Sørg for at du " "velger det generelle firmware-bildet for din plattform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5088,7 +5109,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5182,20 +5203,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Denne seksjonen inneholder ennÃ¥ ingen verdier" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Tidssynkronisering" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Tiden Synkroniseringen er ikke konfigurert ennÃ¥." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Tidssone" @@ -5238,7 +5259,7 @@ msgstr "Trafikk" msgid "Transfer" msgstr "Overføring" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Overførings rate" @@ -5545,11 +5566,11 @@ msgstr "" msgid "Used" msgstr "Brukt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Brukte Nøkler" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5627,18 +5648,18 @@ msgstr "Bekreft" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP Ã¥pent system" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP delt nøkkel" @@ -5646,8 +5667,8 @@ msgstr "WEP delt nøkkel" msgid "WEP passphrase" msgstr "WEP passord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Modus" @@ -5655,9 +5676,9 @@ msgstr "WMM Modus" msgid "WPA passphrase" msgstr "WPA passord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5681,8 +5702,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Advarsel" @@ -5690,7 +5711,7 @@ msgstr "Advarsel" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5777,7 +5798,7 @@ msgstr "TrÃ¥dløst nettverk er aktivert" msgid "Write received DNS requests to syslog" msgstr "Skriv mottatte DNS forespørsler til syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5800,7 +5821,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5814,19 +5835,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5841,7 +5862,7 @@ msgstr "enhver" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5894,8 +5915,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "Deaktiver" @@ -5999,7 +6020,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokal <abbr title=\"Domain Navn System\">DNS</abbr>-fil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6032,7 +6053,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "av" @@ -6040,7 +6061,7 @@ msgstr "av" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "pÃ¥" @@ -6084,8 +6105,8 @@ msgstr "" msgid "routed" msgstr "rutet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6110,7 +6131,7 @@ msgstr "" msgid "tagged" msgstr "tagget" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/pl/base.po b/modules/luci-base/po/pl/base.po index 801f395d1d..3041957b61 100644 --- a/modules/luci-base/po/pl/base.po +++ b/modules/luci-base/po/pl/base.po @@ -58,16 +58,16 @@ msgstr "(brak podÅ‚Ä…czonych interfejsów)" msgid "-- Additional Field --" msgstr "-- Dodatkowe pole --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- ProszÄ™ wybrać --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- wÅ‚asne --" @@ -91,6 +91,10 @@ msgstr "-- dopasuj po uuid --" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Obciążenie 1 min.:" @@ -99,7 +103,7 @@ msgstr "Obciążenie 1 min.:" msgid "15 Minute Load:" msgstr "Obciążenie 15 min.:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -111,35 +115,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Obciążenie 5 min.:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "Identyfikator 6-oktetowy jako ciÄ…g szesnastkowy - bez dwukropków" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "802.11w maksymalny czas oczekiwania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "802.11w interwaÅ‚ ponawiania prób" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -159,7 +163,7 @@ msgstr "" "Nazwa <abbr title=\"Domain Name System\">DNS</abbr> bÄ™dzie rozwijana przez " "kolejne serwery w porzÄ…dku podanym w resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -314,7 +318,7 @@ msgid "Access Concentrator" msgstr "Koncentrator dostÄ™powy (ATM)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Punkt dostÄ™powy" @@ -409,6 +413,10 @@ msgstr "Adres dostÄ™powy do \"relay bridge\"" msgid "Administration" msgstr "ZarzÄ…dzanie" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -424,7 +432,7 @@ msgstr "Ustawienia zaawansowane" msgid "Aggregate Transmit Power(ACTATP)" msgstr "Agregacja siÅ‚y transmisji (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alarm" @@ -456,12 +464,12 @@ msgstr "Przydzielaj adresy IP po kolei" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Pozwól na logowanie <abbr title=\"Secure Shell\">SSH</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "Pozwól aby tryb AP rozÅ‚Ä…czaÅ‚ stacje STA w oparciu o niski stan ACK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Pozwól wszystkim oprócz wymienionych" @@ -469,8 +477,8 @@ msgstr "Pozwól wszystkim oprócz wymienionych" msgid "Allow legacy 802.11b rates" msgstr "Zezwalaj na starsze wersje 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Pozwól tylko wymienionym" @@ -596,7 +604,7 @@ msgstr "RozgÅ‚aszaj domeny DNS" msgid "Announced DNS servers" msgstr "RozgÅ‚aszaj serwery DNS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -672,7 +680,7 @@ msgstr "PoÅ‚Ä…czeni" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Uwierzytelnianie" @@ -694,8 +702,8 @@ msgstr "Wymagana autoryzacja" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Automatyczne odÅ›wieżanie" @@ -992,7 +1000,7 @@ msgstr "" "pole <em>utwórz</em> aby zdefiniować nowÄ… strefÄ™ i przypisać jÄ… do " "interfejsu." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1000,7 +1008,7 @@ msgstr "" "Wybierz sieć/sieci które chcesz przyÅ‚Ä…czyć do tego interfejsu " "bezprzewodowego lub wypeÅ‚nij pole <em>utwórz</em> aby utworzyć nowÄ… sieć." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Szyfr" @@ -1025,7 +1033,7 @@ msgstr "" "FUNKCJA JEST DLA PROFESJONALISTÓW! )" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Klient" @@ -1085,7 +1093,7 @@ msgstr "Komentarz" msgid "Common Configuration" msgstr "Konfiguracja podstawowa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1187,11 +1195,11 @@ msgstr "Utwórz interfejs" msgid "Create a bridge over multiple interfaces" msgstr "Utwórz most pomiÄ™dzy wieloma interfejsami" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Krytyczne" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Poziom logowania Cron`a" @@ -1226,15 +1234,15 @@ msgstr "" "Dostosuj zachowanie diod <abbr title=\"Light Emitting Diode\">LED</abbr> " "urzÄ…dzenia jeÅ›li jest to możliwe." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "DAE-Klient" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "DAE-Port" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1318,7 +1326,7 @@ msgstr "Status DSL" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "InterwaÅ‚ DTIM" @@ -1330,14 +1338,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "Szybkość przesyÅ‚ania danych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Debug" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "DomyÅ›lne %d" @@ -1390,7 +1398,7 @@ msgstr "UsuÅ„ klucz" msgid "Delete this network" msgstr "UsuÅ„ tÄ… sieć" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "InterwaÅ‚ komunikatu o wskazaniu dostawy ruchu" @@ -1462,7 +1470,7 @@ msgstr "" msgid "Disable Encryption" msgstr "WyÅ‚Ä…cz szyfrowanie" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1480,11 +1488,11 @@ msgstr "WyÅ‚Ä…cz tÄ… sieć" msgid "Disabled" msgstr "WyÅ‚Ä…czony" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "WyÅ‚Ä…czone (domyÅ›lnie)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "RozÅ‚Ä…czaj przy niskim stanie ramek ACK" @@ -1625,7 +1633,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Metoda EAP" @@ -1650,7 +1658,7 @@ msgstr "Edytuj ten interfejs" msgid "Edit this network" msgstr "Edytuj tÄ… sieć" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Zagrożenie" @@ -1691,7 +1699,7 @@ msgstr "WÅ‚Ä…cz negocjacjÄ™ IPv6 na Å‚Ä…czu PPP" msgid "Enable Jumbo Frame passthrough" msgstr "WÅ‚Ä…cz przechodzenie ramek Jumbo" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "WÅ‚Ä…cz klienta NTP" @@ -1707,11 +1715,11 @@ msgstr "WÅ‚Ä…cz serwer TFTP" msgid "Enable VLAN functionality" msgstr "WÅ‚Ä…cz funkcjonalność VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "WÅ‚Ä…cz przycisk WPS, wymaga WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "WÅ‚Ä…cz Å›rodki zaradcze dotyczÄ…ce ponownej instalacji kluczy (KRACK)" @@ -1757,7 +1765,7 @@ msgstr "WÅ‚Ä…czony" msgid "Enables IGMP snooping on this bridge" msgstr "WÅ‚Ä…cz nasÅ‚uchiwanie IGMP na tym moÅ›cie" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1778,7 +1786,7 @@ msgstr "Sposób enkapsulacji" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1809,7 +1817,7 @@ msgstr "Usuwanie..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "BÅ‚Ä…d" @@ -1852,23 +1860,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Serwer zewnÄ™trzny dla logów systemowych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Port zewnÄ™trznego serwera logów systemowych" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protokół zewnÄ™trznego serwera logów systemowych" @@ -1876,15 +1884,15 @@ msgstr "Protokół zewnÄ™trznego serwera logów systemowych" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1994,7 +2002,7 @@ msgstr "WymuÅ›" msgid "Force 40MHz mode" msgstr "WymuÅ› tryb 40MHz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "WymuÅ› CCMP (AES)" @@ -2003,11 +2011,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "WymuÅ› uruchomienie serwera DHCP w tej sieci nawet gdy wykryto inny serwer." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "WymuÅ› TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "WymuÅ› TKIP i CCMP (AES)" @@ -2048,7 +2056,7 @@ msgid "Forwarding mode" msgstr "Tryb przekazywania" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Próg Fragmentacji" @@ -2110,7 +2118,7 @@ msgstr "Ustawienia podstawowe" msgid "Generate Config" msgstr "Wygeneruj konfiguracjÄ™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "Wygeneruj PMK lokalnie" @@ -2139,7 +2147,7 @@ msgstr "Globalne opcje sieciowe" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Przejdź do konfiguracji hasÅ‚a..." @@ -2188,9 +2196,9 @@ msgstr "" "Tutaj możesz skonfigurować podstawowe ustawienia twojego urzÄ…dzenia, np. " "nazwÄ™ hosta, strefÄ™ czasowÄ…." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ukryj <abbr title=\"Extended Service Set Identifier (NazwÄ™ sieci)\">ESSID</" @@ -2226,7 +2234,7 @@ msgstr "Zawartość znacznika Host-Uniq" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nazwa hosta" @@ -2448,7 +2456,7 @@ msgstr "IPv6-przez-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-przez-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Tożsamość" @@ -2563,7 +2571,7 @@ msgstr "Czas bezczynnoÅ›ci" msgid "Inbound:" msgstr "PrzychodzÄ…cy:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2618,7 +2626,7 @@ msgstr "PrzeglÄ…d Interfejsów" msgid "Interface is reconnecting..." msgstr "Ponowne Å‚Ä…czenie interfejsu..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Nazwa interfejsu" @@ -2658,7 +2666,7 @@ msgstr "Podano niewÅ‚aÅ›ciwy ID VLAN`u! Dozwolone sÄ… tylko unikalne ID." msgid "Invalid username and/or password! Please try again." msgstr "NiewÅ‚aÅ›ciwy login i/lub hasÅ‚o! Spróbuj ponownie." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Izoluj klientów" @@ -2675,7 +2683,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript jest wymagany!" @@ -2704,15 +2712,16 @@ msgstr "Log jÄ…dra" msgid "Kernel Version" msgstr "Wersja jÄ…dra" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Klucz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Klucz #%d" @@ -2755,7 +2764,7 @@ msgstr "LLC" msgid "Label" msgstr "Oznaczenie" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "JÄ™zyk" @@ -2843,7 +2852,7 @@ msgstr "" "Lista serwerów <abbr title=\"Domain Name System\">DNS</abbr> do których bÄ™dÄ… " "przekazywane zapytania" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2852,7 +2861,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2940,7 +2949,7 @@ msgid "Local Startup" msgstr "Lokalny autostart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Czas lokalny" @@ -2982,7 +2991,7 @@ msgstr "Zapytania lokalizujÄ…ce" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Poziom logowania" @@ -3024,8 +3033,8 @@ msgstr "MAC" msgid "MAC-Address" msgstr "Adres MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtr adresów MAC" @@ -3034,8 +3043,8 @@ msgstr "Filtr adresów MAC" msgid "MAC-Filter" msgstr "Filtr adresów MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Lista MAC" @@ -3087,7 +3096,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. OsiÄ…galna przepustowość danych (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3159,7 +3168,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "BrakujÄ…ce rozszerzenie protokoÅ‚u dla protokoÅ‚u %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3196,9 +3205,9 @@ msgstr "Zapytanie dotyczÄ…ce modemu nie powiodÅ‚o siÄ™" msgid "Modem init timeout" msgstr "Limit czasu inicjacji modemu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3261,7 +3270,7 @@ msgstr "PrzesuÅ„ w dół" msgid "Move up" msgstr "PrzesuÅ„ w górÄ™" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3285,7 +3294,7 @@ msgstr "Proxy NDP" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Lista serwerów NTP" @@ -3314,7 +3323,7 @@ msgstr "Maska sieci" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3388,7 +3397,7 @@ msgstr "Nie podano nazwy sieci" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nie ustawiono hasÅ‚a!" @@ -3437,7 +3446,7 @@ msgstr "Bez symboli wieloznacznych" msgid "None" msgstr "Brak" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normalny" @@ -3459,7 +3468,7 @@ msgstr "Nie podÅ‚Ä…czony" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Spostrzeżenie" @@ -3473,7 +3482,7 @@ msgstr "" "Liczba buforowanych wpisów DNS (max wynosi 10000, 0 oznacza brak pamiÄ™ci " "podrÄ™cznej)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3554,7 +3563,7 @@ msgstr "Wartość zmieniona" msgid "Option removed" msgstr "UsuniÄ™to wartość" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Opcjonalny" @@ -3665,7 +3674,7 @@ msgstr "Nadpisz TOS" msgid "Override TTL" msgstr "Nadpisz TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "Nadpisz domyÅ›lnÄ… nazwÄ™ interfejsu" @@ -3729,7 +3738,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "Kod PIN zostaÅ‚ odrzucony" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3782,7 +3791,7 @@ msgid "Part of zone %q" msgstr "Część strefy %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3793,11 +3802,11 @@ msgstr "HasÅ‚o" msgid "Password authentication" msgstr "Uwierzytelnianie hasÅ‚em" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "HasÅ‚o lub klucz prywatny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "WewnÄ™trzne hasÅ‚o klucza prywatnego" @@ -3809,27 +3818,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "Wklej lub przeciÄ…gnij plik klucza SSH…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Åšcieżka do certyfikatu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Åšcieżka do certyfikatu klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Åšcieżka do Klucza Prywatnego" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "Åšcieżka do wewnÄ™trznego certyfikatu CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "Åšcieżka do wewnÄ™trznego certyfikatu Klienta" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "Åšcieżka do wewnÄ™trznego klucza prywatnego " @@ -3907,6 +3916,14 @@ msgstr "ProszÄ™ wprowadź swój login i hasÅ‚o." msgid "Policy" msgstr "Zasada" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3956,8 +3973,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Zapobiegaj nasÅ‚uchiwaniu na tych interfejsach." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Zapobiega komunikacji miÄ™dzy klientem a klientem" @@ -3998,7 +4015,7 @@ msgstr "Protokół nowego interfejsu" msgid "Protocol support is not installed" msgstr "Wsparcie dla protokoÅ‚u nie jest zainstalowane" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "WÅ‚Ä…cz serwer NTP" @@ -4006,7 +4023,7 @@ msgstr "WÅ‚Ä…cz serwer NTP" msgid "Provide new network" msgstr "Utwórz nowÄ… sieć" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4021,10 +4038,10 @@ msgid "" "device, paste an OpenSSH compatible public key line or drag a <code>.pub</" "code> file into the input field." msgstr "" -"Klucze publiczne pozwalajÄ… na logowanie bez haseÅ‚ SSH z wyższymi zabezpieczeniami " -"w porównaniu do użycia zwykÅ‚ych haseÅ‚. Aby przesÅ‚ać nowy klucz do urzÄ…dzenia, " -"wklej klucz publiczny zgodny z OpenSSH lub przeciÄ…gnij plik <code>.pub</code> " -"do pola wejÅ›ciowego." +"Klucze publiczne pozwalajÄ… na logowanie bez haseÅ‚ SSH z wyższymi " +"zabezpieczeniami w porównaniu do użycia zwykÅ‚ych haseÅ‚. Aby przesÅ‚ać nowy " +"klucz do urzÄ…dzenia, wklej klucz publiczny zgodny z OpenSSH lub przeciÄ…gnij " +"plik <code>.pub</code> do pola wejÅ›ciowego." #: modules/luci-base/luasrc/model/cbi/admin_network/proto_static.lua:139 msgid "Public prefix routed to this device for distribution to clients." @@ -4047,11 +4064,11 @@ msgstr "" "Zapytaj o wszystkie dostÄ™pne serwery <abbr title=\"Domain Name System\">DNS</" "abbr> " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4059,8 +4076,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Próg RTS/CTS" @@ -4074,27 +4095,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Szybkość RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Port Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Sekret Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Serwer Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Port Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Sekret Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Serwer Radius-Authentication" @@ -4155,7 +4176,7 @@ msgstr "Ruch w czasie rzeczywistym" msgid "Realtime Wireless" msgstr "Wi-Fi w czasie rzeczywistym" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "Termin reasocjacji" @@ -4249,7 +4270,7 @@ msgstr "Zażądaj adresu IPv6" msgid "Request IPv6-prefix of length" msgstr "Zażądaj dÅ‚ugość prefiksu IPv6" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Wymagany" @@ -4272,10 +4293,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4525,7 +4546,7 @@ msgstr "" "WysyÅ‚aj żądania echa LCP w okreÅ›lonym przedziale czasowym, efektywne tylko " "wtedy gdy jest ustawiony próg bÅ‚edu LCP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Rozdziel klientów" @@ -4562,7 +4583,7 @@ msgstr "" "Ustaw wÅ‚aÅ›ciwoÅ›ci interfejsu, niezależnie od operatora Å‚Ä…cza (nie wpÅ‚ywa na " "programy operatora które ustanawiajÄ… poÅ‚Ä…czenie)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Ustawienia synchronizacji czasu" @@ -4587,7 +4608,7 @@ msgstr "Ilość poważnych bÅ‚edów (SES)" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Krótki WstÄ™p" @@ -4630,7 +4651,7 @@ msgstr "Rozmiar" msgid "Size of DNS query cache" msgstr "Rozmiar pamiÄ™ci podrÄ™cznej zapytaÅ„ DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4781,7 +4802,7 @@ msgstr "" "niedynamicznych konfiguracji interfejsu, gdzie obsÅ‚ugiwane sÄ… tylko hosty z " "odpowiednim dzierżawami." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "Station inactivity limit" @@ -4886,7 +4907,7 @@ msgid "System Properties" msgstr "WÅ‚aÅ›ciwoÅ›ci systemu" # WszÄ™dzie używane jest "loga" z maÅ‚ej litery. -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Rozmiar bufora loga systemu" @@ -5005,9 +5026,9 @@ msgstr "" "Nie można uzyskać dostÄ™pu do urzÄ…dzenia w ciÄ…gu %d sekund po zastosowaniu " "oczekujÄ…cych zmian, które spowodowaÅ‚y wycofanie konfiguracji ze wzglÄ™dów " "bezpieczeÅ„stwa. JeÅ›li jednak uważasz, że zmiany konfiguracji sÄ… poprawne, " -"kontynuuj, stosujÄ…c je mimo to. Możesz też odrzucić to ostrzeżenie i edytować " -"zmiany przed ponownym zastosowaniem lub odrzucić wszystkie oczekujÄ…ce zmiany, " -"aby zachować aktualnie dziaÅ‚ajÄ…cy stan konfiguracji." +"kontynuuj, stosujÄ…c je mimo to. Możesz też odrzucić to ostrzeżenie i " +"edytować zmiany przed ponownym zastosowaniem lub odrzucić wszystkie " +"oczekujÄ…ce zmiany, aby zachować aktualnie dziaÅ‚ajÄ…cy stan konfiguracji." #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/mount.lua:87 #: modules/luci-mod-system/luasrc/model/cbi/admin_system/fstab/swap.lua:41 @@ -5056,8 +5077,8 @@ msgid "" "The given SSH public key is invalid. Please supply proper public RSA or " "ECDSA keys." msgstr "" -"Podany klucz publiczny SSH jest nieprawidÅ‚owy. Podaj odpowiedni publiczny RSA " -"lub klucze ECDSA." +"Podany klucz publiczny SSH jest nieprawidÅ‚owy. Podaj odpowiedni publiczny " +"RSA lub klucze ECDSA." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/iface_add.lua:67 msgid "The given network name is not unique" @@ -5147,7 +5168,7 @@ msgstr "" "PrzesÅ‚any plik obrazu nie zawiera obsÅ‚ugiwanego formatu. Upewnij siÄ™, że " "wybraÅ‚eÅ› odpowiedni format obrazu dla danej platformy." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Motyw" @@ -5180,7 +5201,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5281,20 +5302,20 @@ msgstr "Poniższa strona przedstawia aktualnie aktywne poÅ‚Ä…czenia sieciowe." msgid "This section contains no values yet" msgstr "Ta sekcja nie zawiera jeszcze żadnych wartoÅ›ci" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synchronizacja czasu" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synchronizacja czasu nie jest jeszcze skonfigurowana." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Strefa czasowa" @@ -5336,7 +5357,7 @@ msgstr "Ruch" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "PrÄ™dkość transmisji" @@ -5645,11 +5666,11 @@ msgstr "" msgid "Used" msgstr "Użyte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Użyte gniazdo klucza" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5727,18 +5748,18 @@ msgstr "Zweryfikuj" msgid "Virtual dynamic interface" msgstr "Wirtualny interfejs dynamiczny" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Otwarty system WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Współdzielony klucz WEP" @@ -5746,8 +5767,8 @@ msgstr "Współdzielony klucz WEP" msgid "WEP passphrase" msgstr "HasÅ‚o WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Tryb WMM" @@ -5755,9 +5776,9 @@ msgstr "Tryb WMM" msgid "WPA passphrase" msgstr "HasÅ‚o WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5781,8 +5802,8 @@ msgstr "Oczekiwanie na zastosowanie konfiguracji… %ds" msgid "Waiting for device..." msgstr "Oczekiwanie na urzÄ…dzenie..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Ostrzeżenie" @@ -5792,7 +5813,7 @@ msgstr "" "Ostrzeżenie: IstniejÄ… niezapisane zmiany, które zostanÄ… utracone po ponownym " "uruchomieniu urzÄ…dzenia!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5879,7 +5900,7 @@ msgstr "Sieć bezprzewodowa jest wÅ‚Ä…czona" msgid "Write received DNS requests to syslog" msgstr "Zapisz otrzymane żądania DNS do syslog'a" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Zapisz log systemowy do pliku" @@ -5902,7 +5923,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5919,19 +5940,19 @@ msgstr "" "zaktualizuj go do wersji co najmniej 7 lub użyj innej przeglÄ…darki, takiej " "jak Firefox, Opera czy Safari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "Alogrytm kompresji ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "Strumienie kompresji ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "Ustawienia ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "Rozmiar ZRam" @@ -5946,7 +5967,7 @@ msgstr "dowolny" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5999,8 +6020,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "wyÅ‚Ä…cz" @@ -6104,7 +6125,7 @@ msgstr "klucz z 5 lub 13 znakami" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokalny plik <abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "minuty" @@ -6138,7 +6159,7 @@ msgstr "nieobecny" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "wyÅ‚Ä…czone" @@ -6146,7 +6167,7 @@ msgstr "wyÅ‚Ä…czone" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "wÅ‚Ä…czone" @@ -6190,8 +6211,8 @@ msgstr "" msgid "routed" msgstr "routowane" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6216,7 +6237,7 @@ msgstr "" msgid "tagged" msgstr "otagowane" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "jednostki czasu (TUs / 1.024 ms) [1000-65535]" diff --git a/modules/luci-base/po/pt-br/base.po b/modules/luci-base/po/pt-br/base.po index 36e5c7161d..f25284216e 100644 --- a/modules/luci-base/po/pt-br/base.po +++ b/modules/luci-base/po/pt-br/base.po @@ -57,16 +57,16 @@ msgstr "(nenhuma interface conectada)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor, escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -92,6 +92,10 @@ msgstr "" msgid "-- please select --" msgstr "-- por favor, selecione --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga 1 Minuto:" @@ -100,7 +104,7 @@ msgstr "Carga 1 Minuto:" msgid "15 Minute Load:" msgstr "Carga 15 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "Identificador hexadecimal de 4 caracteres" @@ -112,37 +116,37 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" "Identificador de 6 octetos como uma cadeia hexadecimal - sem dois pontos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r Fast Transition" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "Tempo de expiração máximo da consulta da Associação SA do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" "Tempo de expiração de tentativa de consulta da Associação SA do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "Proteção do Quadro de Gerenciamento do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "Estouro de tempo máximo do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "Estouro de tempo da nova tentativa do 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" @@ -165,7 +169,7 @@ msgstr "" "O servidor <abbr title=\"Sistema de Nomes de DomÃnios\">DNS</abbr> irá " "consultar na ordem do arquivo resolvfile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" @@ -330,7 +334,7 @@ msgid "Access Concentrator" msgstr "Concentrador de Acesso" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Ponto de Acceso (AP)" @@ -422,6 +426,10 @@ msgstr "Endereço para acessar a ponte por retransmissão local" msgid "Administration" msgstr "Administração" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -439,7 +447,7 @@ msgstr "" "Potência de Transmissão Agregada (<abbr title=\"Aggregate Transmit Power" "\">ACTATP</abbr>)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" @@ -473,14 +481,14 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Permitir, em modo AP, a desconexão de estações baseada na baixa qualidade " "das confirmações (ACK)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Permitir todos, exceto os listados" @@ -488,8 +496,8 @@ msgstr "Permitir todos, exceto os listados" msgid "Allow legacy 802.11b rates" msgstr "Permitir taxas legadas do 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Permitir somente os listados" @@ -616,7 +624,7 @@ msgstr "DomÃnios DNS anunciados" msgid "Announced DNS servers" msgstr "Servidores DNS anunciados" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "Identidade Anônima" @@ -692,7 +700,7 @@ msgstr "Associações" msgid "Auth Group" msgstr "Grupo de Autenticação" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autenticação" @@ -714,8 +722,8 @@ msgstr "Autorização Necessária" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Atualização Automática" @@ -1020,7 +1028,7 @@ msgstr "" "zona associada ou preencha o campo para criar uma nova zona associada a esta " "interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1028,7 +1036,7 @@ msgstr "" "Escolha a rede (s) que deseja anexar a este interface wireless ou preencha o " "<em> criar </em> campo para definir uma nova rede." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Cifra" @@ -1053,7 +1061,7 @@ msgstr "" "especificado. (NOTA: ESTE RECURSO É PARA PROFISSIONAIS!)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Cliente" @@ -1114,7 +1122,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuração Comum" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1219,11 +1227,11 @@ msgstr "Criar Interface" msgid "Create a bridge over multiple interfaces" msgstr "Criar uma ponte juntando múltiplas interfaces" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "CrÃtico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "NÃvel de Registro da Cron" @@ -1258,15 +1266,15 @@ msgstr "" "Se possÃvel, personaliza o comportamento dos <abbr title=\"Diodo Emissor de " "Luz\">LED</abbr>s." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1350,7 +1358,7 @@ msgstr "Estado da DSL" msgid "DSL line mode" msgstr "Modo de linha DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" "Intervalo <abbr title=\"Mensagem Indicativa de Envio de Tráfego/Delivery " @@ -1364,14 +1372,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "Taxa de Dados" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depurar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Padrão %d" @@ -1425,7 +1433,7 @@ msgstr "" msgid "Delete this network" msgstr "Apagar esta rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "Intervalo da Mensagem Indicativa de Envio de Tráfego" @@ -1498,7 +1506,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Desabilitar Cifragem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1516,11 +1524,11 @@ msgstr "Desabilitar esta rede" msgid "Disabled" msgstr "Desabilitado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Desabilitado (padrão)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "Desassociar quando tiver baixa confirmação de recebimento" @@ -1667,7 +1675,7 @@ msgstr "" msgid "EA-bits length" msgstr "Comprimento dos bits EA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Método EAP" @@ -1694,7 +1702,7 @@ msgstr "Editar esta interface" msgid "Edit this network" msgstr "Editar esta rede" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergência" @@ -1736,7 +1744,7 @@ msgstr "Ativar a negociação de IPv6 no enlace PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Ativar o encaminhamento de quadros jumbos (Jumbo Frames)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Ativar o cliente <abbr title=\"Network Time Protocol\">NTP</abbr>" @@ -1752,11 +1760,11 @@ msgstr "Ativar servidor TFTP" msgid "Enable VLAN functionality" msgstr "Ativar funcionalidade de VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Habilite o botão WPS. requer WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" "Habilitar contramedidas contra o ataque de reinstalação de chave (KRACK)" @@ -1806,7 +1814,7 @@ msgstr "" "Grupos da Internet/Internet Group Management Protocol\">IGMP</abbr> " "(Snooping) nesta ponte" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1825,7 +1833,7 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1856,7 +1864,7 @@ msgstr "Apagando..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erro" @@ -1899,23 +1907,23 @@ msgstr "" msgid "External" msgstr "Externo" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "Lista dos Detentor de Chave R0 Externa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "Lista dos Detentor de Chave R1 Externa" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de registros do sistema (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta do servidor externo de registro do sistema (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Protocolo do servidor externo de registro do sistema (syslog)" @@ -1923,17 +1931,17 @@ msgstr "Protocolo do servidor externo de registro do sistema (syslog)" msgid "Extra SSH command options" msgstr "Opções adicionais do comando SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" "<abbr title=\"Transição Rápida/Fast Transition\">FT</abbr> sobre <abbr " "title=\"Sistema DistribuÃdo/Distributed System\">DS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "<abbr title=\"Transição Rápida/Fast Transition\">FT</abbr> pelo ar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" "Protocolo de <abbr title=\"Transição Rápida/Fast Transition\">FT</abbr>" @@ -2049,7 +2057,7 @@ msgstr "Forçar" msgid "Force 40MHz mode" msgstr "Force o modo 40MHz" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forçar CCMP (AES)" @@ -2057,11 +2065,11 @@ msgstr "Forçar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forçar o DHCP nesta rede mesmo se outro servidor for detectado." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forçar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forçar TKIP e CCMP (AES)" @@ -2104,7 +2112,7 @@ msgid "Forwarding mode" msgstr "Modo de encaminhamento" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Limiar de Fragmentação" @@ -2168,7 +2176,7 @@ msgstr "Configurações Gerais" msgid "Generate Config" msgstr "Gerar Configuração" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" "Gerar a <abbr title=\"Chave mestre do emparelhamento/Pairwise Master Key" @@ -2197,7 +2205,7 @@ msgstr "Opções de rede globais" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir para a configuração de senha..." @@ -2250,9 +2258,9 @@ msgstr "" "Aqui você pode configurar os aspectos básicos do seu equipamento, como o " "nome do equipamento ou o fuso horário." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos" @@ -2290,7 +2298,7 @@ msgstr "Conteúdo da etiqueta única do equipamento" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Nome do equipamento" @@ -2515,7 +2523,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identidade PEAP" @@ -2635,7 +2643,7 @@ msgstr "Tempo limite de inatividade" msgid "Inbound:" msgstr "Entrando:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informação" @@ -2689,7 +2697,7 @@ msgstr "Visão Geral da Interface" msgid "Interface is reconnecting..." msgstr "A interface está reconectando..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Nome da Interface" @@ -2733,7 +2741,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Usuário e/ou senha inválida! Por favor, tente novamente." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Isolar Clientes" @@ -2749,7 +2757,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2778,15 +2786,16 @@ msgstr "Registro do Kernel" msgid "Kernel Version" msgstr "Versão do Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Chave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Chave #%d" @@ -2829,7 +2838,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2918,7 +2927,7 @@ msgstr "" "Lista dos servidores <abbr title=\"Domain Name System\">DNS</abbr> para " "encaminhar as requisições" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2932,7 +2941,7 @@ msgstr "" "um endereço MAC de destino ao solicitar a chave PMK-R1 a partir do R0KH que " "o STA usado durante a Associação de DomÃnio de Mobilidade Inicial." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -3029,7 +3038,7 @@ msgid "Local Startup" msgstr "Iniciação Local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora Local" @@ -3072,7 +3081,7 @@ msgstr "Localizar consultas" msgid "Locked to channel %s used by: %s" msgstr "Travado no canal %s usado por: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "NÃvel de detalhamento de saÃda dos registros" @@ -3116,8 +3125,8 @@ msgstr "MAC" msgid "MAC-Address" msgstr "Endereço MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtro de Endereço MAC" @@ -3126,8 +3135,8 @@ msgstr "Filtro de Endereço MAC" msgid "MAC-Filter" msgstr "Filtro de MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Lista de MAC" @@ -3183,7 +3192,7 @@ msgstr "" "Taxa de Dados AtingÃvel Máxima (<abbr title=\"Maximum Attainable Data Rate" "\">ATTNDR</abbr>)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3257,7 +3266,7 @@ msgstr "Porta de origem do espelho" msgid "Missing protocol extension for proto %q" msgstr "Extensão para o protocolo %q está ausente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "DomÃnio da Mobilidade" @@ -3294,9 +3303,9 @@ msgstr "A consulta das informações do modem falhou" msgid "Modem init timeout" msgstr "Estouro de tempo da iniciação do modem" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3359,7 +3368,7 @@ msgstr "Mover para baixo" msgid "Move up" msgstr "Mover para cima" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3383,7 +3392,7 @@ msgstr "Proxy NDP" msgid "NT Domain" msgstr "DomÃnio NT" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidatos a servidor NTP" @@ -3412,7 +3421,7 @@ msgstr "Máscara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3486,7 +3495,7 @@ msgstr "Nenhum nome de rede foi especificado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nenhuma senha definida!" @@ -3539,7 +3548,7 @@ msgstr "Sem caracter curinga" msgid "None" msgstr "Nenhum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3561,7 +3570,7 @@ msgstr "Não conectado" msgid "Note: interface name length" msgstr "Aviso: tamanho do nome da interface" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Aviso" @@ -3573,7 +3582,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "Número de entradas DNS em cache (máximo é 10000, 0 desabilita o cache)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3656,7 +3665,7 @@ msgstr "Opção alterada" msgid "Option removed" msgstr "Opção removida" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Opcional" @@ -3778,7 +3787,7 @@ msgstr "Sobrescrever o TOS" msgid "Override TTL" msgstr "Sobrescrever o TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "Sobrescrever o nome da nova interface" @@ -3843,7 +3852,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "Código PIN rejeitado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3896,7 +3905,7 @@ msgid "Part of zone %q" msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3907,11 +3916,11 @@ msgstr "Senha" msgid "Password authentication" msgstr "Autenticação por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Senha da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "Senha da Chave Privada interna" @@ -3923,27 +3932,27 @@ msgstr "Senha2" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Caminho para o Certificado da AC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado do Cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Caminho para a Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "Caminho para o certificado AC interno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "Caminho para o Certificado do Cliente interno" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "Caminho para a Chave Privada interna" @@ -4021,6 +4030,14 @@ msgstr "Entre com o seu usuário e senha." msgid "Policy" msgstr "PolÃtica" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -4071,8 +4088,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Evite escutar nestas Interfaces." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Impede a comunicação de cliente para cliente" @@ -4113,7 +4130,7 @@ msgstr "Protocolo para a nova interface" msgid "Protocol support is not installed" msgstr "O suporte ao protocolo não está instalado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Fornecer serviço <abbr title=\"Network Time Protocol\">NTP</abbr>" @@ -4121,7 +4138,7 @@ msgstr "Fornecer serviço <abbr title=\"Network Time Protocol\">NTP</abbr>" msgid "Provide new network" msgstr "Prover nova rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Ad-Hoc falso (ahdemo)" @@ -4160,11 +4177,11 @@ msgstr "" "Consulte todos os servidores <abbr title=\\\"Sistema de Nomes de DomÃnios\\" "\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "Validade da Chave R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "Detentor da Chave R1" @@ -4172,8 +4189,12 @@ msgstr "Detentor da Chave R1" msgid "RFC3947 NAT-T mode" msgstr "Modo NAT-T (RFC3947)" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Limiar RTS/CTS" @@ -4187,27 +4208,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Taxa de RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Porta de contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Segredo da contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Servidor da contabilidade do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Porta de autenticação do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Segredo da autenticação do RADIUS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Servidor da autenticação do RADIUS" @@ -4272,7 +4293,7 @@ msgstr "Tráfego em Tempo Real" msgid "Realtime Wireless" msgstr "Rede sem fio em Tempo Real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "Limite para Reassociação" @@ -4366,7 +4387,7 @@ msgstr "Solicita endereço IPv6" msgid "Request IPv6-prefix of length" msgstr "Solicita prefixo IPv6 de tamanho" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Necessário" @@ -4393,11 +4414,11 @@ msgstr "" "usar dentro do túnel. Normalmente é o endereço IP do parceiro no túnel e as " "redes que o parceiro roteia através do túnel." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" -msgstr "Obrigatório. Chave Pública do parceiro." +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" +msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4647,7 +4668,7 @@ msgstr "" "Enviar requisições de eco do LCP no dado intervalo em segundos. Somente " "efetivo em conjunto com o limite de falhas" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Isolar Clientes" @@ -4685,7 +4706,7 @@ msgstr "" "enlace (Se definido, eventos de detecção da portadora não irão gerar eventos " "do hotplug)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Configurar a Sincronização do Horário" @@ -4713,7 +4734,7 @@ msgstr "" msgid "Short GI" msgstr "Intervalo de guarda curto" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Preâmbulo curto" @@ -4756,7 +4777,7 @@ msgstr "Tamanho" msgid "Size of DNS query cache" msgstr "Tamanho do cache de consultas DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4912,7 +4933,7 @@ msgstr "" "configurações não dinâmicas onde um computador com a alocação correspondente " "é provido." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -5018,7 +5039,7 @@ msgstr "Registro do Sistema" msgid "System Properties" msgstr "Propriedades do Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Tamanho do buffer de registro do sistema" @@ -5280,7 +5301,7 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que você " "escolheu uma imagem para a sua plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5313,7 +5334,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5416,20 +5437,20 @@ msgstr "Esta página fornece informações sobre as conexões de rede ativas." msgid "This section contains no values yet" msgstr "Esta seção ainda não contêm valores" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronização de horário" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "A sincronização do horário ainda não está configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso Horário" @@ -5472,7 +5493,7 @@ msgstr "Tráfego" msgid "Transfer" msgstr "Transferências" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Taxa de Transmissão" @@ -5786,11 +5807,11 @@ msgstr "" msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Posição da Chave Usada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5870,18 +5891,18 @@ msgstr "Verificar" msgid "Virtual dynamic interface" msgstr "Interface virtual dinâmica" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP Sistema Aberto" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP Chave Compartilhada" @@ -5889,8 +5910,8 @@ msgstr "WEP Chave Compartilhada" msgid "WEP passphrase" msgstr "WEP Senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Modo WMM" @@ -5898,9 +5919,9 @@ msgstr "Modo WMM" msgid "WPA passphrase" msgstr "WPA Senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5924,8 +5945,8 @@ msgstr "Esperando que a configuração seja aplicada...%ds" msgid "Waiting for device..." msgstr "Esperando pelo dispositivo..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Atenção" @@ -5933,7 +5954,7 @@ msgstr "Atenção" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "Atenção: Existem mudanças não salvas que serão perdidas ao reiniciar!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -6020,7 +6041,7 @@ msgstr "A rede sem fio está habilitada" msgid "Write received DNS requests to syslog" msgstr "Escreva as requisições DNS para o servidor de registro (syslog)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Escrever registro do sistema (log) no arquivo" @@ -6044,7 +6065,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -6061,19 +6082,19 @@ msgstr "" "Por favor, atualiza para, ao menos, a versão 7 ou use outro navegador como o " "Firefox, Opera ou Safari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -6088,7 +6109,7 @@ msgstr "qualquer" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6141,8 +6162,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "desativar" @@ -6247,7 +6268,7 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" "arquivo local de <abbr title=\"Sistema de Nomes de DomÃnios\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "minutos" @@ -6281,7 +6302,7 @@ msgstr "não presente" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "desligado" @@ -6289,7 +6310,7 @@ msgstr "desligado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ligado" @@ -6333,8 +6354,8 @@ msgstr "modo retransmissor" msgid "routed" msgstr "roteado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6359,7 +6380,7 @@ msgstr "sem estado + com estado" msgid "tagged" msgstr "etiquetado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "unidades de tempo (TUs / 1.024 ms) [1000-65535]" diff --git a/modules/luci-base/po/pt/base.po b/modules/luci-base/po/pt/base.po index 5455145520..33fd95c879 100644 --- a/modules/luci-base/po/pt/base.po +++ b/modules/luci-base/po/pt/base.po @@ -57,16 +57,16 @@ msgstr "(não existem interfaces ligadas)" msgid "-- Additional Field --" msgstr "-- Campo Adicional --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Por favor escolha --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- personalizado --" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Carga de 1 Minuto:" @@ -98,7 +102,7 @@ msgstr "Carga de 1 Minuto:" msgid "15 Minute Load:" msgstr "Carga de 15 minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Carga 5 Minutos:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto Básico de Serviços\">BSSID</abbr>" @@ -161,7 +165,7 @@ msgstr "" "Os servidores de <abbr title=\"Servidor de Nomes de DomÃnio\">DNS</abbr> " "serão consultados pela ordem no ficheiro resolv" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Identificador de Conjunto de Serviços Estendidos\">ESSID</abbr>" @@ -314,7 +318,7 @@ msgid "Access Concentrator" msgstr "Concentrador de Acesso" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Access Point (AP)" @@ -408,6 +412,10 @@ msgstr "" msgid "Administration" msgstr "Administração" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -423,7 +431,7 @@ msgstr "Definições Avançadas" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" @@ -455,12 +463,12 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permitir autenticação <abbr title=\"Shell Seguro\">SSH</abbr> por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Permitir todos, excepto os listados" @@ -468,8 +476,8 @@ msgstr "Permitir todos, excepto os listados" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Permitir somente os listados" @@ -591,7 +599,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -663,7 +671,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autenticação" @@ -685,8 +693,8 @@ msgstr "Autorização Requerida" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Actualização Automática" @@ -983,7 +991,7 @@ msgstr "" "coloque em branco o campo <em>criar</em> para definir a nova zona e ligar-" "lhe a interface." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -991,7 +999,7 @@ msgstr "" "Escolha a rede(s) à (s) qual(is) deseja ligar esta interface wireless ou " "preencha o campo <em>criar</em> para definir a nova rede." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Cifra" @@ -1014,7 +1022,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Cliente" @@ -1074,7 +1082,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configuração comum" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1170,11 +1178,11 @@ msgstr "Criar interface" msgid "Create a bridge over multiple interfaces" msgstr "Criar uma bridge entre múltiplas interfaces " -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critico" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "NÃvel de Log do Cron" @@ -1207,15 +1215,15 @@ msgstr "" "Customiza o comportamento dos <abbr title=\"Diodo Emissor de Luz\">LED</" "abbr>s, se possÃvel." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1299,7 +1307,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1311,14 +1319,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Depurar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1372,7 +1380,7 @@ msgstr "" msgid "Delete this network" msgstr "Apagar esta rede" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1444,7 +1452,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1462,11 +1470,11 @@ msgstr "" msgid "Disabled" msgstr "Desativado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1607,7 +1615,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Metodo-EAP" @@ -1632,7 +1640,7 @@ msgstr "Editar esta interface" msgid "Edit this network" msgstr "Editar esta rede" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Emergência" @@ -1671,7 +1679,7 @@ msgstr "Ativar a negociação IPv6 no link PPP" msgid "Enable Jumbo Frame passthrough" msgstr "Ativar a passagem de Jumbo Frames" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Ativar o cliente NTP" @@ -1687,11 +1695,11 @@ msgstr "Ativar o servidor TFTP" msgid "Enable VLAN functionality" msgstr "Ativar a funcionalidade VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1737,7 +1745,7 @@ msgstr "Ativado" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1754,7 +1762,7 @@ msgstr "Modo de encapsulamento" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1785,7 +1793,7 @@ msgstr "A apagar..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Erro" @@ -1829,23 +1837,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Servidor externo de logs de sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Porta do Servidor externo de logs de sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1853,15 +1861,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1971,7 +1979,7 @@ msgstr "Forçar" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forçar CCMP (AES)" @@ -1979,11 +1987,11 @@ msgstr "Forçar CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Forçar DHCP nesta rede mesmo se outro servidor for detectado." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forçar TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forçar TKIP e CCMP (AES)" @@ -2024,7 +2032,7 @@ msgid "Forwarding mode" msgstr "Modo de encaminhamento" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Margem de Fragmentação" @@ -2086,7 +2094,7 @@ msgstr "Configuração Geral" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2114,7 +2122,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Ir para a configuração da password" @@ -2163,9 +2171,9 @@ msgstr "" "Aqui pode configurar os aspectos básicos do seu equipamento, como o nome do " "host ou o fuso horário." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Ocultar <abbr title=\"Identificador de Conjunto de Serviços Estendidos" @@ -2202,7 +2210,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Hostname" @@ -2423,7 +2431,7 @@ msgstr "IPv6-sobre-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-sobre-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identidade" @@ -2535,7 +2543,7 @@ msgstr "Tempo de inatividade" msgid "Inbound:" msgstr "Entrada:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2589,7 +2597,7 @@ msgstr "Visão Geral da Interface" msgid "Interface is reconnecting..." msgstr "A interface está a religar..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2630,7 +2638,7 @@ msgstr "O ID de VLAN fornecido é inválido! Só os IDs únicos são permitidos. msgid "Invalid username and/or password! Please try again." msgstr "Username inválido e/ou a password! Por favor, tente novamente." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2647,7 +2655,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "É necessário JavaScript!" @@ -2676,15 +2684,16 @@ msgstr "Registo do Kernel" msgid "Kernel Version" msgstr "Versão do Kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Chave" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Chave #%d" @@ -2727,7 +2736,7 @@ msgstr "LLC" msgid "Label" msgstr "Etiqueta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Idioma" @@ -2814,7 +2823,7 @@ msgstr "" "Lista de servidores <abbr title=\"Sistema Nomes de DomÃnio\">DNS</abbr> para " "onde encaminhar os pedidos" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2823,7 +2832,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2911,7 +2920,7 @@ msgid "Local Startup" msgstr "Arranque Local" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Hora Local" @@ -2952,7 +2961,7 @@ msgstr "Localizar consultas" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "NÃvel de output do log" @@ -2994,8 +3003,8 @@ msgstr "" msgid "MAC-Address" msgstr "Endereço-MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filtro de Endereço-MAC" @@ -3004,8 +3013,8 @@ msgstr "Filtro de Endereço-MAC" msgid "MAC-Filter" msgstr "Filtro-MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Lista-MAC" @@ -3055,7 +3064,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3127,7 +3136,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "Falta a extensão de protocolo para o protocolo %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3164,9 +3173,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3229,7 +3238,7 @@ msgstr "Subir" msgid "Move up" msgstr "Descer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3253,7 +3262,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Candidatos a servidor NTP" @@ -3282,7 +3291,7 @@ msgstr "Mascara de rede" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3356,7 +3365,7 @@ msgstr "Nome de rede não especificado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Sem password definida!" @@ -3405,7 +3414,7 @@ msgstr "" msgid "None" msgstr "Nenhum" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3427,7 +3436,7 @@ msgstr "Não ligado" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Reparo" @@ -3439,7 +3448,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3521,7 +3530,7 @@ msgstr "Opção alterada" msgid "Option removed" msgstr "Opção removida" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3628,7 +3637,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3690,7 +3699,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3743,7 +3752,7 @@ msgid "Part of zone %q" msgstr "Parte da zona %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3754,11 +3763,11 @@ msgstr "Senha" msgid "Password authentication" msgstr "Autenticação por senha" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Senha da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3770,27 +3779,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Directorio do Certificado CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Caminho para o Certificado de Cliente" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Caminho da Chave Privada" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3868,6 +3877,14 @@ msgstr "Insira o seu username e password." msgid "Policy" msgstr "PolÃtica" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Porta" @@ -3915,8 +3932,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Impede a comunicação cliente-a-cliente" @@ -3957,7 +3974,7 @@ msgstr "Protocolo da nova interface" msgid "Protocol support is not installed" msgstr "O protocolo suportado não está instalado" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3965,7 +3982,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -4000,11 +4017,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -4012,8 +4029,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -4027,27 +4048,27 @@ msgstr "RX" msgid "RX Rate" msgstr "Taxa RX" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Porta-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Segredo-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Servidor-Conta-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Porta-Autenticação-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Segredo-Autenticação-Radius" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Servidor-Autenticação-Radius" @@ -4105,7 +4126,7 @@ msgstr "Tráfego em Tempo Real" msgid "Realtime Wireless" msgstr "Wireless em Tempo Real" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4199,7 +4220,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4222,10 +4243,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4468,7 +4489,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Isolar Clientes" @@ -4503,7 +4524,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurar Sincronização Horária" @@ -4528,7 +4549,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4571,7 +4592,7 @@ msgstr "Tamanho" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4712,7 +4733,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4816,7 +4837,7 @@ msgstr "Registo do Sistema" msgid "System Properties" msgstr "Propriedades do Sistema" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -5062,7 +5083,7 @@ msgstr "" "A imagem carregada não contém um formato suportado. Confirme que escolhe uma " "imagem genérica para a sua plataforma." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -5095,7 +5116,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5183,20 +5204,20 @@ msgstr "Esta página fornece informações sobre as ligações de rede ativas." msgid "This section contains no values yet" msgstr "Esta secção ainda não contêm valores" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Sincronização Horária" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "A sincronização horária ainda não está configurada." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fuso Horário" @@ -5238,7 +5259,7 @@ msgstr "Tráfego" msgid "Transfer" msgstr "Transferências" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Taxa de Transmissão" @@ -5538,11 +5559,11 @@ msgstr "" msgid "Used" msgstr "Usado" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5620,18 +5641,18 @@ msgstr "Verificar" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Sistema Aberto WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Chave partilhada WEP" @@ -5639,8 +5660,8 @@ msgstr "Chave partilhada WEP" msgid "WEP passphrase" msgstr "Palavra-Passe WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Modo WMM" @@ -5648,9 +5669,9 @@ msgstr "Modo WMM" msgid "WPA passphrase" msgstr "Palavra-Passe WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5674,8 +5695,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Aviso" @@ -5683,7 +5704,7 @@ msgstr "Aviso" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5770,7 +5791,7 @@ msgstr "A rede wireless está ativada" msgid "Write received DNS requests to syslog" msgstr "Escrever os pedidos de DNS para o syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5794,7 +5815,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5808,19 +5829,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5835,7 +5856,7 @@ msgstr "qualquer" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5888,8 +5909,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "desativar" @@ -5994,7 +6015,7 @@ msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" "Ficheiro local de <abbr title=\"Sistema de Nomes de DomÃnios\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -6027,7 +6048,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "desligado" @@ -6035,7 +6056,7 @@ msgstr "desligado" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "ligado" @@ -6079,8 +6100,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6105,7 +6126,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/ro/base.po b/modules/luci-base/po/ro/base.po index 618428c36d..4dbc14a749 100644 --- a/modules/luci-base/po/ro/base.po +++ b/modules/luci-base/po/ro/base.po @@ -56,16 +56,16 @@ msgstr "(nici o interfata atasata)" msgid "-- Additional Field --" msgstr "-- Camp suplimentar --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Te rog sa alegi --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- particularizat --" @@ -89,6 +89,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Incarcarea in ultimul minut" @@ -97,7 +101,7 @@ msgstr "Incarcarea in ultimul minut" msgid "15 Minute Load:" msgstr "Incarcarea in ultimele 15 minute" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -109,35 +113,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Incarcarea in ultimele 5 minute" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -157,7 +161,7 @@ msgstr "" "<abbr title=\"Domain Name System\">DNS</abbr> serverul va interoga in " "vederea procesarii fisierului" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -305,7 +309,7 @@ msgid "Access Concentrator" msgstr "Concentrator de Access " #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Punct de Acces" @@ -395,6 +399,10 @@ msgstr "Adresa de acces punte locala repetor" msgid "Administration" msgstr "Administrare" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -410,7 +418,7 @@ msgstr "Setari avansate" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Alerta" @@ -442,12 +450,12 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "Permite autentificarea prin parola a <abbr title=\"Secure Shell\">SSH</abbr> " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Permite toate cu exceptia celor listate" @@ -455,8 +463,8 @@ msgstr "Permite toate cu exceptia celor listate" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Permite doar cele listate" @@ -577,7 +585,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -649,7 +657,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autentificare" @@ -671,8 +679,8 @@ msgstr "Necesita Autorizare" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Reimprospatare automata" @@ -965,13 +973,13 @@ msgstr "" "<em>nespecificat</em> pentru a sterge interfata sau golire <em>creaza</em> " "camp ce defineste o zona noua asociata interfetei." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -992,7 +1000,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1050,7 +1058,7 @@ msgstr "" msgid "Common Configuration" msgstr "Configurarea obisnuita" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1146,11 +1154,11 @@ msgstr "Creaza interfata" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Critic" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1181,15 +1189,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1273,7 +1281,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1285,14 +1293,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1343,7 +1351,7 @@ msgstr "" msgid "Delete this network" msgstr "Sterge aceasta retea" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1415,7 +1423,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1433,11 +1441,11 @@ msgstr "" msgid "Disabled" msgstr "Dezactivat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1563,7 +1571,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1588,7 +1596,7 @@ msgstr "Editeaza aceasta interfata" msgid "Edit this network" msgstr "Editeaza aceasta retea" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Urgenta" @@ -1627,7 +1635,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1643,11 +1651,11 @@ msgstr "Activeaza serverul TFTP" msgid "Enable VLAN functionality" msgstr "Activeaza VLAN-urile" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1693,7 +1701,7 @@ msgstr "Activat" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1710,7 +1718,7 @@ msgstr "Modul de incapsulare" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1741,7 +1749,7 @@ msgstr "Stergere..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Eroare" @@ -1782,23 +1790,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Server de log-uri extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Portul serverului de log-uri extern" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1806,15 +1814,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1924,7 +1932,7 @@ msgstr "Forteaza" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Forteaza CCMP (AES)" @@ -1933,11 +1941,11 @@ msgid "Force DHCP on this network even if another server is detected." msgstr "" "Forteaza facilitatea DHCP in aceasta retea chiar daca alt server DHCP exista." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Forteaza TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Forteaza TKIP si CCMP (AES)" @@ -1978,7 +1986,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2040,7 +2048,7 @@ msgstr "Configurare generala" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2067,7 +2075,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2116,9 +2124,9 @@ msgstr "" "Aici poti configura aspectele de baza ale dispozitivului cum ar fi numele " "sau fusul orar." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Ascunde <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2152,7 +2160,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Numele de host" @@ -2373,7 +2381,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identitate" @@ -2479,7 +2487,7 @@ msgstr "" msgid "Inbound:" msgstr "Intrare:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Informatii" @@ -2533,7 +2541,7 @@ msgstr "Prezentare interfata" msgid "Interface is reconnecting..." msgstr "Interfata se reconecteaza.." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2573,7 +2581,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Utilizator si/sau parola invalide! Incearcati din nou." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2590,7 +2598,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Ai nevoie de JavaScript !" @@ -2619,15 +2627,16 @@ msgstr "Log-ul kernelului" msgid "Kernel Version" msgstr "Versiunea de kernel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2670,7 +2679,7 @@ msgstr "" msgid "Label" msgstr "Eticheta" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Limba" @@ -2755,7 +2764,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2764,7 +2773,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2851,7 +2860,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Ora locala" @@ -2887,7 +2896,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2929,8 +2938,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "" @@ -2939,8 +2948,8 @@ msgstr "" msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -2990,7 +2999,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3062,7 +3071,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3099,9 +3108,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3162,7 +3171,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3186,7 +3195,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3215,7 +3224,7 @@ msgstr "Netmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3289,7 +3298,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Nici o parola setata !" @@ -3338,7 +3347,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3360,7 +3369,7 @@ msgstr "Nu este conectat" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Notificare" @@ -3372,7 +3381,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3448,7 +3457,7 @@ msgstr "Optiunea schimbata" msgid "Option removed" msgstr "Optiunea eliminata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3555,7 +3564,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3617,7 +3626,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3670,7 +3679,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3681,11 +3690,11 @@ msgstr "Parola" msgid "Password authentication" msgstr "Autentificarea cu parola" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Parola cheii private" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3697,27 +3706,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Calea catre certificatul CA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Calea catre cheia privata" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3795,6 +3804,14 @@ msgstr "Introdu utilizatorul si parola." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3842,8 +3859,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3884,7 +3901,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3892,7 +3909,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3927,11 +3944,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3939,8 +3956,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3954,27 +3975,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4030,7 +4051,7 @@ msgstr "Traficul in timp real" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4124,7 +4145,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4147,10 +4168,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4390,7 +4411,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4425,7 +4446,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "Configurare sincronizare timp" @@ -4450,7 +4471,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4493,7 +4514,7 @@ msgstr "Marime" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4634,7 +4655,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4738,7 +4759,7 @@ msgstr "Log de sistem" msgid "System Properties" msgstr "Proprietati sistem" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4951,7 +4972,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4982,7 +5003,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5065,20 +5086,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Fusul orar" @@ -5117,7 +5138,7 @@ msgstr "Trafic" msgid "Transfer" msgstr "Transfer" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Rata de transmitere" @@ -5417,11 +5438,11 @@ msgstr "" msgid "Used" msgstr "Folosit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "Slot de cheie folosit" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5499,18 +5520,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Sistem deschis WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Sistem de cheie impartasita WEP" @@ -5518,8 +5539,8 @@ msgstr "Sistem de cheie impartasita WEP" msgid "WEP passphrase" msgstr "Parola WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Mod WMM" @@ -5527,9 +5548,9 @@ msgstr "Mod WMM" msgid "WPA passphrase" msgstr "Parola WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5553,8 +5574,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Avertizare" @@ -5562,7 +5583,7 @@ msgstr "Avertizare" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5649,7 +5670,7 @@ msgstr "Reteaua wireless este activata" msgid "Write received DNS requests to syslog" msgstr "Scrie cererile DNS primite in syslog" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5668,7 +5689,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5680,19 +5701,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5707,7 +5728,7 @@ msgstr "oricare" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5760,8 +5781,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "dezactiveaza" @@ -5863,7 +5884,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5896,7 +5917,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5904,7 +5925,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5948,8 +5969,8 @@ msgstr "" msgid "routed" msgstr "rutat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5974,7 +5995,7 @@ msgstr "" msgid "tagged" msgstr "etichetat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/ru/base.po b/modules/luci-base/po/ru/base.po index c390fc78a9..0c93de7b61 100644 --- a/modules/luci-base/po/ru/base.po +++ b/modules/luci-base/po/ru/base.po @@ -59,16 +59,16 @@ msgstr "(нет ÑвÑзанных интерфейÑов)" msgid "-- Additional Field --" msgstr "-- Дополнительно --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Сделайте выбор --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- пользовательÑкий --" @@ -92,6 +92,10 @@ msgstr "-- проверка по uuid --" msgid "-- please select --" msgstr "-- Ñделайте выбор --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Загрузка за 1 минуту:" @@ -100,7 +104,7 @@ msgstr "Загрузка за 1 минуту:" msgid "15 Minute Load:" msgstr "Загрузка за 15 минут:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "4-Ñ… значный шеÑтнадцатеричный ID" @@ -112,35 +116,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "Загрузка за 5 минут:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "6-октетный идентификатор в виде шеÑтнадцатеричной Ñтроки без двоеточий" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r БыÑтрый Роуминг" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w Association SA Query макÑимальное Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð° Association SA Query" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "802.11w Management Frame Protection" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "802.11w макÑимальное Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "802.11w Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€Ð°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Идентификатор Ðабора Базовых СервиÑов\">BSSID</abbr>" @@ -160,7 +164,7 @@ msgstr "" "<abbr title=\"СиÑтема доменных имен\">DNS</abbr> Ñервера будут опрошены в " "порÑдке, определенном в resolvfile файле" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"РаÑширенный идентификатор обÑлуживаниÑ\">ESSID</abbr>" @@ -313,7 +317,7 @@ msgid "Access Concentrator" msgstr "Концентратор доÑтупа" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Точка доÑтупа" @@ -406,6 +410,10 @@ msgstr "ÐÐ´Ñ€ÐµÑ Ð´Ð»Ñ Ð´Ð¾Ñтупа к локальному моÑту-ре msgid "Administration" msgstr "Управление" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -421,7 +429,7 @@ msgstr "Дополнительные наÑтройки" msgid "Aggregate Transmit Power(ACTATP)" msgstr "Aggregate Transmit Power (ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Тревога" @@ -455,14 +463,14 @@ msgstr "" "Разрешить <abbr title=\"Secure Shell\">SSH</abbr> аутентификацию Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ " "паролÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Разрешить режиму AP отключение абонентов на оÑновании низкого ÑƒÑ€Ð¾Ð²Ð½Ñ " "Ð¿Ð¾Ð´Ñ‚Ð²ÐµÑ€Ð¶Ð´ÐµÐ½Ð¸Ñ (Acknowledge) уÑпешноÑти Ð¿Ð¾Ð»ÑƒÑ‡ÐµÐ½Ð¸Ñ TCP-Ñегментов" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Разрешить вÑе, кроме перечиÑленных" @@ -470,8 +478,8 @@ msgstr "Разрешить вÑе, кроме перечиÑленных" msgid "Allow legacy 802.11b rates" msgstr "Разрешить иÑпользование Ñтандарта 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Разрешить только перечиÑленные" @@ -600,7 +608,7 @@ msgstr "ОбъÑвить DNS домены" msgid "Announced DNS servers" msgstr "ОбъÑвить DNS Ñервера" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "ÐÐ½Ð¾Ð½Ð¸Ð¼Ð½Ð°Ñ Ð¸Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ" @@ -675,7 +683,7 @@ msgstr "ÐÑÑоциации" msgid "Auth Group" msgstr "Группа аутентификации" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "ÐутентификациÑ" @@ -697,8 +705,8 @@ msgstr "Выполните аутентификацию" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Ðвтообновление" @@ -1008,7 +1016,7 @@ msgstr "" "заполните поле <em>'Ñоздать'</em>, чтобы определить новую зону и прикрепить " "к ней Ñтот интерфейÑ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1017,7 +1025,7 @@ msgstr "" "беÑпроводной Ñети или заполните поле <em>Ñоздать</em>, чтобы Ñоздать новый " "интерфейÑ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Ðлгоритм шифрованиÑ" @@ -1042,7 +1050,7 @@ msgstr "" "раздела (Ð’ÐИМÐÐИЕ: ДÐÐÐЫЙ ФУÐКЦИОÐÐЛ ТОЛЬКО ДЛЯ ОПЫТÐЫХ ПОЛЬЗОВÐТЕЛЕЙ)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Клиент" @@ -1102,7 +1110,7 @@ msgstr "Комментарий" msgid "Common Configuration" msgstr "Общие наÑтройки" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1205,11 +1213,11 @@ msgstr "Создать интерфейÑ" msgid "Create a bridge over multiple interfaces" msgstr "Создать моÑÑ‚ над неÑколькими интерфейÑами" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "КритичеÑÐºÐ°Ñ ÑитуациÑ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "ЗапиÑÑŒ Ñобытий cron" @@ -1244,15 +1252,15 @@ msgstr "" "ÐаÑтройка Ð¿Ð¾Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ñветодиодной индикации <abbr title=\"Светодиод\">LED</" "abbr> уÑтройÑтва, еÑли Ñто возможно." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "DAE-Клиент" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "DAE-Порт" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "DAE-Секрет" @@ -1336,7 +1344,7 @@ msgstr "СоÑтоÑние DSL" msgid "DSL line mode" msgstr "DSL линейный режим" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "Интервал DTIM" @@ -1348,14 +1356,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "СкороÑÑ‚ÑŒ передачи данных" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Отладка" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "По умолчанию %d" @@ -1409,7 +1417,7 @@ msgstr "Удалить ключ" msgid "Delete this network" msgstr "Удалить Ñту Ñеть" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "Интервал Ñообщений, регламентирующий доÑтавку трафика" @@ -1481,7 +1489,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Отключить шифрование" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "Отключить отÑлеживание неактивноÑти клиентов" @@ -1499,11 +1507,11 @@ msgstr "Отключить данную Ñеть" msgid "Disabled" msgstr "Отключено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Отключено (по умолчанию)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "Ðе аÑÑоциировать при низком подтверждении" @@ -1642,7 +1650,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-bits длина" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "Метод EAP" @@ -1669,7 +1677,7 @@ msgstr "Изменить Ñтот интерфейÑ" msgid "Edit this network" msgstr "Редактировать Ñту Ñеть" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Ð§Ñ€ÐµÐ·Ð²Ñ‹Ñ‡Ð°Ð¹Ð½Ð°Ñ ÑитуациÑ" @@ -1710,7 +1718,7 @@ msgstr "Включить IPv6-ÑоглаÑование на PPP-Ñоединен msgid "Enable Jumbo Frame passthrough" msgstr "ПропуÑкать Jumbo-кадры" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Включить NTP-клиент" @@ -1726,11 +1734,11 @@ msgstr "Включить TFTP-Ñервер" msgid "Enable VLAN functionality" msgstr "Включить поддержку VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Включить WPS при нажатии на кнопку, в режиме WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Включить защиту от атаки KRACK" @@ -1776,7 +1784,7 @@ msgstr "Включено" msgid "Enables IGMP snooping on this bridge" msgstr "Включает IGMP snooping на данном моÑту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1795,7 +1803,7 @@ msgstr "Режим инкапÑулÑции" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1826,7 +1834,7 @@ msgstr "Стирание..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Ошибка" @@ -1869,23 +1877,23 @@ msgstr "" msgid "External" msgstr "Внешний" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "Внешний R0 Key Holder List" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "Внешний R0 Key Holder List" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Внешний Ñервер ÑиÑтемного журнала" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Порт внешнего Ñервера ÑиÑтемного журнала" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Внешний протокол лог-Ñервера" @@ -1893,15 +1901,15 @@ msgstr "Внешний протокол лог-Ñервера" msgid "Extra SSH command options" msgstr "Дополнительные опции команды SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "FT над DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "FT над the Air" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "FT протокол" @@ -2015,7 +2023,7 @@ msgstr "Ðазначить" msgid "Force 40MHz mode" msgstr "Принудительно иÑпользовать режим 40 МГц" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Ðазначить CCMP (AES)" @@ -2023,11 +2031,11 @@ msgstr "Ðазначить CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Ðазначить DHCP в Ñтой Ñети, даже еÑли найден другой Ñервер." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Ðазначить TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Ðазначить TKIP и CCMP (AES)" @@ -2068,7 +2076,7 @@ msgid "Forwarding mode" msgstr "Режим перенаправлениÑ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Порог фрагментации" @@ -2132,7 +2140,7 @@ msgstr "ОÑновные наÑтройки" msgid "Generate Config" msgstr "Создать config" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "Создать PMK локально" @@ -2159,7 +2167,7 @@ msgstr "ОÑновные наÑтройки Ñети" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Перейти к наÑтройке паролÑ..." @@ -2208,9 +2216,9 @@ msgstr "" "ЗдеÑÑŒ вы можете наÑтроить оÑновные параметры вашего уÑтройÑтва, такие как " "Ð¸Ð¼Ñ Ñ…Ð¾Ñта или чаÑовой поÑÑ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Скрыть <abbr title=\"РаÑширенный идентификатор Ñети\">ESSID</abbr>" @@ -2244,7 +2252,7 @@ msgstr "Содержимое Host-Uniq тега" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Ð˜Ð¼Ñ Ñ…Ð¾Ñта" @@ -2465,7 +2473,7 @@ msgstr "IPv6 через IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 через IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Ð˜Ð´ÐµÐ½Ñ‚Ð¸Ñ„Ð¸ÐºÐ°Ñ†Ð¸Ñ EAP" @@ -2584,7 +2592,7 @@ msgstr "Промежуток времени бездейÑтвиÑ" msgid "Inbound:" msgstr "ВходÑщий:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "ИнформациÑ" @@ -2638,7 +2646,7 @@ msgstr "СпиÑок интерфейÑов" msgid "Interface is reconnecting..." msgstr "Ð˜Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿ÐµÑ€ÐµÐ¿Ð¾Ð´ÐºÐ»ÑŽÑ‡Ð°ÐµÑ‚ÑÑ..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Ð˜Ð¼Ñ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñа" @@ -2680,7 +2688,7 @@ msgstr "Указан неверный VLAN ID! ДоÑтупны только уРmsgid "Invalid username and/or password! Please try again." msgstr "Ðеверный логин и/или пароль! Попробуйте Ñнова." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Изолировать клиентов" @@ -2696,7 +2704,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "ТребуетÑÑ JavaScript!" @@ -2725,15 +2733,16 @@ msgstr "Журнал Ñдра" msgid "Kernel Version" msgstr "ВерÑÐ¸Ñ Ñдра" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Пароль (ключ)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Ключ â„–%d" @@ -2776,7 +2785,7 @@ msgstr "LLC" msgid "Label" msgstr "Метка" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Язык" @@ -2863,7 +2872,7 @@ msgstr "" "СпиÑок <abbr title=\"Domain Name System\">DNS</abbr>-Ñерверов Ð´Ð»Ñ " "Ð¿ÐµÑ€ÐµÐ½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð·Ð°Ð¿Ñ€Ð¾Ñов" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2877,7 +2886,7 @@ msgstr "" "PMK-R1 из R0KH , который иÑпользовалÑÑ STA во Ð²Ñ€ÐµÐ¼Ñ Ð½Ð°Ñ‡Ð°Ð»ÑŒÐ½Ð¾Ð¹ аÑÑоциации " "доменов Mobility." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2971,7 +2980,7 @@ msgid "Local Startup" msgstr "ЗапуÑк пакетов и Ñлужб пользователÑ, при включении уÑтройÑтва" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Дата и времÑ" @@ -3014,7 +3023,7 @@ msgstr "Локализовывать запроÑÑ‹" msgid "Locked to channel %s used by: %s" msgstr "Блокировать канал %s иÑпользуемый: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "ЗапиÑÑŒ Ñобытий" @@ -3056,8 +3065,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-адреÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Фильтр MAC-адреÑов" @@ -3066,8 +3075,8 @@ msgstr "Фильтр MAC-адреÑов" msgid "MAC-Filter" msgstr "MAC-фильтр" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "СпиÑок MAC" @@ -3119,7 +3128,7 @@ msgstr "Вручную" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "Max. Attainable Data Rate (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "МакÑимально разрешенное значение интервала проÑÐ»ÑƒÑˆÐ¸Ð²Ð°Ð½Ð¸Ñ ÐºÐ»Ð¸ÐµÐ½Ñ‚Ð°" @@ -3193,7 +3202,7 @@ msgstr "Зеркальный иÑходÑщий порт" msgid "Missing protocol extension for proto %q" msgstr "ОтÑутÑтвует раÑширение протокола %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "Мобильный домен" @@ -3230,9 +3239,9 @@ msgstr "Ошибка запроÑа информации о модеме" msgid "Modem init timeout" msgstr "Ð’Ñ€ÐµÐ¼Ñ Ð¾Ð¶Ð¸Ð´Ð°Ð½Ð¸Ñ Ð¸Ð½Ð¸Ñ†Ð¸Ð°Ð»Ð¸Ð·Ð°Ñ†Ð¸Ð¸ модема" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Монитор" @@ -3295,7 +3304,7 @@ msgstr "ПеремеÑтить вниз" msgid "Move up" msgstr "ПеремеÑтить вверх" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3319,7 +3328,7 @@ msgstr "NDP-прокÑи" msgid "NT Domain" msgstr "NT домен" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "СпиÑок NTP-Ñерверов" @@ -3348,7 +3357,7 @@ msgstr "МаÑка Ñети" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3422,7 +3431,7 @@ msgstr "Ðе задано Ð¸Ð¼Ñ Ñети" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Пароль не уÑтановлен!" @@ -3471,7 +3480,7 @@ msgstr "Ðе иÑпользовать wildcard" msgid "None" msgstr "Ðичего" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Ðормально" @@ -3493,7 +3502,7 @@ msgstr "Ðе подключено" msgid "Note: interface name length" msgstr "Внимание: длина имени интерфейÑа" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Заметка" @@ -3507,7 +3516,7 @@ msgstr "" "КоличеÑтво кÑшированных DNS запиÑей (макÑимум — 10000, 0 — отключить " "кÑширование)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "КоличеÑтво параллельных потоков иÑпользуемых Ð´Ð»Ñ ÐºÐ¾Ð¼Ð¿Ñ€ÐµÑÑии" @@ -3589,7 +3598,7 @@ msgstr "ÐžÐ¿Ñ†Ð¸Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð°" msgid "Option removed" msgstr "ÐžÐ¿Ñ†Ð¸Ñ ÑƒÐ´Ð°Ð»ÐµÐ½Ð°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "ÐеобÑзательно" @@ -3710,7 +3719,7 @@ msgstr "Отвергать TOS" msgid "Override TTL" msgstr "Отвергать TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "Ðазначить Ð¸Ð¼Ñ Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñа по умолчанию" @@ -3774,7 +3783,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN код отвергнут" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "PMK R1 Push" @@ -3827,7 +3836,7 @@ msgid "Part of zone %q" msgstr "ЧаÑÑ‚ÑŒ зоны %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3838,11 +3847,11 @@ msgstr "Пароль" msgid "Password authentication" msgstr "С помощью паролÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Пароль к Приватному ключу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "Пароль к внутреннему Приватному ключу" @@ -3854,27 +3863,27 @@ msgstr "Пароль2" msgid "Paste or drag SSH key file…" msgstr "Перетащите файл SSH ключа или вÑтавьте Ñодержимое..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Путь к CA-Сертификату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Путь к Client-Сертификату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Путь к Приватному ключу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "Путь к внутренним CA-Сертификатам" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "Путь к внутренним Client-Сертификатам" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "Путь к внутреннему Приватному ключу" @@ -3952,6 +3961,14 @@ msgstr "Введите логин и пароль." msgid "Policy" msgstr "Политика" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -4001,8 +4018,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Запретить проÑлушивание Ñтих интерфейÑов." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Ðе позволÑет клиентам обмениватьÑÑ Ð´Ñ€ÑƒÐ³ Ñ Ð´Ñ€ÑƒÐ³Ð¾Ð¼ информацией" @@ -4043,7 +4060,7 @@ msgstr "Протокол нового интерфейÑа" msgid "Protocol support is not installed" msgstr "Поддержка протокола не уÑтановлена" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Включить NTP-Ñервер" @@ -4051,7 +4068,7 @@ msgstr "Включить NTP-Ñервер" msgid "Provide new network" msgstr "ПредоÑтавлÑÑ‚ÑŒ новую Ñеть" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "ПÑевдо Ad-Hoc (ahdemo)" @@ -4094,11 +4111,11 @@ msgstr "" "Опрашивать вÑе имеющиеÑÑ Ð²Ð½ÐµÑˆÐ½Ð¸Ðµ <abbr title=\"Domain Name System\">DNS</" "abbr>-Ñерверы" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "R0 Key Ð²Ñ€ÐµÐ¼Ñ Ð¶Ð¸Ð·Ð½Ð¸" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "R1 Key Holder" @@ -4106,8 +4123,12 @@ msgstr "R1 Key Holder" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-T режим" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Порог RTS/CTS" @@ -4121,27 +4142,27 @@ msgstr "Получение (RX)" msgid "RX Rate" msgstr "СкороÑÑ‚ÑŒ получениÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Порт Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Секрет Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Сервер Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Порт Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Секрет Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Сервер Radius-Authentication" @@ -4205,7 +4226,7 @@ msgstr "Трафик в реальном времени" msgid "Realtime Wireless" msgstr "БеÑÐ¿Ñ€Ð¾Ð²Ð¾Ð´Ð½Ð°Ñ Ñеть в реальном времени" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "Срок РеаÑÑоциации" @@ -4300,7 +4321,7 @@ msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ IPv6 адреÑа" msgid "Request IPv6-prefix of length" msgstr "Ð—Ð°Ð¿Ñ€Ð¾Ñ IPv6 Ð¿Ñ€ÐµÑ„Ð¸ÐºÑ Ð´Ð»Ð¸Ð½Ñ‹" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Требовать" @@ -4327,13 +4348,13 @@ msgstr "" "одноранговому узлу внутри туннелÑ. Обычно туннельные IP-адреÑа однорангового " "узла и Ñети одноранговых маршрутов через туннель." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "ТребуетÑÑ 'полнаÑ' верÑÐ¸Ñ wpad/hostapd и поддержка Ñо Ñтороны WiFi драйвера " -"в <br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"в <br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4581,7 +4602,7 @@ msgstr "" "ОтправлÑÑ‚ÑŒ Ñхо-пакеты LCP Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð½Ñ‹Ð¼ интервалом (Ñекунды), Ñффективно " "только в Ñочетании Ñ Ð¿Ð¾Ñ€Ð¾Ð³Ð¾Ð¼ ошибок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "РазделÑÑ‚ÑŒ клиентов" @@ -4617,7 +4638,7 @@ msgid "" msgstr "" "ÐвтоматичеÑки активировать Ñоединение, при подключении в разъем кабелÑ." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "ÐаÑтройка Ñинхронизации времени" @@ -4641,7 +4662,7 @@ msgstr "Секунды Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð¼ чиÑлом ошибок (SES)." msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "ÐšÐ¾Ñ€Ð¾Ñ‚ÐºÐ°Ñ Ð¿Ñ€ÐµÐ°Ð¼Ð±ÑƒÐ»Ð°" @@ -4684,7 +4705,7 @@ msgstr "Размер" msgid "Size of DNS query cache" msgstr "Размер кÑша DNS запроÑа" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Размер ZRam в мегабайтах" @@ -4838,7 +4859,7 @@ msgstr "" "имён DHCP-клиентам. ПоÑтоÑÐ½Ð½Ð°Ñ Ð°Ñ€ÐµÐ½Ð´Ð° также необходима Ð´Ð»Ñ ÑтатичеÑких " "интерфейÑов, в которых обÑлуживаютÑÑ Ñ‚Ð¾Ð»ÑŒÐºÐ¾ клиенты Ñ Ð¿Ñ€Ð¸Ñвоенными адреÑами." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "МакÑимально допуÑтимое Ð²Ñ€ÐµÐ¼Ñ Ð±ÐµÐ·Ð´ÐµÐ¹ÑÑ‚Ð²Ð¸Ñ ÐºÐ»Ð¸ÐµÐ½Ñ‚Ð°" @@ -4944,7 +4965,7 @@ msgstr "СиÑтемный журнал" msgid "System Properties" msgstr "СвойÑтва ÑиÑтемы" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Размер ÑиÑтемного журнала" @@ -5199,7 +5220,7 @@ msgstr "" "Загруженный файл прошивки не поддерживаетÑÑ. Проверьте, что вы загрузили " "подходÑщую прошивку Ð´Ð»Ñ Ñ‡Ð¸Ð¿Ð° вашего уÑтройÑтва." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Тема" @@ -5232,7 +5253,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5334,20 +5355,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "ЗдеÑÑŒ не ÑодержатÑÑ Ð½ÐµÐ¾Ð±Ñ…Ð¾Ð´Ð¸Ð¼Ñ‹Ðµ значениÑ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸ ещё не наÑтроена." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "Интервал регенерации ключей GTK" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "ЧаÑовой поÑÑ" @@ -5390,7 +5411,7 @@ msgstr "Трафик" msgid "Transfer" msgstr "Передача" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "СкороÑÑ‚ÑŒ передачи" @@ -5700,11 +5721,11 @@ msgstr "" msgid "Used" msgstr "ИÑпользовано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "ИÑпользуемый Ñлот ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5785,18 +5806,18 @@ msgstr "Проверить" msgid "Virtual dynamic interface" msgstr "Виртуальный динамичеÑкий винтерфейÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "ÐžÑ‚ÐºÑ€Ñ‹Ñ‚Ð°Ñ ÑиÑтема WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Общий ключ WEP" @@ -5804,8 +5825,8 @@ msgstr "Общий ключ WEP" msgid "WEP passphrase" msgstr "Пароль WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Режим WMM" @@ -5813,9 +5834,9 @@ msgstr "Режим WMM" msgid "WPA passphrase" msgstr "Пароль WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5839,8 +5860,8 @@ msgstr "Ожидание Ð¿Ñ€Ð¸Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ ÐºÐ¾Ð½Ñ„Ð¸Ð³ÑƒÑ€Ð°Ñ†Ð¸Ð¸... %d ÑÐ msgid "Waiting for device..." msgstr "Ожидание Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ ÑƒÑтройÑтва..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Внимание" @@ -5850,7 +5871,7 @@ msgstr "" "Предупреждение: ЕÑÑ‚ÑŒ не Ñохраненные изменениÑ, которые будут потерÑны при " "перезагрузке!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5940,7 +5961,7 @@ msgstr "БеÑÐ¿Ñ€Ð¾Ð²Ð¾Ð´Ð½Ð°Ñ Ñеть включена" msgid "Write received DNS requests to syslog" msgstr "ЗапиÑывать полученные DNS-запроÑÑ‹ в ÑиÑтемный журнал" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "ЗапиÑывать ÑиÑтемные ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ Ð² файл" @@ -5963,7 +5984,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5980,19 +6001,19 @@ msgstr "" "Обновите его до верÑии 7 или иÑпользуйте другой браузер, например Firefox, " "Opera или Safari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "Ðлгоритм компреÑÑии ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "Потоки компреÑÑии ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ÐаÑтройки ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "Размер ZRam" @@ -6007,7 +6028,7 @@ msgstr "любой" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6060,8 +6081,8 @@ msgstr "дБ" msgid "dBm" msgstr "дБм" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "отключить" @@ -6165,7 +6186,7 @@ msgstr "ключ длиной 5 или 13 Ñимволов" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Локальный <abbr title=\"Служба доменных имён\">DNS</abbr>-файл" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "минут(Ñ‹)" @@ -6198,7 +6219,7 @@ msgstr "не ÑущеÑтвует" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "выключено" @@ -6206,7 +6227,7 @@ msgstr "выключено" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "включено" @@ -6252,8 +6273,8 @@ msgstr "режим передачи" msgid "routed" msgstr "маршрутизируемый" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "Ñекунды" @@ -6278,7 +6299,7 @@ msgstr "stateless + stateful" msgid "tagged" msgstr "Ñ Ñ‚ÐµÐ³Ð¾Ð¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "единицы Ð¸Ð·Ð¼ÐµÑ€ÐµÐ½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸ (TUs / 1.024 ms) [1000-65535]" diff --git a/modules/luci-base/po/sk/base.po b/modules/luci-base/po/sk/base.po index cad6615afc..a40d1ad96e 100644 --- a/modules/luci-base/po/sk/base.po +++ b/modules/luci-base/po/sk/base.po @@ -53,16 +53,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -86,6 +86,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -94,7 +98,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -106,35 +110,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -152,7 +156,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -294,7 +298,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "" @@ -384,6 +388,10 @@ msgstr "" msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -399,7 +407,7 @@ msgstr "" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" @@ -430,12 +438,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "" @@ -443,8 +451,8 @@ msgstr "" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "" @@ -564,7 +572,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -636,7 +644,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "" @@ -658,8 +666,8 @@ msgstr "" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -949,13 +957,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -976,7 +984,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1034,7 +1042,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1130,11 +1138,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1165,15 +1173,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1257,7 +1265,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1269,14 +1277,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1327,7 +1335,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1397,7 +1405,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1415,11 +1423,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1545,7 +1553,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1570,7 +1578,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1609,7 +1617,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1625,11 +1633,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1675,7 +1683,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1692,7 +1700,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1723,7 +1731,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" @@ -1764,23 +1772,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1788,15 +1796,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1906,7 +1914,7 @@ msgstr "" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1914,11 +1922,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1959,7 +1967,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2021,7 +2029,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2048,7 +2056,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2095,9 +2103,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2131,7 +2139,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "" @@ -2352,7 +2360,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "" @@ -2458,7 +2466,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2512,7 +2520,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2552,7 +2560,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2566,7 +2574,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2595,15 +2603,16 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2646,7 +2655,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2731,7 +2740,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2740,7 +2749,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2827,7 +2836,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2863,7 +2872,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2905,8 +2914,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "" @@ -2915,8 +2924,8 @@ msgstr "" msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -2966,7 +2975,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3038,7 +3047,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3075,9 +3084,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3138,7 +3147,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3162,7 +3171,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3191,7 +3200,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3265,7 +3274,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3314,7 +3323,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3336,7 +3345,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3348,7 +3357,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3424,7 +3433,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3531,7 +3540,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3593,7 +3602,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3646,7 +3655,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3657,11 +3666,11 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3673,27 +3682,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3771,6 +3780,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3818,8 +3835,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3860,7 +3877,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3868,7 +3885,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3903,11 +3920,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3915,8 +3932,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3930,27 +3951,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4004,7 +4025,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4098,7 +4119,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4121,10 +4142,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4364,7 +4385,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4399,7 +4420,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4423,7 +4444,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4466,7 +4487,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4607,7 +4628,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4711,7 +4732,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4924,7 +4945,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4955,7 +4976,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5036,20 +5057,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5088,7 +5109,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "" @@ -5388,11 +5409,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5470,18 +5491,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5489,8 +5510,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "" @@ -5498,9 +5519,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5522,8 +5543,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5531,7 +5552,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5618,7 +5639,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5637,7 +5658,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5649,19 +5670,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5676,7 +5697,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5729,8 +5750,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "" @@ -5832,7 +5853,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5865,7 +5886,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5873,7 +5894,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5917,8 +5938,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5943,7 +5964,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/sv/base.po b/modules/luci-base/po/sv/base.po index f880a21e2e..e83a447246 100644 --- a/modules/luci-base/po/sv/base.po +++ b/modules/luci-base/po/sv/base.po @@ -55,16 +55,16 @@ msgstr "(inga gränssnitt har bifogats)" msgid "-- Additional Field --" msgstr "-- Ytterligare fält --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Vänligen välj --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- anpassad --" @@ -88,6 +88,10 @@ msgstr "-- matcha enligt uuid --" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "Belastning senaste minuten:" @@ -96,7 +100,7 @@ msgstr "Belastning senaste minuten:" msgid "15 Minute Load:" msgstr "Belastning senaste 15 minutrarna:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "Belastning senaste 5 minutrarna:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r Snabb förvandling" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -301,7 +305,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Accesspunkt" @@ -391,6 +395,10 @@ msgstr "Adress för att komma Ã¥t lokal reläbrygga" msgid "Administration" msgstr "Administration" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -406,7 +414,7 @@ msgstr "Avancerade inställningar" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Varning" @@ -438,12 +446,12 @@ msgstr "Allokera IP sekventiellt" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "TillÃ¥t <abbr title=\"Secure Shell\">SSH</abbr> lösenordsautentisering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "TillÃ¥t alla utom listade" @@ -451,8 +459,8 @@ msgstr "TillÃ¥t alla utom listade" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "TillÃ¥t enbart listade" @@ -574,7 +582,7 @@ msgstr "Aviserade DNS-domäner" msgid "Announced DNS servers" msgstr "Aviserade DNS-servrar" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "Anonym identitet" @@ -646,7 +654,7 @@ msgstr "" msgid "Auth Group" msgstr "Autentiseringsgrupp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Autentisering" @@ -668,8 +676,8 @@ msgstr "TillstÃ¥nd krävs" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Uppdatera automatiskt" @@ -962,13 +970,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Chiffer" @@ -989,7 +997,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Klient" @@ -1047,7 +1055,7 @@ msgstr "" msgid "Common Configuration" msgstr "Vanlig konfiguration" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1143,11 +1151,11 @@ msgstr "Skapa gränssnitt" msgid "Create a bridge over multiple interfaces" msgstr "Skapa en brygga över flera gränssnitt" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritisk" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "LoggnivÃ¥ för Cron" @@ -1178,15 +1186,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1270,7 +1278,7 @@ msgstr "DSL-status" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1282,14 +1290,14 @@ msgstr "" msgid "Data Rate" msgstr "Datahastighet" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "Avlusa" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Standard %d" @@ -1340,7 +1348,7 @@ msgstr "" msgid "Delete this network" msgstr "Ta bort det här nätverket" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1412,7 +1420,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Inaktivera kryptering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1430,11 +1438,11 @@ msgstr "" msgid "Disabled" msgstr "Inaktiverad" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Inaktiverad (standard)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1564,7 +1572,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-metod" @@ -1589,7 +1597,7 @@ msgstr "Redigera det här gränssnittet" msgid "Edit this network" msgstr "Redigera det här nätverket" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Nödsituation" @@ -1628,7 +1636,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Aktivera NTP-klient" @@ -1644,11 +1652,11 @@ msgstr "Aktivera TFTP-server" msgid "Enable VLAN functionality" msgstr "Aktivera VLAN-funktionalitet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Aktivera WPS-tryckknapp, kräver WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Kräver ominstallation av nyckel (KRACK) motÃ¥tgärder" @@ -1694,7 +1702,7 @@ msgstr "Aktiverad" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1711,7 +1719,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1742,7 +1750,7 @@ msgstr "Raderar..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Fel" @@ -1783,23 +1791,23 @@ msgstr "" msgid "External" msgstr "Externt" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1807,15 +1815,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "Extra alternativ för SSH-kommandot" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1925,7 +1933,7 @@ msgstr "Tvinga" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "Tvinga CCMP (AES)" @@ -1933,11 +1941,11 @@ msgstr "Tvinga CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "Tvinga DHCP pÃ¥ det här nätverket även om en annan server är upptäckt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "Tvinga TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "Tvinga TKIP och CCMP (AES)" @@ -1978,7 +1986,7 @@ msgid "Forwarding mode" msgstr "Vidarebefordringsläge" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2040,7 +2048,7 @@ msgstr "" msgid "Generate Config" msgstr "Generera konfig" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2067,7 +2075,7 @@ msgstr "Globala nätverksalternativ" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "GÃ¥ till lösenordskonfiguration..." @@ -2114,9 +2122,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Göm <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2150,7 +2158,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Värdnamn" @@ -2371,7 +2379,7 @@ msgstr "IPv6-över-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-över-IPv4 (6till4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Identitet" @@ -2477,7 +2485,7 @@ msgstr "" msgid "Inbound:" msgstr "Ankommande" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "Info" @@ -2531,7 +2539,7 @@ msgstr "Överblick av gränssnitt" msgid "Interface is reconnecting..." msgstr "Gränssnittet Ã¥teransluter..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Gränssnittets namn" @@ -2571,7 +2579,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Ogiltigt användarnamn och/eller lösenord! Vänligen försök igen." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Isolera klienter" @@ -2585,7 +2593,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "JavaScript krävs!" @@ -2614,15 +2622,16 @@ msgstr "Kernel-logg" msgid "Kernel Version" msgstr "Kernel-version" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Nyckel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Nyckel #%d" @@ -2665,7 +2674,7 @@ msgstr "LLC" msgid "Label" msgstr "Märke" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "SprÃ¥k" @@ -2750,7 +2759,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2759,7 +2768,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2847,7 +2856,7 @@ msgid "Local Startup" msgstr "Lokal uppstart" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Lokal tid" @@ -2883,7 +2892,7 @@ msgstr "Lokalisera förfrÃ¥gningar" msgid "Locked to channel %s used by: %s" msgstr "LÃ¥st till kanalen %s som används av: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2925,8 +2934,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-adress" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Filter för MAC-adress" @@ -2935,8 +2944,8 @@ msgstr "Filter för MAC-adress" msgid "MAC-Filter" msgstr "MAC-filter" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-lista" @@ -2986,7 +2995,7 @@ msgstr "Manuell" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3058,7 +3067,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3095,9 +3104,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Övervaka" @@ -3158,7 +3167,7 @@ msgstr "Flytta ner" msgid "Move up" msgstr "Flytta upp" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS-ID" @@ -3182,7 +3191,7 @@ msgstr "" msgid "NT Domain" msgstr "NT-domän" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP-serverkandidater" @@ -3211,7 +3220,7 @@ msgstr "Nätmask" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3285,7 +3294,7 @@ msgstr "Inget nätverksnamn angavs" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Inget lösenord inställt!" @@ -3334,7 +3343,7 @@ msgstr "" msgid "None" msgstr "Ingen" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Normal" @@ -3356,7 +3365,7 @@ msgstr "Inte ansluten" msgid "Note: interface name length" msgstr "Notera: längden pÃ¥ gränssnittets namn" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "Avisering" @@ -3368,7 +3377,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3444,7 +3453,7 @@ msgstr "Alternativet ändrades" msgid "Option removed" msgstr "Alternativet togs bort" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Valfri" @@ -3551,7 +3560,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3613,7 +3622,7 @@ msgstr "PIN-kod" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3666,7 +3675,7 @@ msgid "Part of zone %q" msgstr "Del av zon %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3677,11 +3686,11 @@ msgstr "Lösenord" msgid "Password authentication" msgstr "Lösenordsautentisering" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Den privata nyckelns lösenord" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "Lösenordet för den inre privata nyckeln" @@ -3693,27 +3702,27 @@ msgstr "Lösenord2" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "Genväg till CA-certifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "Genväg till klient-certifikat" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "Genväg till privat nyckel" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "Genväg till det inre CA-certifikatet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "Genväg till det inre klient-certifikatet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "Genväg till den inre privata nyckeln" @@ -3791,6 +3800,14 @@ msgstr "Vänligen ange ditt användarnamn och lösenord." msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Port" @@ -3838,8 +3855,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Förhindra lyssning pÃ¥ dessa gränssnitt." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Förhindrar kommunikation klient-till-klient" @@ -3880,7 +3897,7 @@ msgstr "Det nya gränssnittets protokoll" msgid "Protocol support is not installed" msgstr "Stöd för protokoll är inte installerat" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3888,7 +3905,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3923,11 +3940,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3935,8 +3952,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3950,27 +3971,27 @@ msgstr "RT" msgid "RX Rate" msgstr "RX-hastighet" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4026,7 +4047,7 @@ msgstr "Trafik i realtid" msgid "Realtime Wireless" msgstr "TrÃ¥dlöst i realtid" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4120,7 +4141,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "Krävs!" @@ -4143,10 +4164,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4386,7 +4407,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Separera klienter" @@ -4421,7 +4442,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "Ställ in Tidssynkronisering" @@ -4445,7 +4466,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4488,7 +4509,7 @@ msgstr "Storlek" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4629,7 +4650,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4733,7 +4754,7 @@ msgstr "Systemlogg" msgid "System Properties" msgstr "Systemets egenskaper" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4946,7 +4967,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -4977,7 +4998,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5060,20 +5081,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Synkronisering av tid" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Synkronisering av tid är inte inställd än." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Tidszon" @@ -5114,7 +5135,7 @@ msgstr "Trafik" msgid "Transfer" msgstr "Överför" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Överföringshastighet" @@ -5414,11 +5435,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5496,18 +5517,18 @@ msgstr "Verkställ" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Öppet System WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5515,8 +5536,8 @@ msgstr "" msgid "WEP passphrase" msgstr "WEP-lösenordsfras" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM-läge" @@ -5524,9 +5545,9 @@ msgstr "WMM-läge" msgid "WPA passphrase" msgstr "WPA-lösenordsfras" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5548,8 +5569,8 @@ msgstr "" msgid "Waiting for device..." msgstr "Väntar pÃ¥ enheten..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Varning" @@ -5558,7 +5579,7 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "Varning: Det finns osparade ändringar som kommer att förloras vid omstart!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5645,7 +5666,7 @@ msgstr "TrÃ¥dlöst nätverk är aktiverat" msgid "Write received DNS requests to syslog" msgstr "Skriv mottagna DNS-förfrÃ¥gningar till syslogg" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "Skriv systemlogg till fil" @@ -5664,7 +5685,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5681,19 +5702,19 @@ msgstr "" "Vänligen uppgradera den till minst version 7 eller använd en annan " "webbläsare till exempel Firefox, Opera eller Safari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5708,7 +5729,7 @@ msgstr "nÃ¥got" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5761,8 +5782,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "stäng ner" @@ -5864,7 +5885,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "lokal <abbr title=\"Domain Name System\">DNS</abbr>-fil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "minuter" @@ -5897,7 +5918,7 @@ msgstr "inte tillgängligt" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "av" @@ -5905,7 +5926,7 @@ msgstr "av" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "pÃ¥" @@ -5949,8 +5970,8 @@ msgstr "relä-läge" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5975,7 +5996,7 @@ msgstr "" msgid "tagged" msgstr "taggad" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/templates/base.pot b/modules/luci-base/po/templates/base.pot index 0ba42f2a17..663fe6b657 100644 --- a/modules/luci-base/po/templates/base.pot +++ b/modules/luci-base/po/templates/base.pot @@ -45,16 +45,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "" @@ -78,6 +78,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -86,7 +90,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -98,35 +102,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" @@ -144,7 +148,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -286,7 +290,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "" @@ -376,6 +380,10 @@ msgstr "" msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -391,7 +399,7 @@ msgstr "" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" @@ -422,12 +430,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "" @@ -435,8 +443,8 @@ msgstr "" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "" @@ -556,7 +564,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -628,7 +636,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "" @@ -650,8 +658,8 @@ msgstr "" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -941,13 +949,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -968,7 +976,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1026,7 +1034,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1122,11 +1130,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1157,15 +1165,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1249,7 +1257,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1261,14 +1269,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1319,7 +1327,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1389,7 +1397,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1407,11 +1415,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1537,7 +1545,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1562,7 +1570,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1601,7 +1609,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1617,11 +1625,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1667,7 +1675,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1684,7 +1692,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1715,7 +1723,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" @@ -1756,23 +1764,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1780,15 +1788,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1898,7 +1906,7 @@ msgstr "" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1906,11 +1914,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1951,7 +1959,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2013,7 +2021,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2040,7 +2048,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2087,9 +2095,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2123,7 +2131,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "" @@ -2344,7 +2352,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "" @@ -2450,7 +2458,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2504,7 +2512,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2544,7 +2552,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2558,7 +2566,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2587,15 +2595,16 @@ msgstr "" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2638,7 +2647,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2723,7 +2732,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2732,7 +2741,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2819,7 +2828,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "" @@ -2855,7 +2864,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2897,8 +2906,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "" @@ -2907,8 +2916,8 @@ msgstr "" msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -2958,7 +2967,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3030,7 +3039,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3067,9 +3076,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3130,7 +3139,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3154,7 +3163,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3183,7 +3192,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3257,7 +3266,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3306,7 +3315,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3328,7 +3337,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3340,7 +3349,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3416,7 +3425,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3523,7 +3532,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3585,7 +3594,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3638,7 +3647,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3649,11 +3658,11 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3665,27 +3674,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3763,6 +3772,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3810,8 +3827,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3852,7 +3869,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3860,7 +3877,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3895,11 +3912,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3907,8 +3924,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3922,27 +3943,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -3996,7 +4017,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4090,7 +4111,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4113,10 +4134,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4356,7 +4377,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4391,7 +4412,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4415,7 +4436,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4458,7 +4479,7 @@ msgstr "" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4599,7 +4620,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4703,7 +4724,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4916,7 +4937,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "" @@ -4947,7 +4968,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5028,20 +5049,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5080,7 +5101,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "" @@ -5380,11 +5401,11 @@ msgstr "" msgid "Used" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5462,18 +5483,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5481,8 +5502,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "" @@ -5490,9 +5511,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5514,8 +5535,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5523,7 +5544,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5610,7 +5631,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5629,7 +5650,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5641,19 +5662,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5668,7 +5689,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5721,8 +5742,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "" @@ -5824,7 +5845,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5857,7 +5878,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5865,7 +5886,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5909,8 +5930,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5935,7 +5956,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/tr/base.po b/modules/luci-base/po/tr/base.po index 472d43f80f..e1adf6383f 100644 --- a/modules/luci-base/po/tr/base.po +++ b/modules/luci-base/po/tr/base.po @@ -56,16 +56,16 @@ msgstr "(arayüz eklenmedi)" msgid "-- Additional Field --" msgstr "-- Ek Alan--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Lütfen seçiniz --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- özel --" @@ -89,6 +89,10 @@ msgstr "-- uuid'e göre eÅŸleÅŸtir --" msgid "-- please select --" msgstr "-- lütfen seçin --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 Dakikalık Yük:" @@ -97,7 +101,7 @@ msgstr "1 Dakikalık Yük:" msgid "15 Minute Load:" msgstr "15 Dakikalık Yük:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "4 karakterli HEX ID" @@ -109,35 +113,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5 Dakikalık Yük:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\\\"Temel Servis Ayar Tanımlayıcısı\\\"> BSSID </abbr>" @@ -155,7 +159,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -303,7 +307,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "EriÅŸim Noktası" @@ -395,6 +399,10 @@ msgstr "" msgid "Administration" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -410,7 +418,7 @@ msgstr "GeliÅŸmiÅŸ Ayarlar" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Uyarı" @@ -443,12 +451,12 @@ msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "" "<abbr title=\"Secure Shell\">SSH</abbr> parola kimlik doÄŸrulamasına izin ver" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Listelenenlerin haricindekilere izin ver" @@ -456,8 +464,8 @@ msgstr "Listelenenlerin haricindekilere izin ver" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Yanlızca listelenenlere izin ver" @@ -577,7 +585,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -649,7 +657,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Kimlik DoÄŸrulama" @@ -671,8 +679,8 @@ msgstr "Yetkilendirme Gerekli" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Otomatik Yenileme" @@ -962,13 +970,13 @@ msgid "" "interface to it." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -991,7 +999,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "" @@ -1049,7 +1057,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1145,11 +1153,11 @@ msgstr "Arabirim OluÅŸtur" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Kritik" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1180,15 +1188,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1272,7 +1280,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1284,14 +1292,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Varsayılan" @@ -1342,7 +1350,7 @@ msgstr "" msgid "Delete this network" msgstr "Bu ağı sil" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1414,7 +1422,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Åžifrelemeyi Devre Dışı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1432,11 +1440,11 @@ msgstr "AÄŸ devre dışı" msgid "Disabled" msgstr "Devre dışı" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Devre dışı (varsayılan)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1562,7 +1570,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "" @@ -1587,7 +1595,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1626,7 +1634,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1642,11 +1650,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1692,7 +1700,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1709,7 +1717,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1740,7 +1748,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "" @@ -1781,23 +1789,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1805,15 +1813,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1923,7 +1931,7 @@ msgstr "" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1931,11 +1939,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1976,7 +1984,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "" @@ -2038,7 +2046,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2065,7 +2073,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2112,9 +2120,9 @@ msgid "" "the timezone." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" @@ -2148,7 +2156,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "" @@ -2369,7 +2377,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "" @@ -2475,7 +2483,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2529,7 +2537,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2569,7 +2577,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2583,7 +2591,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2612,15 +2620,16 @@ msgstr "" msgid "Kernel Version" msgstr "Çekirdek Versiyonu" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2663,7 +2672,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "" @@ -2748,7 +2757,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2757,7 +2766,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2844,7 +2853,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "Yerel Zaman" @@ -2880,7 +2889,7 @@ msgstr "" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2922,8 +2931,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-Adres" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "" @@ -2932,8 +2941,8 @@ msgstr "" msgid "MAC-Filter" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "" @@ -2983,7 +2992,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3055,7 +3064,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3092,9 +3101,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "" @@ -3155,7 +3164,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "" @@ -3179,7 +3188,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3208,7 +3217,7 @@ msgstr "AÄŸ Maskesi" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3282,7 +3291,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3331,7 +3340,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3353,7 +3362,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3365,7 +3374,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3441,7 +3450,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3548,7 +3557,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3610,7 +3619,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3663,7 +3672,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3674,11 +3683,11 @@ msgstr "" msgid "Password authentication" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3690,27 +3699,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3788,6 +3797,14 @@ msgstr "" msgid "Policy" msgstr "" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "" @@ -3835,8 +3852,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "" @@ -3877,7 +3894,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3885,7 +3902,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "" @@ -3920,11 +3937,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3932,8 +3949,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "" @@ -3947,27 +3968,27 @@ msgstr "" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4021,7 +4042,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4115,7 +4136,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4138,10 +4159,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4381,7 +4402,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "" @@ -4416,7 +4437,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4440,7 +4461,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4483,7 +4504,7 @@ msgstr "Boyut" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4624,7 +4645,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4728,7 +4749,7 @@ msgstr "" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4941,7 +4962,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Tema" @@ -4972,7 +4993,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5053,20 +5074,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "" @@ -5105,7 +5126,7 @@ msgstr "" msgid "Transfer" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "" @@ -5405,11 +5426,11 @@ msgstr "" msgid "Used" msgstr "Kullanılmış" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5487,18 +5508,18 @@ msgstr "Kontrol" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5506,8 +5527,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "" @@ -5515,9 +5536,9 @@ msgstr "" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5539,8 +5560,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "Uyarı" @@ -5548,7 +5569,7 @@ msgstr "Uyarı" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5635,7 +5656,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5654,7 +5675,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5668,19 +5689,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5695,7 +5716,7 @@ msgstr "herhangi" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5748,8 +5769,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "etkin deÄŸil" @@ -5851,7 +5872,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "yerel <abbr title=\"Domain Name System\">DNS</abbr> dosyası" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "dakika" @@ -5884,7 +5905,7 @@ msgstr "mevcut deÄŸil" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "kapalı" @@ -5892,7 +5913,7 @@ msgstr "kapalı" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "açık" @@ -5936,8 +5957,8 @@ msgstr "anahtarlama modu" msgid "routed" msgstr "yönlendirildi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -5962,7 +5983,7 @@ msgstr "durumsuz + durumlu" msgid "tagged" msgstr "etiketlendi" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/uk/base.po b/modules/luci-base/po/uk/base.po index 8fc94f8ab4..b3eb1855dd 100644 --- a/modules/luci-base/po/uk/base.po +++ b/modules/luci-base/po/uk/base.po @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" -"PO-Revision-Date: 2018-12-29 23:20+0200\n" +"PO-Revision-Date: 2019-02-07 18:35+0200\n" "Last-Translator: Yurii <yuripet@gmail.com>\n" "Language-Team: none\n" "Language: uk\n" @@ -53,16 +53,16 @@ msgstr "(нема приєднаних інтерфейÑів)" msgid "-- Additional Field --" msgstr "-- Додаткові Ð¿Ð¾Ð»Ñ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- Оберіть --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- нетипово --" @@ -86,6 +86,11 @@ msgstr "-- відповідно UUID --" msgid "-- please select --" msgstr "-- виберіть --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" +"0 = не викориÑтовувати поріг RSSI, 1 = не змінюваим типові Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð´Ñ€Ð°Ð¹Ð²ÐµÑ€Ð°" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "ÐÐ°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° 1 хвилину:" @@ -94,7 +99,7 @@ msgstr "ÐÐ°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° 1 хвилину:" msgid "15 Minute Load:" msgstr "ÐÐ°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° 15 хвилин:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "4-Ñимв. шіÑтнадцÑтковий ID" @@ -106,36 +111,36 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "ÐÐ°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð·Ð° 5 хвилин:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" "6-октетний ідентифікатор у виглÑді шіÑтнадцÑткового Ñ€Ñдка – без двокрапок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "Швидкий перехід 802.11r" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "МакÑимальний тайм-аут запиту аÑоціації 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "Тайм-аут Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÑŽÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñƒ аÑоціації 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "ЗахиÑÑ‚ кадрів ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "МакÑимальний тайм-аут 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "Тайм-аут Ð¿Ð¾Ð²Ñ‚Ð¾Ñ€ÑŽÐ²Ð°Ð½Ð½Ñ 802.11w" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "" "<abbr title=\"Basic Service Set Identifier — ідентифікатор оÑновної Ñлужби " @@ -161,7 +166,7 @@ msgstr "" "<abbr title=\"Domain Name System — ÑиÑтема доменних імен\">DNS</abbr>-" "Ñервери буде опитано в порÑдку, визначеному файлом <em>resolvfile</em>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "<abbr title=\"Extended Service Set Identifier — ідентифікатор розширеної " @@ -321,14 +326,14 @@ msgstr "Ðомер ATM-приÑтрою" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:117 msgid "ATU-C System Vendor ID" -msgstr "" +msgstr "Ідентифікатор поÑтачальника ÑиÑтеми ATU-C" #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:19 msgid "Access Concentrator" msgstr "Концентратор доÑтупу" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Точка доÑтупу" @@ -418,6 +423,10 @@ msgstr "ÐдреÑа Ð´Ð»Ñ Ð´Ð¾Ñтупу до моÑту локального msgid "Administration" msgstr "ÐдмініÑтруваннÑ" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "Додатково" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -433,7 +442,7 @@ msgstr "Додаткові параметри" msgid "Aggregate Transmit Power(ACTATP)" msgstr "Сумарна потужніÑÑ‚ÑŒ передаваннÑ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "Тривога" @@ -466,15 +475,15 @@ msgstr "" "Дозволити <abbr title=\"Secure Shell — безпечна оболонка\">SSH</abbr>-" "перевірку паролÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" "Дозволити режиму AP Ð²Ñ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð°Ð±Ð¾Ð½ÐµÐ½Ñ‚Ñ–Ð² на підÑтаві низького Ñ€Ñ–Ð²Ð½Ñ <abbr " "title=\"ÐŸÑ–Ð´Ñ‚Ð²ÐµÑ€Ð´Ð¶ÐµÐ½Ð½Ñ (Acknowledge) уÑпішноÑÑ‚Ñ– Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ TCP-Ñегменту\">ACK</" "abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Дозволити вÑÑ–, крім зазначених" @@ -482,8 +491,8 @@ msgstr "Дозволити вÑÑ–, крім зазначених" msgid "Allow legacy 802.11b rates" msgstr "Дозволити заÑтарілі швидкоÑÑ‚Ñ– 802.11b" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Дозволити тільки зазначені" @@ -612,7 +621,7 @@ msgstr "Оголошено DNS-домени" msgid "Announced DNS servers" msgstr "Оголошено DNS-Ñервери" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "Ðнонімне поÑвідченнÑ" @@ -688,7 +697,7 @@ msgstr "З’єднань" msgid "Auth Group" msgstr "Група автентифікації" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "ÐвтентифікаціÑ" @@ -710,8 +719,8 @@ msgstr "Потрібна авторизаціÑ" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "Ðвтоматичне оновленнÑ" @@ -850,6 +859,8 @@ msgid "" "Bind dynamically to interfaces rather than wildcard address (recommended as " "linux default)" msgstr "" +"Прив’Ñзувати динамічно до інтерфейÑів, а не за шаблоном адреÑи (типово Ð´Ð»Ñ " +"linux, рекомендовано)" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:16 msgid "Bind interface" @@ -1012,7 +1023,7 @@ msgstr "" "або заповніть поле <em>Ñтворити</em>, щоб визначити нову зону Ñ– прикріпити " "до неї інтерфейÑ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -1020,7 +1031,7 @@ msgstr "" "Оберіть мережі, Ñкі ви хочете прикріпити до цього бездротового інтерфейÑу " "або заповніть поле <em>Ñтворити</em>, щоб визначити нову мережу." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "Шифр" @@ -1045,7 +1056,7 @@ msgstr "" "(ПРИМІТКÐ: ЦЕ ФУÐКЦІЯ ДЛЯ ПРОФЕСІОÐÐЛІВ!)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Клієнт" @@ -1105,7 +1116,7 @@ msgstr "Примітка" msgid "Common Configuration" msgstr "Загальна конфігураціÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1209,11 +1220,11 @@ msgstr "Створити інтерфейÑ" msgid "Create a bridge over multiple interfaces" msgstr "Створити міÑÑ‚ через кілька інтерфейÑів" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "Критичний" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Рівень Ð²Ð¸Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ— Cron" @@ -1249,15 +1260,15 @@ msgstr "" "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ð²ÐµÐ´Ñ–Ð½ÐºÐ¸ <abbr title=\"Light Emitting Diode — Ñвітлодіод" "\">LED</abbr>, Ñкщо це можливо." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "Клієнт DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "Порт DAE" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "Секрет DAE" @@ -1341,7 +1352,7 @@ msgstr "Стан DSL" msgid "DSL line mode" msgstr "Режим лінії DSL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" "Інтервал <abbr title=\"Delivery Traffic Indication Message — ÐŸÐ¾Ð²Ñ–Ð´Ð¾Ð¼Ð»ÐµÐ½Ð½Ñ " @@ -1355,14 +1366,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "Швидк. передаваннÑ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "ЗневаджуваннÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "Типово %d" @@ -1416,7 +1427,7 @@ msgstr "Видалити ключ" msgid "Delete this network" msgstr "Видалити цю мережу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "Інтервал повідомлень індикації Ð´Ð¾Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð½Ñ Ñ‚Ñ€Ð°Ñ„Ñ–ÐºÑƒ" @@ -1488,7 +1499,7 @@ msgstr "" msgid "Disable Encryption" msgstr "Вимкнути шифруваннÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "Вимкнути Ð¾Ð¿Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð½ÐµÐ°ÐºÑ‚Ð¸Ð²Ð½Ð¾ÑÑ‚Ñ–" @@ -1506,11 +1517,11 @@ msgstr "Вимкнути цю мережу" msgid "Disabled" msgstr "Вимкнено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "Вимкнено (типово)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "Роз'єднувати за низького підтвердженнÑ" @@ -1654,7 +1665,7 @@ msgstr "" msgid "EA-bits length" msgstr "Довжина EA-бітів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-Метод" @@ -1681,7 +1692,7 @@ msgstr "Редагувати цей інтерфейÑ" msgid "Edit this network" msgstr "Редагувати цю мережу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "Ðварійний" @@ -1722,7 +1733,7 @@ msgstr "Увімкнути ÑƒÐ·Ð³Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ IPv6 Ð´Ð»Ñ PPP-Ð·â€™Ñ”Ð´Ð½Ð°Ð½Ñ msgid "Enable Jumbo Frame passthrough" msgstr "ПропуÑкати Jumbo-фрейми" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "Увімкнути клієнта NTP" @@ -1738,11 +1749,11 @@ msgstr "Увімкнути TFTP-Ñервер" msgid "Enable VLAN functionality" msgstr "Увімкнути підтримку VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "Увімкнути кнопку WPS, потребує WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "Увімкнути протидію<br />перевÑтановленню ключів (KRACK)" @@ -1788,7 +1799,7 @@ msgstr "Увімкнено" msgid "Enables IGMP snooping on this bridge" msgstr "Вмикає відÑÑ‚ÐµÐ¶ÐµÐ½Ð½Ñ IGMP на цьому моÑту" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1808,7 +1819,7 @@ msgstr "Режим інкапÑулÑції" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1839,7 +1850,7 @@ msgstr "ВидаленнÑ..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Помилка" @@ -1872,7 +1883,6 @@ msgid "Expires" msgstr "Збігає за" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:488 -#, fuzzy msgid "" "Expiry time of leased addresses, minimum is 2 minutes (<code>2m</code>)." msgstr "Термін оренди адреÑ, мінімум 2 хвилини (<code>2m</code>)." @@ -1881,23 +1891,23 @@ msgstr "Термін оренди адреÑ, мінімум 2 хвилини (< msgid "External" msgstr "Зовнішнє" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "Зовнішній ÑпиÑок влаÑників ключів R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "Зовнішній ÑпиÑок влаÑників ключів R1" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "Зовнішній Ñервер ÑиÑтемного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "Порт зовнішнього Ñервера ÑиÑтемного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "Протокол зовнішнього Ñервера ÑиÑтемного журналу" @@ -1905,15 +1915,15 @@ msgstr "Протокол зовнішнього Ñервера ÑиÑтемноРmsgid "Extra SSH command options" msgstr "Додаткові параметри команд SSH" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "FT через DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "FT через повітрÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "Протокол FT" @@ -2025,7 +2035,7 @@ msgstr "ПримуÑово" msgid "Force 40MHz mode" msgstr "ПримуÑово заÑтоÑовувати режим '40MHz'" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "ПримуÑово CCMP (AES)" @@ -2033,11 +2043,11 @@ msgstr "ПримуÑово CCMP (AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "ПримуÑово DHCP у цій мережі, навіть Ñкщо виÑвлено інший Ñервер." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "ПримуÑово TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "ПримуÑово TKIP та CCMP (AES)" @@ -2078,7 +2088,7 @@ msgid "Forwarding mode" msgstr "Режим переÑпрÑмовуваннÑ" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Поріг фрагментації" @@ -2142,7 +2152,7 @@ msgstr "Загальні налаштуваннÑ" msgid "Generate Config" msgstr "Cтворити конфігурацію" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "Генерувати PMK локально" @@ -2169,7 +2179,7 @@ msgstr "Глобальні параметри мережі" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "Перейти до конфігурації паролÑ..." @@ -2205,6 +2215,8 @@ msgstr "Призупинити" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:114 msgid "Header Error Code Errors (HEC)" msgstr "" +"Помилки коду помилок заголовка (<abbr title=\"Header Error Control\">HEC" +"</abbr>)" #: modules/luci-mod-system/luasrc/model/cbi/admin_system/leds.lua:56 msgid "Heartbeat intervall (%s)" @@ -2218,9 +2230,9 @@ msgstr "" "Тут ви можете налаштувати оÑновні параметри виглÑду вашого приÑтрою, такі Ñк " "назва (ім’Ñ) вузла або чаÑовий поÑÑ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "" "Приховати <abbr title=\"Extended Service Set Identifier — ідентифікатор " @@ -2256,7 +2268,7 @@ msgstr "ЗміÑÑ‚ тегу Host-Uniq" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Ðазва (ім’Ñ) вузла" @@ -2479,7 +2491,7 @@ msgstr "IPv6 через IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6 через IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "ПоÑвідченнÑ" @@ -2598,7 +2610,7 @@ msgstr "Тайм-аут бездіÑльноÑÑ‚Ñ–" msgid "Inbound:" msgstr "Вхідний:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "ІнформаціÑ" @@ -2652,7 +2664,7 @@ msgstr "ОглÑд інтерфейÑів" msgid "Interface is reconnecting..." msgstr "ÐŸÐµÑ€ÐµÐ¿Ñ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ñ–Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñу..." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "Ð†Ð¼â€™Ñ Ñ–Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñу" @@ -2695,7 +2707,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "ÐеприпуÑтиме Ñ–Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача та/або пароль! Спробуйте ще раз." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "Ізолювати клієнтів" @@ -2711,7 +2723,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "Потрібен JavaScript!" @@ -2740,15 +2752,16 @@ msgstr "Журнал Ñдра" msgid "Kernel Version" msgstr "ВерÑÑ–Ñ Ñдра" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "Ключ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "Ключ #%d" @@ -2791,7 +2804,7 @@ msgstr "LLC" msgid "Label" msgstr "Мітка" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Мова" @@ -2880,7 +2893,7 @@ msgstr "" "СпиÑок <abbr title=\"Domain Name System\">DNS</abbr>-Ñерверів Ð´Ð»Ñ " "переÑпрÑÐ¼Ð¾Ð²ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñ–Ð²" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2896,7 +2909,7 @@ msgstr "" "ключа R0\">R0KH</abbr>, Ñк Ñтанції, що була викориÑтана під Ñ‡Ð°Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð¾Ñ— " "аÑоціації домену мобільноÑÑ‚Ñ–." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2994,7 +3007,7 @@ msgid "Local Startup" msgstr "Локальний запуÑк" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "МіÑцевий чаÑ" @@ -3037,7 +3050,7 @@ msgstr "Локалізувати запити" msgid "Locked to channel %s used by: %s" msgstr "Заблоковано до каналу %s, Ñкий викориÑтовує: %s" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "Рівень Ð²Ð¸Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ–Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ– до журналу" @@ -3059,7 +3072,8 @@ msgstr "Вийти" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:112 msgid "Loss of Signal Seconds (LOSS)" -msgstr "" +msgstr "Втрата Ñигналу в Ñекундах (<abbr title=\"Loss of Signal Seconds\">LOSS" +"</abbr>)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:476 msgid "Lowest leased address as offset from the network address." @@ -3079,8 +3093,8 @@ msgstr "MAC" msgid "MAC-Address" msgstr "MAC-адреÑа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Фільтр MAC-адреÑ" @@ -3089,8 +3103,8 @@ msgstr "Фільтр MAC-адреÑ" msgid "MAC-Filter" msgstr "MAC-фільтр" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-ÑпиÑок" @@ -3142,7 +3156,7 @@ msgstr "Вручну" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "МакÑ. доÑÑжна швидкіÑÑ‚ÑŒ передачі даних (ATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "МакÑимальний дозволений інтервал проÑлуховуваннÑ" @@ -3216,7 +3230,7 @@ msgstr "Дзеркало вихідного порту" msgid "Missing protocol extension for proto %q" msgstr "ВідÑутні Ñ€Ð¾Ð·ÑˆÐ¸Ñ€ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñ‚Ð¾ÐºÐ¾Ð»Ñƒ %q" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "Домен мобільноÑÑ‚Ñ–" @@ -3253,9 +3267,9 @@ msgstr "Помилка запиту інформації про модем" msgid "Modem init timeout" msgstr "Тайм-аут ініціалізації модему" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "ДиÑпетчер" @@ -3318,7 +3332,7 @@ msgstr "Вниз" msgid "Move up" msgstr "Вгору" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "Ідентифікатор NAS" @@ -3342,7 +3356,7 @@ msgstr "NDP-прокÑÑ–" msgid "NT Domain" msgstr "Домен NT" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "Кандидати Ð´Ð»Ñ Ñинхронізації Ñервера NTP" @@ -3371,7 +3385,7 @@ msgstr "МаÑка мережі" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3445,13 +3459,13 @@ msgstr "Ð†Ð¼â€™Ñ Ð¼ÐµÑ€ÐµÐ¶Ñ– не визначено" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "Пароль не вÑтановлено!" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:116 msgid "No public keys present yet." -msgstr "Відкритих ключів поки що немає" +msgstr "Відкритих ключів поки що немає." #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js:83 msgid "No rules in this chain." @@ -3459,7 +3473,7 @@ msgstr "У цьму ланцюжку нема правил." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:146 msgid "No scan results available yet..." -msgstr "Результати ÑÐºÐ°Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°Ñ€Ð°Ð·Ñ– недоÑтупні" +msgstr "Результати ÑÐºÐ°Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð°Ñ€Ð°Ð·Ñ– недоÑтупні…" #: modules/luci-mod-network/luasrc/view/admin_network/iface_overview.htm:7 msgid "No zone assigned" @@ -3494,7 +3508,7 @@ msgstr "Без шаблону заміни" msgid "None" msgstr "Жоден" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "Ðормальний" @@ -3516,7 +3530,7 @@ msgstr "Ðе підключено" msgid "Note: interface name length" msgstr "Примітка: довжина імені інтерфейÑу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "ПопередженнÑ" @@ -3528,7 +3542,7 @@ msgstr "DNS-запит" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "КількіÑÑ‚ÑŒ кешованих запиÑів DNS (макÑ. - 10000, 0 - без кешуваннÑ)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "КількіÑÑ‚ÑŒ паралельних потоків, що викориÑтовуютьÑÑ Ð´Ð»Ñ ÑтиÑненнÑ" @@ -3610,7 +3624,7 @@ msgstr "ÐžÐ¿Ñ†Ñ–Ñ Ð·Ð¼Ñ–Ð½ÐµÐ½Ð°" msgid "Option removed" msgstr "ÐžÐ¿Ñ†Ñ–Ñ Ð²Ð¸Ð´Ð°Ð»ÐµÐ½Ð°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "Ðеобов’Ñзково" @@ -3732,7 +3746,7 @@ msgstr "Перевизначити TOS" msgid "Override TTL" msgstr "Перевизначити TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "ÐŸÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñ‚Ð¸Ð¿Ð¾Ð²Ð¾Ð³Ð¾ імені інтерфейÑу" @@ -3799,7 +3813,7 @@ msgstr "" msgid "PIN code rejected" msgstr "PIN-код відхилено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "ÐŸÑ€Ð¾ÑˆÑ‚Ð¾Ð²Ñ…ÑƒÐ²Ð°Ð½Ñ PMK R1" @@ -3829,11 +3843,11 @@ msgstr "PPtP" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:59 msgid "PSID offset" -msgstr "" +msgstr "ЗÑув PSID" #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:56 msgid "PSID-bits length" -msgstr "" +msgstr "Довжина PSID у бітах" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/network.lua:123 msgid "PTM/EFM (Packet Transfer Mode)" @@ -3852,7 +3866,7 @@ msgid "Part of zone %q" msgstr "ЧаÑтина зони %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3863,11 +3877,11 @@ msgstr "Пароль" msgid "Password authentication" msgstr "ÐÐ²Ñ‚ÐµÐ½Ñ‚Ð¸Ñ„Ñ–ÐºÐ°Ñ†Ñ–Ñ Ð·Ð° паролем" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Пароль закритого ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "Пароль внутрішнього закритого ключа" @@ -3879,27 +3893,27 @@ msgstr "Пароль2" msgid "Paste or drag SSH key file…" msgstr "Ð’Ñтавте або перетÑгніть файл SSH-ключа…" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "ШлÑÑ… до центру Ñертифікції" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "ШлÑÑ… до Ñертифікату клієнта" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "ШлÑÑ… до закритого ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "ШлÑÑ… до внутрішнього CA-Ñертифікату" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "ШлÑÑ… до внутрішнього Ñертифікату клієнта" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "ШлÑÑ… до внутрішнього закритого ключа" @@ -3977,6 +3991,14 @@ msgstr "Введіть Ñ–Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача Ñ– пароль." msgid "Policy" msgstr "Політика" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "Інтервал опитуваннÑ" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "Інтервал Ð¾Ð¿Ð¸Ñ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñ‚Ñ–Ð² Ñтану (Ñекунди)" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Порт" @@ -4026,8 +4048,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "Перешкоджати проÑлуховуванню цих інтерфейÑів." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Перешкоджати Ñпілкуванню клієнт-клієнт" @@ -4068,7 +4090,7 @@ msgstr "Протокол нового інтерфейÑу" msgid "Protocol support is not installed" msgstr "Підтримка протоколу не інÑтальована" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "Забезпечувати Ñервер NTP" @@ -4076,7 +4098,7 @@ msgstr "Забезпечувати Ñервер NTP" msgid "Provide new network" msgstr "Укажіть нову мережу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "ПÑевдо Ad-Hoc (ahdemo)" @@ -4117,11 +4139,11 @@ msgstr "" "Запит уÑÑ–Ñ… наÑвних виÑхідних <abbr title=\"Domain Name System — ÑиÑтема " "доменних імен\">DNS</abbr>-Ñерверів" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "ТриваліÑÑ‚ÑŒ Ð¶Ð¸Ñ‚Ñ‚Ñ ÐºÐ»ÑŽÑ‡Ð° R0" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "ВлаÑник ключа R1" @@ -4129,8 +4151,12 @@ msgstr "ВлаÑник ключа R1" msgid "RFC3947 NAT-T mode" msgstr "Режим RFC3947 NAT-T" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "Поріг RSSI Ð´Ð»Ñ Ð¿Ñ€Ð¸Ñ”Ð´Ð½Ð°Ð½Ð½Ñ" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "Поріг RTS/CTS" @@ -4144,27 +4170,27 @@ msgstr "Одержано" msgid "RX Rate" msgstr "ШвидкіÑÑ‚ÑŒ прийманнÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Порт Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Секрет Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Сервер Radius-Accounting" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Порт Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Секрет Radius-Authentication" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Сервер Radius-Authentication" @@ -4228,7 +4254,7 @@ msgstr "Трафік у реальному чаÑÑ–" msgid "Realtime Wireless" msgstr "Бездротові мережі у реальному чаÑÑ–" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "Кінцевий термін реаÑÑоціації" @@ -4322,7 +4348,7 @@ msgstr "Запит IPv6-адреÑи" msgid "Request IPv6-prefix of length" msgstr "Запит довжини IPv6-префікÑу" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "ВимагаєтьÑÑ" @@ -4344,23 +4370,25 @@ msgid "" "the tunnel. Usually the peer's tunnel IP addresses and the networks the peer " "routes through the tunnel." msgstr "" -"ВимагаєтьÑÑ. IP-адреÑи та префікÑи, Ñкі цьому вузлу дозволено викориÑтовувати " -"вÑередині тунелю. Зазвичай тунельні IP-адреÑи вузла та мережі маршрутів вузла " -"через тунель." +"ВимагаєтьÑÑ. IP-адреÑи та префікÑи, Ñкі цьому вузлу дозволено " +"викориÑтовувати вÑередині тунелю. Зазвичай тунельні IP-адреÑи вузла та " +"мережі маршрутів вузла через тунель." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" "Потребує \"повної\" верÑÑ–Ñ— wpad/hostapd та підтримки драйвером WiFi <br /" -">(Ñтаном на лютий 2017 року: ath9k та ath10k, у LEDE також mwlwifi та mt76)" +">(Ñтаном на Ñічень 2019 року: ath9k, ath10k, mwlwifi та mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" "Requires upstream supports DNSSEC; verify unsigned domain responses really " "come from unsigned domains" msgstr "" +"Потребує підтримки виÑхідною мережею DNSSEC; переконайтеÑÑ, що відповіді " +"непідпиÑаного домену дійÑно походÑÑ‚ÑŒ із непідпиÑаних доменів" #: modules/luci-base/luasrc/view/cbi/delegator.htm:17 #: modules/luci-base/luasrc/view/cbi/footer.htm:30 @@ -4550,7 +4578,7 @@ msgstr "Зберегти вміÑÑ‚ mtdblock" #: modules/luci-mod-system/htdocs/luci-static/resources/view/system/sshkeys.js:120 msgid "Saving keys…" -msgstr "" +msgstr "Ð—Ð±ÐµÑ€ÐµÐ¶ÐµÐ½Ð½Ñ ÐºÐ»ÑŽÑ‡Ñ–Ð²â€¦" #: modules/luci-mod-network/luasrc/view/admin_network/wifi_overview.htm:15 msgid "Scan" @@ -4600,7 +4628,7 @@ msgstr "" "ÐадÑилати ехо-пакети LCP зі вказаним інтервалом (Ñекунди), ефективно тільки " "в поєднанні з порогом помилок" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "РозділÑти клієнтів" @@ -4637,7 +4665,7 @@ msgstr "" "ВлаÑтивоÑÑ‚Ñ– інтерфейÑу вÑтановлюютьÑÑ Ð½ÐµÐ·Ð°Ð»ÐµÐ¶Ð½Ð¾ від каналу зв’Ñзку (Ñкщо " "позначено, обробник Ð°Ð²Ñ‚Ð¾Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½Ðµ викликаєтьÑÑ Ð¿Ñ€Ð¸ змінах)." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñинхронізації чаÑу" @@ -4656,12 +4684,14 @@ msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ DHCP-Ñервера" #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:111 msgid "Severely Errored Seconds (SES)" msgstr "" +"Секунди з великою кількіÑÑ‚ÑŽ помилок помилок (<abbr title=\"Severely Errored " +"Seconds\">SES</abbr>)" #: modules/luci-base/luasrc/view/wifi_assoclist.htm:31 msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Коротка преамбула" @@ -4704,7 +4734,7 @@ msgstr "Розмір" msgid "Size of DNS query cache" msgstr "Розмір кешу запитів DNS" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "Розмір приÑтрою ZRam у мегабайтах" @@ -4785,19 +4815,23 @@ msgstr "" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:30 msgid "Specify a TOS (Type of Service)." -msgstr "" +msgstr "Вкажіть TOS (Type of Service — тип поÑлуги)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:25 msgid "" "Specify a TTL (Time to Live) for the encapsulating packet other than the " "default (64)." msgstr "" +"Вкажіть TTL (Time to Live — Ñ‡Ð°Ñ Ð¶Ð¸Ñ‚Ñ‚Ñ) Ð´Ð»Ñ Ð¿Ð°ÐºÐµÑ‚Ð° інкапÑулÑції, відмінний " +"від типового (64)." #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:20 msgid "" "Specify an MTU (Maximum Transmission Unit) other than the default (1280 " "bytes)." msgstr "" +"Вкажіть MTU (Maximum Transmission Unit — макÑимальний блок передаваннÑ), " +"відмінний від типового (1280 байт)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:60 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:69 @@ -4856,7 +4890,7 @@ msgstr "" "конфігурацій інтерфейÑів, коли обÑлуговуютьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ вузли з відповідною " "орендою." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "ÐžÐ±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð±ÐµÐ·Ð´Ñ–ÑльноÑÑ‚Ñ– Ñтанції" @@ -4962,7 +4996,7 @@ msgstr "СиÑтемний журнал" msgid "System Properties" msgstr "ВлаÑтивоÑÑ‚Ñ– ÑиÑтеми" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "Розмір буфера ÑиÑтемного журналу" @@ -5011,7 +5045,6 @@ msgid "Terminate" msgstr "Завершити" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:27 -#, fuzzy msgid "" "The <em>Device Configuration</em> section covers physical settings of the " "radio hardware such as channel, transmit power or antenna selection which " @@ -5039,11 +5072,13 @@ msgid "" "The HE.net endpoint update configuration changed, you must now use the plain " "username instead of the user ID!" msgstr "" +"Конфігурацію Ð¾Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ ÐºÑ–Ð½Ñ†ÐµÐ²Ð¾Ñ— точки HE.net змінено, тепер потрібно " +"викориÑтовувати звичайне Ñ–Ð¼â€™Ñ ÐºÐ¾Ñ€Ð¸Ñтувача заміÑÑ‚ÑŒ ідентифікатора кориÑтувача!" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:8 msgid "" "The IPv4 address or the fully-qualified domain name of the remote tunnel end." -msgstr "" +msgstr "ÐдреÑа IPv4 або повне доменне Ñ–Ð¼â€™Ñ Ð²Ñ–Ð´Ð´Ð°Ð»ÐµÐ½Ð¾Ð³Ð¾ ÐºÑ–Ð½Ñ†Ñ Ñ‚ÑƒÐ½ÐµÐ»ÑŽ." #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_6rd.lua:27 #: protocols/luci-proto-ipv6/luasrc/model/cbi/admin_network/proto_map.lua:38 @@ -5138,7 +5173,6 @@ msgid "The given network name is not unique" msgstr "Задане мережеве Ñ–Ð¼â€™Ñ Ð½Ðµ Ñ” унікальним" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi_add.lua:52 -#, fuzzy msgid "" "The hardware is not multi-SSID capable and the existing configuration will " "be replaced if you proceed." @@ -5160,7 +5194,7 @@ msgstr "Довжина IPv6-префікÑа в бітах" #: protocols/luci-proto-ipip/luasrc/model/cbi/admin_network/proto_ipip.lua:12 msgid "The local IPv4 address over which the tunnel is created (optional)." -msgstr "" +msgstr "Локальна адреÑа IPv4, за Ñкою ÑтворюєтьÑÑ Ñ‚ÑƒÐ½ÐµÐ»ÑŒ (необов'Ñзково)." #: modules/luci-mod-network/luasrc/model/cbi/admin_network/vlan.lua:5 msgid "" @@ -5187,7 +5221,7 @@ msgstr "Обраний протокол потребує призначених #: modules/luci-base/luasrc/view/csrftoken.htm:11 msgid "The submitted security token is invalid or already expired!" -msgstr "" +msgstr "Поданий маркер безпеки недійÑний або вже збіг!" #: modules/luci-mod-system/luasrc/controller/admin/system.lua:265 msgid "" @@ -5198,7 +5232,6 @@ msgstr "" "перезавантажитьÑÑ." #: modules/luci-mod-system/luasrc/controller/admin/system.lua:186 -#, fuzzy msgid "" "The system is flashing now.<br /> DO NOT POWER OFF THE DEVICE!<br /> Wait a " "few minutes before you try to reconnect. It might be necessary to renew the " @@ -5222,7 +5255,7 @@ msgstr "" "Завантажений файл образу не міÑтить підтримуваний формат. ПереконайтеÑÑ, що " "ви вибираєте універÑальний формат образу Ð´Ð»Ñ Ð²Ð°ÑˆÐ¾Ñ— платформи." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Тема" @@ -5255,7 +5288,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5358,20 +5391,20 @@ msgstr "Ð¦Ñ Ñторінка надає оглÑд поточних активРmsgid "This section contains no values yet" msgstr "Ð¦Ñ ÑÐµÐºÑ†Ñ–Ñ Ð¿Ð¾ÐºÐ¸ що не міÑтить значень" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ñ–Ð·Ð°Ñ†Ñ–Ñ Ñ‡Ð°Ñу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "Синхронізацію чаÑу не налаштовано." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "Інтервал чаÑу Ð´Ð»Ñ Ð·Ð¼Ñ–Ð½Ð¸ ключа GTK" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "ЧаÑовий поÑÑ" @@ -5414,7 +5447,7 @@ msgstr "Трафік" msgid "Transfer" msgstr "Передано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "ШвидкіÑÑ‚ÑŒ передаваннÑ" @@ -5721,11 +5754,11 @@ msgstr "" msgid "Used" msgstr "ВикориÑтано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "ВикориÑтовуєтьÑÑ Ñлот ключа" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5806,18 +5839,18 @@ msgstr "Перевірте" msgid "Virtual dynamic interface" msgstr "Віртуальний динамічний інтерфейÑ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "Відкрита ÑиÑтема WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "Спільний ключ WEP" @@ -5825,8 +5858,8 @@ msgstr "Спільний ключ WEP" msgid "WEP passphrase" msgstr "Парольна фраза WEP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "Режим <abbr title=\"Wi-Fi Multimedia\">WMM</abbr>" @@ -5834,9 +5867,9 @@ msgstr "Режим <abbr title=\"Wi-Fi Multimedia\">WMM</abbr>" msgid "WPA passphrase" msgstr "Парольна фраза WPA" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5860,8 +5893,8 @@ msgstr "ÐžÑ‡Ñ–ÐºÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°ÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ—â€ msgid "Waiting for device..." msgstr "Очікуємо приÑтрій..." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "ЗаÑтереженнÑ" @@ -5870,7 +5903,7 @@ msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" "ЗаÑтереженнÑ: Є незбережені зміни, Ñкі буде втрачено при перезавантаженні!" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5960,7 +5993,7 @@ msgstr "Бездротову мережу ввімкнено" msgid "Write received DNS requests to syslog" msgstr "ЗапиÑувати отримані DNS-запити до ÑиÑтемного журналу" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "ЗапиÑувати cиÑтемний журнал до файлу" @@ -5983,7 +6016,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -6000,19 +6033,19 @@ msgstr "" "Поновіть його, принаймні, до верÑÑ–Ñ— 7 або ÑкориÑтайтеÑÑŒ іншим браузером, " "таким Ñк Firefox, Opera або Safari." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "Ðлгоритм ÑтиÑÐ½ÐµÐ½Ð½Ñ ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "Потоки ÑтиÑÐ½ÐµÐ½Ð½Ñ ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ZRam" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "Розмір ZRam" @@ -6027,7 +6060,7 @@ msgstr "будь-Ñкий" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -6055,7 +6088,7 @@ msgstr "Ñтворити:" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:264 msgid "creates a bridge over specified interface(s)" -msgstr "Створює міÑÑ‚ через зазначені інтерфейÑи" +msgstr "Створити міÑÑ‚ через зазначені інтерфейÑи" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_join.js:24 #: modules/luci-mod-status/luasrc/view/admin_status/wireless.htm:277 @@ -6080,8 +6113,8 @@ msgstr "дБ" msgid "dBm" msgstr "дБм" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "вимкнено" @@ -6187,7 +6220,7 @@ msgstr "" "Локальний <abbr title=\"Domain Name System — ÑиÑтема доменних імен\">DNS</" "abbr>-файл" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "хв." @@ -6220,7 +6253,7 @@ msgstr "не приÑутній" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "вимкнено" @@ -6228,7 +6261,7 @@ msgstr "вимкнено" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "увімкнено" @@ -6274,8 +6307,8 @@ msgstr "режим реле" msgid "routed" msgstr "ÑпрÑмовано" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "Ñ" @@ -6300,7 +6333,7 @@ msgstr "БЕЗ та ЗІ збереженнÑм Ñтану" msgid "tagged" msgstr "позначено" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "одиниці чаÑу (TUs / 1.024 ms) [1000-65535]" @@ -6333,135 +6366,135 @@ msgstr "не позначено" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address" -msgstr "" +msgstr "дійÑна IP-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:310 msgid "valid IP address or prefix" -msgstr "" +msgstr "дійÑна IP-адреÑа або префікÑ" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:345 msgid "valid IPv4 CIDR" -msgstr "" +msgstr "дійÑна IPv4 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address" -msgstr "" +msgstr "дійÑна IPv4-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:318 msgid "valid IPv4 address or network" -msgstr "" +msgstr "дійÑна IPv4-адреÑа або мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:438 msgid "valid IPv4 address:port" -msgstr "" +msgstr "дійÑна IPv4-адреÑа:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:378 msgid "valid IPv4 network" -msgstr "" +msgstr "дійÑна IPv4-мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:340 msgid "valid IPv4 or IPv6 CIDR" -msgstr "" +msgstr "дійÑна IPv4 або IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:331 msgid "valid IPv4 prefix value (0-32)" -msgstr "" +msgstr "дійÑне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ IPv4-префікÑу (0-32)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:350 msgid "valid IPv6 CIDR" -msgstr "" +msgstr "дійÑна IPv6 CIDR" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address" -msgstr "" +msgstr "дійÑна IPv6-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:326 msgid "valid IPv6 address or prefix" -msgstr "" +msgstr "дійÑна IPv6-адреÑа або префікÑ" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:368 msgid "valid IPv6 host id" -msgstr "" +msgstr "дійÑний IPv6-ідентифікатор хоÑта" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:383 msgid "valid IPv6 network" -msgstr "" +msgstr "дійÑна IPv6-мережа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:336 msgid "valid IPv6 prefix value (0-128)" -msgstr "" +msgstr "дійÑне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ IPv6-префікÑу (0-128)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:404 msgid "valid MAC address" -msgstr "" +msgstr "дійÑна MAC-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:475 msgid "valid UCI identifier" -msgstr "" +msgstr "дійÑний UCI-ідентифікатор" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:426 msgid "valid UCI identifier, hostname or IP address" -msgstr "" +msgstr "дійÑний UCI-ідентифікатор, Ñ–Ð¼â€™Ñ Ñ…Ð¾Ñта або IP-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:447 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:450 msgid "valid address:port" -msgstr "" +msgstr "дійÑна адреÑа:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:585 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:589 msgid "valid date (YYYY-MM-DD)" -msgstr "" +msgstr "дійÑна дата (Ð Ð Ð Ð -ММ-ДД)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:301 msgid "valid decimal value" -msgstr "" +msgstr "дійÑне деÑÑткове значеннÑ" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:469 msgid "valid hexadecimal WEP key" -msgstr "" +msgstr "дійÑний шіÑтнадцÑтковий ключ WEP" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:457 msgid "valid hexadecimal WPA key" -msgstr "" +msgstr "дійÑний шіÑтнадцÑтковий ключ WPA" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:432 msgid "valid host:port" -msgstr "" +msgstr "дійÑне Ñ–Ð¼â€™Ñ Ñ…Ð¾Ñта:порт" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:419 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:421 msgid "valid hostname" -msgstr "" +msgstr "дійÑне Ñ–Ð¼â€™Ñ Ñ…Ð¾Ñта" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:409 msgid "valid hostname or IP address" -msgstr "" +msgstr "дійÑне Ñ–Ð¼â€™Ñ Ñ…Ð¾Ñта або IP-адреÑа" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:293 msgid "valid integer value" -msgstr "" +msgstr "дійÑне ціле значеннÑ" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:373 msgid "valid network in address/netmask notation" -msgstr "" +msgstr "дійÑна мережа в запиÑÑ– адреÑа/маÑка мережі" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:560 msgid "valid phone digit (0-9, \"*\", \"#\", \"!\" or \".\")" -msgstr "" +msgstr "дійÑний Ñимвол номера телефону (0-9, \"*\", \"#\", \"!\" or \".\")" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:396 #: modules/luci-base/htdocs/luci-static/resources/cbi.js:399 msgid "valid port or port range (port1-port2)" -msgstr "" +msgstr "дійÑний порт або діапазон портів (порт1-порт2)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:388 msgid "valid port value" -msgstr "" +msgstr "дійÑне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ñ€Ñ‚Ñƒ" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:565 msgid "valid time (HH:MM:SS)" -msgstr "" +msgstr "дійÑний Ñ‡Ð°Ñ (ГГ:ХХ:СС)" #: modules/luci-base/htdocs/luci-static/resources/cbi.js:494 msgid "value between %d and %d characters" diff --git a/modules/luci-base/po/vi/base.po b/modules/luci-base/po/vi/base.po index dbb7ad8aaa..928912fb02 100644 --- a/modules/luci-base/po/vi/base.po +++ b/modules/luci-base/po/vi/base.po @@ -57,16 +57,16 @@ msgstr "" msgid "-- Additional Field --" msgstr "---Mục bổ sung---" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "--Hãy chá»n--" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "--tùy chỉnh--" @@ -90,6 +90,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "" @@ -98,7 +102,7 @@ msgstr "" msgid "15 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -110,35 +114,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Dịch vụ căn bản đặt Identifier\">BSSID</abbr>" @@ -156,7 +160,7 @@ msgid "" "order of the resolvfile" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Mở rá»™ng dịch vụ đặt Identifier\">ESSID</abbr>" @@ -300,7 +304,7 @@ msgid "Access Concentrator" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "Äiểm truy cáºp" @@ -390,6 +394,10 @@ msgstr "" msgid "Administration" msgstr "Quản trị" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -405,7 +413,7 @@ msgstr "" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "" @@ -436,12 +444,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "Cho phép <abbr title=\"Secure Shell\">SSH</abbr> xác thá»±c máºt mã" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "Cho phép tất cả trừ danh sách liệt kê" @@ -449,8 +457,8 @@ msgstr "Cho phép tất cả trừ danh sách liệt kê" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "Chỉ cho phép danh sách liệt kê" @@ -570,7 +578,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -642,7 +650,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "Xác thá»±c" @@ -664,8 +672,8 @@ msgstr "Yêu cầu ủy quyá»n" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "" @@ -955,13 +963,13 @@ msgid "" "interface to it." msgstr "Giao diện nà y chÆ°a thuá»™c vá» bất kỳ firewall zone nà o." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "" @@ -982,7 +990,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "Client" @@ -1040,7 +1048,7 @@ msgstr "" msgid "Common Configuration" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1136,11 +1144,11 @@ msgstr "" msgid "Create a bridge over multiple interfaces" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "" @@ -1173,15 +1181,15 @@ msgstr "" "Tùy chỉnh chế Ä‘á»™ của thiết bị <abbr title=\"Light Emitting Diode\">LED</" "abbr>s nếu có thể." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1265,7 +1273,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1277,14 +1285,14 @@ msgstr "" msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "" @@ -1335,7 +1343,7 @@ msgstr "" msgid "Delete this network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1405,7 +1413,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1423,11 +1431,11 @@ msgstr "" msgid "Disabled" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1562,7 +1570,7 @@ msgstr "" msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP-Method" @@ -1587,7 +1595,7 @@ msgstr "" msgid "Edit this network" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "" @@ -1626,7 +1634,7 @@ msgstr "" msgid "Enable Jumbo Frame passthrough" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "" @@ -1642,11 +1650,11 @@ msgstr "" msgid "Enable VLAN functionality" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1692,7 +1700,7 @@ msgstr "" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1709,7 +1717,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1740,7 +1748,7 @@ msgstr "" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "Lá»—i" @@ -1781,23 +1789,23 @@ msgstr "" msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1805,15 +1813,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1923,7 +1931,7 @@ msgstr "Force" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "" @@ -1931,11 +1939,11 @@ msgstr "" msgid "Force DHCP on this network even if another server is detected." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "" @@ -1976,7 +1984,7 @@ msgid "Forwarding mode" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "Ngưỡng cá»a Phân Ä‘oạn" @@ -2038,7 +2046,7 @@ msgstr "" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2065,7 +2073,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "" @@ -2114,9 +2122,9 @@ msgstr "" "Ở đây bạn có thể cấu hình những đặc tÃnh cÆ¡ bản của thiết bị nhÆ° tên máy chủ " "hoặc múi giá»." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "Giấu <abbr title=\"Chế Ä‘á»™ mở rá»™ng đặt Identifier\">ESSID</abbr>" @@ -2150,7 +2158,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "Tên host" @@ -2371,7 +2379,7 @@ msgstr "" msgid "IPv6-over-IPv4 (6to4)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "Nháºn dạng" @@ -2482,7 +2490,7 @@ msgstr "" msgid "Inbound:" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "" @@ -2536,7 +2544,7 @@ msgstr "" msgid "Interface is reconnecting..." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2576,7 +2584,7 @@ msgstr "" msgid "Invalid username and/or password! Please try again." msgstr "Tên và máºt mã không đúng. Xin thá» lại " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2593,7 +2601,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "" @@ -2622,15 +2630,16 @@ msgstr "Kernel Log" msgid "Kernel Version" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "PhÃm " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "" @@ -2673,7 +2682,7 @@ msgstr "" msgid "Label" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "Ngôn ngữ" @@ -2758,7 +2767,7 @@ msgid "" "requests to" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2767,7 +2776,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2854,7 +2863,7 @@ msgid "Local Startup" msgstr "" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "GiỠđịa phÆ°Æ¡ng" @@ -2890,7 +2899,7 @@ msgstr "Tra vấn địa phÆ°Æ¡ng" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "" @@ -2932,8 +2941,8 @@ msgstr "" msgid "MAC-Address" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "Lá»c địa chỉ MAC" @@ -2942,8 +2951,8 @@ msgstr "Lá»c địa chỉ MAC" msgid "MAC-Filter" msgstr "Lá»c MAC" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "Danh sách MAC" @@ -2993,7 +3002,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3065,7 +3074,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3102,9 +3111,9 @@ msgstr "" msgid "Modem init timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "Monitor" @@ -3167,7 +3176,7 @@ msgstr "" msgid "Move up" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3191,7 +3200,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "" @@ -3220,7 +3229,7 @@ msgstr "" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3294,7 +3303,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "" @@ -3343,7 +3352,7 @@ msgstr "" msgid "None" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "" @@ -3365,7 +3374,7 @@ msgstr "" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "" @@ -3377,7 +3386,7 @@ msgstr "" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3459,7 +3468,7 @@ msgstr "" msgid "Option removed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3566,7 +3575,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3628,7 +3637,7 @@ msgstr "" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3681,7 +3690,7 @@ msgid "Part of zone %q" msgstr "" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3692,11 +3701,11 @@ msgstr "Máºt mã" msgid "Password authentication" msgstr "Xác thá»±c máºt mã" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "Máºt mã của private key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3708,27 +3717,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "ÄÆ°á»ng dẫn tá»›i CA-Certificate" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "ÄÆ°á»ng dẫn tá»›i private key" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3806,6 +3815,14 @@ msgstr "Nháºp tên và máºt mã" msgid "Policy" msgstr "ChÃnh sách" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "Cá»a " @@ -3853,8 +3870,8 @@ msgstr "" msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "Ngăn chặn giao tiếp giữa client-và -client" @@ -3895,7 +3912,7 @@ msgstr "" msgid "Protocol support is not installed" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "" @@ -3903,7 +3920,7 @@ msgstr "" msgid "Provide new network" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "Pseudo Ad-Hoc (ahdemo)" @@ -3938,11 +3955,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3950,8 +3967,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS Threshold" @@ -3965,27 +3986,27 @@ msgstr "RX" msgid "RX Rate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "" @@ -4041,7 +4062,7 @@ msgstr "" msgid "Realtime Wireless" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4135,7 +4156,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4158,10 +4179,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4403,7 +4424,7 @@ msgid "" "conjunction with failure threshold" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "Cô láºp đối tượng" @@ -4438,7 +4459,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "" @@ -4462,7 +4483,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4505,7 +4526,7 @@ msgstr "Dung lượng " msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4646,7 +4667,7 @@ msgid "" "configurations where only hosts with a corresponding lease are served." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4750,7 +4771,7 @@ msgstr "System Log" msgid "System Properties" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "" @@ -4973,7 +4994,7 @@ msgstr "" "Táºp tin Ä‘ang tải hình ảnh không bao gồm má»™t hổ trợ format. Bảo đảm rằng bạn " "chá»n má»™t image format tổng quát cho platform." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "Thiết kế" @@ -5004,7 +5025,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5090,20 +5111,20 @@ msgstr "" msgid "This section contains no values yet" msgstr "Phần nà y chÆ°a có giá trị nà o" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "Múi giá» " @@ -5142,7 +5163,7 @@ msgstr "" msgid "Transfer" msgstr "Chuyển giao" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "Truyá»n tải rate" @@ -5442,11 +5463,11 @@ msgstr "" msgid "Used" msgstr "Äã sá» dụng" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5524,18 +5545,18 @@ msgstr "" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "" @@ -5543,8 +5564,8 @@ msgstr "" msgid "WEP passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM Mode" @@ -5552,9 +5573,9 @@ msgstr "WMM Mode" msgid "WPA passphrase" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5576,8 +5597,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "" @@ -5585,7 +5606,7 @@ msgstr "" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5672,7 +5693,7 @@ msgstr "" msgid "Write received DNS requests to syslog" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5695,7 +5716,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "" @@ -5707,19 +5728,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5734,7 +5755,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5787,8 +5808,8 @@ msgstr "" msgid "dBm" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "Vô hiệu hóa" @@ -5892,7 +5913,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "Táºp tin <abbr title=\"Domain Name System\">DNS</abbr> địa phÆ°Æ¡ng" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5925,7 +5946,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "" @@ -5933,7 +5954,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "" @@ -5977,8 +5998,8 @@ msgstr "" msgid "routed" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6003,7 +6024,7 @@ msgstr "" msgid "tagged" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-base/po/zh-cn/base.po b/modules/luci-base/po/zh-cn/base.po index 5fce99935c..a2fbba0ad2 100644 --- a/modules/luci-base/po/zh-cn/base.po +++ b/modules/luci-base/po/zh-cn/base.po @@ -1,10 +1,10 @@ # -# Yangfl <mmyangfl@gmail.com>, 2018. # Zheng Qian <sotux82@gmail.com>, 2019. +# Yangfl <mmyangfl@gmail.com>, 2018, 2019. # msgid "" msgstr "" -"PO-Revision-Date: 2019-01-10 16:10+0800\n" +"PO-Revision-Date: 2019-02-11 15:19+0800\n" "Last-Translator: Yangfl <mmyangfl@gmail.com>\n" "Language-Team: <debian-l10n-chinese@lists.debian.org>\n" "Language: \n" @@ -57,16 +57,16 @@ msgstr "(没有接å£è¿žæŽ¥ï¼‰" msgid "-- Additional Field --" msgstr "-- 更多选项 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- 请选择 --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自定义 --" @@ -90,6 +90,10 @@ msgstr "-- æ ¹æ® UUID åŒ¹é… --" msgid "-- please select --" msgstr "-- 请选择 --" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "0 = ä¸ä½¿ç”¨ RSSI 阈值,1 = 驱动默认值" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1 分钟负载:" @@ -98,7 +102,7 @@ msgstr "1 分钟负载:" msgid "15 Minute Load:" msgstr "15 分钟负载:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "4 å—符的åå…进制 ID" @@ -110,35 +114,35 @@ msgstr "464XLAT (CLAT)" msgid "5 Minute Load:" msgstr "5 分钟负载:" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "åå…进制表示的 6 å—èŠ‚æ ‡è¯†ç¬¦ï¼Œæ— å†’å·åˆ†éš”" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "802.11r 快速切æ¢" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "802.11w å…³è” SA 查询最大超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "802.11w å…³è” SA 查询é‡è¯•è¶…æ—¶" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "802.11w 管ç†å¸§ä¿æŠ¤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "802.11w 最大超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "802.11w é‡è¯•è¶…æ—¶" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -158,7 +162,7 @@ msgstr "" "按照“解æžæ–‡ä»¶â€é‡Œçš„顺åºæŸ¥è¯¢ <abbr title=\"Domain Name System\">DNS</abbr> æœåŠ¡" "器" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -308,7 +312,7 @@ msgid "Access Concentrator" msgstr "接入集ä¸å™¨" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "接入点 AP" @@ -398,6 +402,10 @@ msgstr "接入本地ä¸ç»§æ¡¥çš„地å€" msgid "Administration" msgstr "管ç†æƒ" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "高级" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -413,7 +421,7 @@ msgstr "高级设置" msgid "Aggregate Transmit Power(ACTATP)" msgstr "总å‘射功率(ACTATP)" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "è¦æˆ’" @@ -444,12 +452,12 @@ msgstr "顺åºåˆ†é… IP" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "å…许 <abbr title=\"Secure Shell\">SSH</abbr> 密ç 验è¯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "å…许 AP 模å¼æ—¶åœ¨ low ACK 的情况下æ–å¼€æ— çº¿ç»ˆç«¯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "ä»…å…许列表外" @@ -457,8 +465,8 @@ msgstr "ä»…å…许列表外" msgid "Allow legacy 802.11b rates" msgstr "å…è®¸ä¼ ç»Ÿçš„ 802.11b 速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "ä»…å…许列表内" @@ -579,7 +587,7 @@ msgstr "通告的 DNS 域å" msgid "Announced DNS servers" msgstr "通告的 DNS æœåŠ¡å™¨" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "匿å身份" @@ -651,7 +659,7 @@ msgstr "å…³è”æ•°" msgid "Auth Group" msgstr "认è¯ç»„" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "认è¯" @@ -673,8 +681,8 @@ msgstr "需è¦æŽˆæƒ" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自动刷新" @@ -968,13 +976,13 @@ msgstr "" "为æ¤æŽ¥å£åˆ†é…所属的防ç«å¢™åŒºåŸŸï¼Œé€‰æ‹©â€œä¸æŒ‡å®šâ€å¯å°†è¯¥æŽ¥å£ç§»å‡ºå·²å…³è”的区域,或者填" "写“创建â€æ æ¥åˆ›å»ºä¸€ä¸ªæ–°çš„区域,并将当å‰æŽ¥å£ä¸Žä¹‹å»ºç«‹å…³è”。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." msgstr "选择指派到æ¤æ— 线接å£çš„网络,或者填写“创建â€æ æ¥æ–°å»ºç½‘络。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "算法" @@ -997,7 +1005,7 @@ msgstr "" "士ï¼ï¼‰" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "客户端 Client" @@ -1055,7 +1063,7 @@ msgstr "备注" msgid "Common Configuration" msgstr "一般é…ç½®" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1156,11 +1164,11 @@ msgstr "创建新接å£" msgid "Create a bridge over multiple interfaces" msgstr "在多个接å£ä¸Šåˆ›å»ºæ¡¥æŽ¥" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "致命错误" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron 日志级别" @@ -1192,15 +1200,15 @@ msgid "" "\">LED</abbr>s if possible." msgstr "自定义æ¤è®¾å¤‡çš„ <abbr title=\"Light Emitting Diode\">LED</abbr> 行为。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "DAE 客户端" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "DAE 端å£" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "DAE åŠ å¯†" @@ -1284,7 +1292,7 @@ msgstr "DSL 状æ€" msgid "DSL line mode" msgstr "DSL 线路模å¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "DTIM é—´éš”" @@ -1296,14 +1304,14 @@ msgstr "DUID" msgid "Data Rate" msgstr "æ•°æ®é€ŸçŽ‡" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "调试" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "默认 %d" @@ -1356,7 +1364,7 @@ msgstr "åˆ é™¤å¯†é’¥" msgid "Delete this network" msgstr "åˆ é™¤æ¤ç½‘络" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "å‘é€æµé‡æŒ‡ç¤ºæ¶ˆæ¯é—´éš”" @@ -1428,7 +1436,7 @@ msgstr "" msgid "Disable Encryption" msgstr "ç¦ç”¨åŠ 密" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "ç¦ç”¨ä¸æ´»åŠ¨è½®è¯¢" @@ -1446,11 +1454,11 @@ msgstr "ç¦ç”¨æ¤ç½‘络" msgid "Disabled" msgstr "å·²ç¦ç”¨" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "å·²ç¦ç”¨ï¼ˆé»˜è®¤ï¼‰" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "在低 Ack 应ç”æ—¶æ–开连接" @@ -1583,7 +1591,7 @@ msgstr "" msgid "EA-bits length" msgstr "EA-ä½é•¿" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAP 类型" @@ -1608,7 +1616,7 @@ msgstr "编辑æ¤æŽ¥å£" msgid "Edit this network" msgstr "编辑æ¤ç½‘络" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "紧急" @@ -1648,7 +1656,7 @@ msgstr "在 PPP 链路上å¯ç”¨ IPv6 å商" msgid "Enable Jumbo Frame passthrough" msgstr "å¯ç”¨å·¨åž‹å¸§é€ä¼ " -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "å¯ç”¨ NTP 客户端" @@ -1664,11 +1672,11 @@ msgstr "å¯ç”¨ TFTP æœåŠ¡å™¨" msgid "Enable VLAN functionality" msgstr "å¯ç”¨ VLAN" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "å¯ç”¨ WPS ä¸€é”®åŠ å¯†æŒ‰é’®ï¼Œéœ€è¦ WPA(2)-PSK" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "å¯ç”¨å¯†é’¥é‡æ–°å®‰è£…(KRACK)对ç–" @@ -1714,7 +1722,7 @@ msgstr "å·²å¯ç”¨" msgid "Enables IGMP snooping on this bridge" msgstr "在æ¤æ¡¥æŽ¥ä¸Šå¯ç”¨ IGMP 窥探" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1731,7 +1739,7 @@ msgstr "å°è£…模å¼" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1762,7 +1770,7 @@ msgstr "擦除ä¸â€¦" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "错误" @@ -1803,23 +1811,23 @@ msgstr "租用地å€çš„åˆ°æœŸæ—¶é—´ï¼Œæœ€çŸ 2 分钟(<code>2m</code>)。" msgid "External" msgstr "外部" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "外部 <abbr title=\"R0 Key Holder\">R0KH</abbr> 列表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "外部 <abbr title=\"R1 Key Holder\">R1KH</abbr> 列表" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部系统日志æœåŠ¡å™¨åœ°å€" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部系统日志æœåŠ¡å™¨ç«¯å£" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "外部系统日志æœåŠ¡å™¨åè®®" @@ -1827,15 +1835,15 @@ msgstr "外部系统日志æœåŠ¡å™¨åè®®" msgid "Extra SSH command options" msgstr "é¢å¤–çš„ SSH 命令选项" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "FT over DS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "FT over the Air" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "FT åè®®" @@ -1945,7 +1953,7 @@ msgstr "强制" msgid "Force 40MHz mode" msgstr "强制 40MHz 模å¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "强制 CCMP(AES)" @@ -1953,11 +1961,11 @@ msgstr "强制 CCMP(AES)" msgid "Force DHCP on this network even if another server is detected." msgstr "å³ä½¿æ£€æµ‹åˆ°å¦ä¸€å°æœåŠ¡å™¨ï¼Œä¹Ÿè¦å¼ºåˆ¶ä½¿ç”¨æ¤ç½‘络上的 DHCP。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "强制 TKIP" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "强制 TKIP å’Œ CCMP(AES)" @@ -1998,7 +2006,7 @@ msgid "Forwarding mode" msgstr "转å‘模å¼" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "分片阈值" @@ -2062,7 +2070,7 @@ msgstr "基本设置" msgid "Generate Config" msgstr "生æˆé…ç½®" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "æœ¬åœ°ç”Ÿæˆ PMK" @@ -2089,7 +2097,7 @@ msgstr "全局网络选项" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "跳转到密ç é…置页…" @@ -2136,9 +2144,9 @@ msgid "" "the timezone." msgstr "æ¤å¤„é…置设备的基础信æ¯ï¼Œå¦‚主机å称或时区。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "éšè— <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2172,7 +2180,7 @@ msgstr "Host-Uniq æ ‡ç¾å†…容" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "主机å" @@ -2393,7 +2401,7 @@ msgstr "IPv6-over-IPv4 (6rd)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6-over-IPv4 (6to4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "鉴æƒ" @@ -2505,7 +2513,7 @@ msgstr "活动超时" msgid "Inbound:" msgstr "入站:" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "ä¿¡æ¯" @@ -2559,7 +2567,7 @@ msgstr "接å£æ€»è§ˆ" msgid "Interface is reconnecting..." msgstr "æ£åœ¨é‡æ–°è¿žæŽ¥æŽ¥å£â€¦" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "接å£å称" @@ -2599,7 +2607,7 @@ msgstr "æ— æ•ˆçš„ VLAN IDï¼åªå…许唯一的 ID" msgid "Invalid username and/or password! Please try again." msgstr "æ— æ•ˆçš„ç”¨æˆ·åå’Œ/或密ç ï¼è¯·é‡è¯•ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "隔离客户端" @@ -2613,7 +2621,7 @@ msgstr "您å°è¯•åˆ·å†™çš„固件与本路由器ä¸å…¼å®¹ï¼Œè¯·é‡æ–°éªŒè¯å›ºä»¶ #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "éœ€è¦ JavaScriptï¼" @@ -2642,15 +2650,16 @@ msgstr "å†…æ ¸æ—¥å¿—" msgid "Kernel Version" msgstr "å†…æ ¸ç‰ˆæœ¬" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "密ç " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "密ç #%d" @@ -2693,7 +2702,7 @@ msgstr "LLC" msgid "Label" msgstr "å·æ ‡" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "è¯è¨€" @@ -2779,7 +2788,7 @@ msgid "" msgstr "" "将请求转å‘到的 <abbr title=\"Domain Name System\">DNS</abbr> æœåŠ¡å™¨åˆ—表" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2791,7 +2800,7 @@ msgstr "" "进制å—符串)。<br />在从åˆå§‹ç§»åŠ¨åŸŸå…³è”期间使用的 R0KH ä¸è¯·æ±‚ PMK-R1 密钥时," "该列表用于将 R0KH-ID(NAS æ ‡è¯†ç¬¦ï¼‰æ˜ å°„åˆ°ç›®æ ‡ MAC 地å€ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2882,7 +2891,7 @@ msgid "Local Startup" msgstr "本地å¯åŠ¨è„šæœ¬" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "本地时间" @@ -2918,7 +2927,7 @@ msgstr "本地化查询" msgid "Locked to channel %s used by: %s" msgstr "ä¿¡é“é“已被é”定为 %sï¼Œå› ä¸ºè¯¥ä¿¡é“被 %s 使用" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "日志记录ç‰çº§" @@ -2960,8 +2969,8 @@ msgstr "MAC" msgid "MAC-Address" msgstr "MAC 地å€" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC 地å€è¿‡æ»¤" @@ -2970,8 +2979,8 @@ msgstr "MAC 地å€è¿‡æ»¤" msgid "MAC-Filter" msgstr "MAC 过滤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC 列表" @@ -3021,7 +3030,7 @@ msgstr "手动" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "最大å¯è¾¾æ•°æ®é€ŸçŽ‡ï¼ˆATTNDR)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "å…许的最大监å¬é—´éš”" @@ -3095,7 +3104,7 @@ msgstr "æ•°æ®åŒ…é•œåƒæºç«¯å£" msgid "Missing protocol extension for proto %q" msgstr "缺少åè®® %q çš„å议扩展" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "移动域" @@ -3132,9 +3141,9 @@ msgstr "调制解调器信æ¯æŸ¥è¯¢å¤±è´¥" msgid "Modem init timeout" msgstr "调制解调器åˆå§‹åŒ–超时" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "监å¬" @@ -3195,7 +3204,7 @@ msgstr "下移" msgid "Move up" msgstr "上移" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr "NAS ID" @@ -3219,7 +3228,7 @@ msgstr "NDP 代ç†" msgid "NT Domain" msgstr "NT 域" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "候选 NTP æœåŠ¡å™¨" @@ -3248,7 +3257,7 @@ msgstr "å网掩ç " #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3322,7 +3331,7 @@ msgstr "未指定网络å" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "未设置密ç ï¼" @@ -3371,7 +3380,7 @@ msgstr "éžå…¨éƒ¨åœ°å€" msgid "None" msgstr "æ— " -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "æ£å¸¸" @@ -3393,7 +3402,7 @@ msgstr "未连接" msgid "Note: interface name length" msgstr "注æ„:接å£å称长度" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "注æ„" @@ -3405,7 +3414,7 @@ msgstr "Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "缓å˜çš„ DNS æ¡ç›®æ•°é‡ï¼ˆæœ€å¤§ 10000,0 表示ä¸ç¼“å˜ï¼‰" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "用于压缩的并行线程数" @@ -3485,7 +3494,7 @@ msgstr "选项已更改" msgid "Option removed" msgstr "选项已移除" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "å¯é€‰" @@ -3598,7 +3607,7 @@ msgstr "é‡è®¾ TOS" msgid "Override TTL" msgstr "é‡è®¾ TTL" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "é‡è®¾é»˜è®¤æŽ¥å£å称" @@ -3660,7 +3669,7 @@ msgstr "PIN" msgid "PIN code rejected" msgstr "PIN ç 被拒ç»" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "R1 æŽ¨é€ PMK" @@ -3713,7 +3722,7 @@ msgid "Part of zone %q" msgstr "区域 %q" #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3724,11 +3733,11 @@ msgstr "密ç " msgid "Password authentication" msgstr "密ç 验è¯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "ç§æœ‰å¯†é’¥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "内部ç§é’¥çš„密ç " @@ -3740,27 +3749,27 @@ msgstr "密ç 2" msgid "Paste or drag SSH key file…" msgstr "粘贴或拖动 SSH 密钥文件……" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "CA è¯ä¹¦è·¯å¾„" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "客户端è¯ä¹¦è·¯å¾„" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "ç§é’¥è·¯å¾„" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "内部 CA è¯ä¹¦çš„路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "内部客户端è¯ä¹¦çš„路径" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "内部ç§é’¥çš„路径" @@ -3838,6 +3847,14 @@ msgstr "请输入用户å和密ç 。" msgid "Policy" msgstr "ç–ç•¥" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "轮询间隔" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "状æ€æŸ¥è¯¢çš„轮询间隔,以秒为å•ä½" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "端å£" @@ -3885,8 +3902,8 @@ msgstr "在指定数é‡çš„ LCP å“应故障åŽå‡å®šé“¾è·¯å·²æ–开,0 ä¸ºå¿½ç• msgid "Prevent listening on these interfaces." msgstr "ä¸ç›‘å¬è¿™äº›æŽ¥å£ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "ç¦æ¢å®¢æˆ·ç«¯é—´é€šä¿¡" @@ -3927,7 +3944,7 @@ msgstr "新接å£çš„åè®®" msgid "Protocol support is not installed" msgstr "未安装å议支æŒ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "作为 NTP æœåŠ¡å™¨æä¾›æœåŠ¡" @@ -3935,7 +3952,7 @@ msgstr "作为 NTP æœåŠ¡å™¨æä¾›æœåŠ¡" msgid "Provide new network" msgstr "æ·»åŠ æ–°ç½‘ç»œ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "伪装 Ad-Hoc(ahdemo)" @@ -3973,11 +3990,11 @@ msgid "" msgstr "" "查询所有å¯ç”¨çš„上游 <abbr title=\"Domain Name System\">DNS</abbr> æœåŠ¡å™¨" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "R0 密钥生å˜æœŸ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "R1 密钥æŒæœ‰è€…" @@ -3985,8 +4002,12 @@ msgstr "R1 密钥æŒæœ‰è€…" msgid "RFC3947 NAT-T mode" msgstr "RFC3947 NAT-T 模å¼" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "RSSI åŠ å…¥é˜ˆå€¼" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS 阈值" @@ -4000,27 +4021,27 @@ msgstr "接收" msgid "RX Rate" msgstr "接收速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radius 计费端å£" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radius 计费密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radius 计费æœåŠ¡å™¨" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radius 认è¯ç«¯å£" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radius 认è¯å¯†é’¥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radius 认è¯æœåŠ¡å™¨" @@ -4079,7 +4100,7 @@ msgstr "实时æµé‡" msgid "Realtime Wireless" msgstr "å®žæ—¶æ— çº¿" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "é‡å…³è”截æ¢æ—¶é—´" @@ -4173,7 +4194,7 @@ msgstr "请求 IPv6 地å€" msgid "Request IPv6-prefix of length" msgstr "请求指定长度的 IPv6 å‰ç¼€" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "å¿…é¡»" @@ -4198,13 +4219,13 @@ msgstr "" "必须,å…许该 Peer 在隧é“ä¸ä½¿ç”¨çš„ IP 地å€å’Œå‰ç¼€ï¼Œé€šå¸¸æ˜¯è¯¥ Peer çš„éš§é“ IP 地å€" "和通过隧é“的路由网络。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" -"需è¦å®Œæ•´ç‰ˆæœ¬çš„ wpad/hostapd,并且 WiFi 驱动支æŒ<br />ï¼ˆæˆªæ¢ 2017.02,已知支æŒ" -"æ¤ç‰¹æ€§çš„驱动有 ath9kã€ath10kï¼Œä»¥åŠ LEDE ä¸çš„ mwlwifi å’Œ mt76)" +"需è¦å®Œæ•´ç‰ˆæœ¬çš„ wpad/hostapd,并且 WiFi 驱动支æŒ<br />ï¼ˆæˆªæ¢ 2019.01,已知支æŒ" +"æ¤ç‰¹æ€§çš„驱动有 ath9kã€ath10kã€mwlwifi å’Œ mt76)" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 msgid "" @@ -4445,7 +4466,7 @@ msgid "" "conjunction with failure threshold" msgstr "定时å‘é€ LCP å“应(秒),仅在结åˆäº†æ•…障阈值时有效" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "隔离客户端" @@ -4482,7 +4503,7 @@ msgstr "" "ä¸ç®¡æŽ¥å£çš„链路状æ€å¦‚何,总是用应用设置(如果勾选,链路状æ€å˜æ›´å°†ä¸å†è§¦å‘ " "hotplug 事件处ç†ï¼‰ã€‚" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 msgid "Set up Time Synchronization" msgstr "设置时间åŒæ¥" @@ -4506,7 +4527,7 @@ msgstr "严é‡è¯¯ç 秒(SES)" msgid "Short GI" msgstr "Short GI" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "Short Preamble" @@ -4549,7 +4570,7 @@ msgstr "大å°" msgid "Size of DNS query cache" msgstr "DNS 查询缓å˜çš„大å°" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "ZRam 设备的大å°ï¼ˆä»¥å…†å—节为å•ä½ï¼‰" @@ -4694,7 +4715,7 @@ msgstr "" "é™æ€ç§Ÿçº¦ç”¨äºŽç»™ DHCP 客户端分é…固定的 IP 地å€å’Œä¸»æœºæ ‡è¯†ã€‚åªæœ‰æŒ‡å®šçš„主机æ‰èƒ½è¿ž" "接,并且接å£é¡»ä¸ºéžåŠ¨æ€é…置。" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "éžæ´»åŠ¨ç«™ç‚¹é™åˆ¶" @@ -4798,7 +4819,7 @@ msgstr "系统日志" msgid "System Properties" msgstr "系统属性" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "系统日志缓冲区大å°" @@ -5029,7 +5050,7 @@ msgid "" "you choose the generic image format for your platform." msgstr "ä¸æ”¯æŒæ‰€ä¸Šä¼ çš„æ˜ åƒæ–‡ä»¶æ ¼å¼ï¼Œè¯·é€‰æ‹©é€‚åˆå½“å‰å¹³å°çš„é€šç”¨æ˜ åƒæ–‡ä»¶ã€‚" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "主题" @@ -5060,7 +5081,7 @@ msgstr "尚未分é…设备,请在“物ç†è®¾ç½®â€é€‰é¡¹å¡ä¸é€‰æ‹©ç½‘络设 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5148,20 +5169,20 @@ msgstr "活跃的网络连接概况。" msgid "This section contains no values yet" msgstr "å°šæ— ä»»ä½•é…ç½®" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "时间åŒæ¥" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "尚未é…置时间åŒæ¥ã€‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "é‡æ–°åŠ 密 GTK 的时间间隔" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "时区" @@ -5202,7 +5223,7 @@ msgstr "æµé‡" msgid "Transfer" msgstr "ä¼ è¾“" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "ä¼ é€é€ŸçŽ‡" @@ -5507,11 +5528,11 @@ msgstr "" msgid "Used" msgstr "已用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "å¯ç”¨å¯†ç 组" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5591,18 +5612,18 @@ msgstr "验è¯" msgid "Virtual dynamic interface" msgstr "虚拟动æ€æŽ¥å£" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP 开放å¼ç³»ç»Ÿ" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP 共享密钥" @@ -5610,8 +5631,8 @@ msgstr "WEP 共享密钥" msgid "WEP passphrase" msgstr "WEP 密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "WMM 模å¼" @@ -5619,9 +5640,9 @@ msgstr "WMM 模å¼" msgid "WPA passphrase" msgstr "WPA 密钥" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5645,8 +5666,8 @@ msgstr "ç‰å¾…应用é…置… %d 秒" msgid "Waiting for device..." msgstr "ç‰å¾…设备…" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "è¦å‘Š" @@ -5654,7 +5675,7 @@ msgstr "è¦å‘Š" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "è¦å‘Šï¼šä¸€äº›æœªä¿å˜çš„é…置将在é‡å¯åŽä¸¢å¤±ï¼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5743,7 +5764,7 @@ msgstr "æ— çº¿ç½‘ç»œå·²å¯ç”¨" msgid "Write received DNS requests to syslog" msgstr "将收到的 DNS 请求写入系统日志" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "将系统日志写入文件" @@ -5764,7 +5785,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "必须开å¯æµè§ˆå™¨çš„ JavaScript 支æŒï¼Œå¦åˆ™ LuCI æ— æ³•æ£å¸¸å·¥ä½œã€‚" @@ -5778,19 +5799,19 @@ msgstr "" "您的 IE æµè§ˆå™¨å¤ªè€äº†ï¼Œæ— 法æ£å¸¸æ˜¾ç¤ºè¿™ä¸ªé¡µé¢ï¼è¯·æ›´æ–°åˆ° IE7 åŠä»¥ä¸Šæˆ–使用其他æµè§ˆ" "器,如 Firefoxã€Operaã€Safari。" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "ZRam 压缩算法" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "ZRam 压缩æµ" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "ZRam 设置" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "ZRam 大å°" @@ -5805,7 +5826,7 @@ msgstr "ä»»æ„" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5858,8 +5879,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "ç¦ç”¨" @@ -5963,7 +5984,7 @@ msgstr "密钥为 5 或 13 个å—符" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "本地 <abbr title=\"Domain Name System\">DNS</abbr> 解æžæ–‡ä»¶" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "分钟" @@ -5996,7 +6017,7 @@ msgstr "ä¸å˜åœ¨" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "å…³" @@ -6004,7 +6025,7 @@ msgstr "å…³" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "å¼€" @@ -6050,8 +6071,8 @@ msgstr "ä¸ç»§æ¨¡å¼" msgid "routed" msgstr "已路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "秒" @@ -6076,7 +6097,7 @@ msgstr "æ— çŠ¶æ€ + 有状æ€" msgid "tagged" msgstr "å·²æ ‡è®°" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "时间å•ä½ï¼ˆTUs / 1.024ms)[1000-65535]" diff --git a/modules/luci-base/po/zh-tw/base.po b/modules/luci-base/po/zh-tw/base.po index fe6ccc6e48..56c85a04dc 100644 --- a/modules/luci-base/po/zh-tw/base.po +++ b/modules/luci-base/po/zh-tw/base.po @@ -55,16 +55,16 @@ msgstr "(未連接界é¢)" msgid "-- Additional Field --" msgstr "-- 更多é¸é … --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:841 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:850 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:840 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:849 #: modules/luci-base/luasrc/view/cbi/header.htm:5 #: protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua:26 #: protocols/luci-proto-qmi/luasrc/model/cbi/admin_network/proto_qmi.lua:36 msgid "-- Please choose --" msgstr "-- è«‹é¸æ“‡ --" -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:866 -#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1030 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:865 +#: modules/luci-base/htdocs/luci-static/resources/cbi.js:1025 #: modules/luci-base/luasrc/view/cbi/header.htm:6 msgid "-- custom --" msgstr "-- 自訂 --" @@ -88,6 +88,10 @@ msgstr "" msgid "-- please select --" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:381 +msgid "0 = not using RSSI threshold, 1 = do not change driver default" +msgstr "" + #: modules/luci-mod-status/luasrc/view/admin_status/load.htm:252 msgid "1 Minute Load:" msgstr "1分é˜è² 載" @@ -96,7 +100,7 @@ msgstr "1分é˜è² 載" msgid "15 Minute Load:" msgstr "15分é˜è² 載" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:879 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:904 msgid "4-character hexadecimal ID" msgstr "" @@ -108,35 +112,35 @@ msgstr "" msgid "5 Minute Load:" msgstr "5分é˜è² 載" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:915 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:940 msgid "6-octet identifier as a hex string - no colons" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:850 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:875 msgid "802.11r Fast Transition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1106 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1131 msgid "802.11w Association SA Query maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1115 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1140 msgid "802.11w Association SA Query retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1088 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1113 msgid "802.11w Management Frame Protection" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1105 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1130 msgid "802.11w maximum timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 msgid "802.11w retry timeout" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:390 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:398 msgid "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" msgstr "<abbr title=\"Basic Service Set Identifier\">BSSID</abbr>" @@ -154,7 +158,7 @@ msgid "" "order of the resolvfile" msgstr "å°‡æœƒæŒ‰ç…§æŒ‡å®šçš„é †åºæŸ¥è©¢<abbr title=\"Domain Name System\">DNS</abbr>" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:379 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:387 msgid "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -303,7 +307,7 @@ msgid "Access Concentrator" msgstr "接入集線器" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:367 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 msgid "Access Point" msgstr "å˜å–點 (AP)" @@ -393,6 +397,10 @@ msgstr "å˜å–本地ä¸ç¹¼æ©‹æŽ¥ä½ç½®" msgid "Administration" msgstr "管ç†" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +msgid "Advanced" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:22 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:189 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/ifaces.lua:463 @@ -408,7 +416,7 @@ msgstr "進階è¨å®š" msgid "Aggregate Transmit Power(ACTATP)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 msgid "Alert" msgstr "è¦ç¤º" @@ -439,12 +447,12 @@ msgstr "" msgid "Allow <abbr title=\"Secure Shell\">SSH</abbr> password authentication" msgstr "å…許 <abbr title=\"Secure Shell\">SSH</abbr> 密碼驗è‰" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:535 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 msgid "Allow AP mode to disconnect STAs based on low ACK condition" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:452 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:579 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 msgid "Allow all except listed" msgstr "僅å…許列表外" @@ -452,8 +460,8 @@ msgstr "僅å…許列表外" msgid "Allow legacy 802.11b rates" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:451 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:578 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:459 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 msgid "Allow listed only" msgstr "僅å…許列表內" @@ -573,7 +581,7 @@ msgstr "" msgid "Announced DNS servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1048 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1073 msgid "Anonymous Identity" msgstr "" @@ -645,7 +653,7 @@ msgstr "" msgid "Auth Group" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:982 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1007 msgid "Authentication" msgstr "èªè‰" @@ -667,8 +675,8 @@ msgstr "需è¦æŽˆæ¬Š" #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:223 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:246 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:249 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:266 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:269 msgid "Auto Refresh" msgstr "自動更新" @@ -962,7 +970,7 @@ msgstr "" "é¸æ“‡æ‚¨è¦æŒ‡å®šçµ¦é€™ä»‹é¢çš„防ç«ç‰†å€. æ’¿é¸<em>unspecified</em>以便從指定å€åŸŸé™¤é€™å€‹" "介é¢æˆ–者填寫<em>create</em>æ¬„ä»¥ä¾¿å®šç¾©é™„åŠ é€™å€‹ä»‹é¢åˆ°ä¸€å€‹æ–°çš„å€åŸŸä¸Š." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:393 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:401 msgid "" "Choose the network(s) you want to attach to this wireless interface or fill " "out the <em>create</em> field to define a new network." @@ -970,7 +978,7 @@ msgstr "" "é¸æ“‡æ‚¨è¦é™„åŠ åˆ°ç„¡ç·šç¶²è·¯ä»‹é¢çš„多個網路或者填寫<em>create</em> 以便定義一個新的" "網路." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:604 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 msgid "Cipher" msgstr "暗號" @@ -991,7 +999,7 @@ msgid "" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:368 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 msgid "Client" msgstr "用戶端" @@ -1049,7 +1057,7 @@ msgstr "" msgid "Common Configuration" msgstr "一般è¨å®š" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1125 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1150 msgid "" "Complicates key reinstallation attacks on the client side by disabling " "retransmission of EAPOL-Key frames that are used to install keys. This " @@ -1145,11 +1153,11 @@ msgstr "建立介é¢" msgid "Create a bridge over multiple interfaces" msgstr "在多個介é¢ä¸Šå»ºç«‹æ©‹æŽ¥" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:99 msgid "Critical" msgstr "緊急" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:102 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:103 msgid "Cron Log Level" msgstr "Cron的日誌級別" @@ -1182,15 +1190,15 @@ msgstr "" "如果å¯ä»¥çš„話,自定這個è¨å‚™çš„動作 <abbr title=\"Light Emitting Diode\">LED</" "abbr>s ." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:760 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:770 msgid "DAE-Client" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "DAE-Port" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:776 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:786 msgid "DAE-Secret" msgstr "" @@ -1274,7 +1282,7 @@ msgstr "" msgid "DSL line mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "DTIM Interval" msgstr "" @@ -1286,14 +1294,14 @@ msgstr "DHCPç¨ç«‹å¼åˆ¥ç¢¼DUID " msgid "Data Rate" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:104 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 msgid "Debug" msgstr "除錯" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:768 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:778 msgid "Default %d" msgstr "é è¨ %d" @@ -1346,7 +1354,7 @@ msgstr "" msgid "Delete this network" msgstr "刪除這個網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:509 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:517 msgid "Delivery Traffic Indication Message Interval" msgstr "" @@ -1417,7 +1425,7 @@ msgstr "" msgid "Disable Encryption" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:520 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:528 msgid "Disable Inactivity Polling" msgstr "" @@ -1435,11 +1443,11 @@ msgstr "" msgid "Disabled" msgstr "關閉" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1094 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1119 msgid "Disabled (default)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:534 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:542 msgid "Disassociate On Low Acknowledgement" msgstr "" @@ -1572,7 +1580,7 @@ msgstr "幫用戶端動態發é…DHCPä½å€. å‡å¦‚關閉的話,僅有有éœæ…‹ä½ msgid "EA-bits length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:945 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:970 msgid "EAP-Method" msgstr "EAPå”定驗è‰æ–¹å¼" @@ -1597,7 +1605,7 @@ msgstr "修改這個介é¢" msgid "Edit this network" msgstr "修改這個網路" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:100 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:101 msgid "Emergency" msgstr "緊急" @@ -1636,7 +1644,7 @@ msgstr "啟用PPP連çµä¸Šçš„IPv6交涉" msgid "Enable Jumbo Frame passthrough" msgstr "啟用超大訊框é€ç©¿" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:215 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 msgid "Enable NTP client" msgstr "起用NTP用戶功能" @@ -1652,11 +1660,11 @@ msgstr "啟用TFTP伺æœå™¨" msgid "Enable VLAN functionality" msgstr "啟用VLAN功能" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1139 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1164 msgid "Enable WPS pushbutton, requires WPA(2)-PSK" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1124 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1149 msgid "Enable key reinstallation (KRACK) countermeasures" msgstr "" @@ -1702,7 +1710,7 @@ msgstr "啟用" msgid "Enables IGMP snooping on this bridge" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:851 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:876 msgid "" "Enables fast roaming among access points that belong to the same Mobility " "Domain" @@ -1719,7 +1727,7 @@ msgstr "å°è£æ¨¡å¼" #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js:44 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js:76 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:601 #: modules/luci-mod-network/luasrc/view/admin_network/wifi_join.htm:33 #: modules/luci-mod-status/htdocs/luci-static/resources/view/status/index.js:158 msgid "Encryption" @@ -1750,7 +1758,7 @@ msgstr "刪除ä¸..." #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:107 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:108 #: modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js:109 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:98 msgid "Error" msgstr "錯誤" @@ -1792,23 +1800,23 @@ msgstr "釋放ä½å€çš„éŽæœŸé€±æœŸ,æœ€å°‘å…©åˆ†é˜ (<code>2m</code>)." msgid "External" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:951 msgid "External R0 Key Holder List" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:935 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:960 msgid "External R1 Key Holder List" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:74 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:75 msgid "External system log server" msgstr "外部系統日誌伺æœå™¨" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:79 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:80 msgid "External system log server port" msgstr "外部系統日誌伺æœå™¨åŸ 號" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:84 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:85 msgid "External system log server protocol" msgstr "" @@ -1816,15 +1824,15 @@ msgstr "" msgid "Extra SSH command options" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:895 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:920 msgid "FT over DS" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:896 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 msgid "FT over the Air" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:918 msgid "FT protocol" msgstr "" @@ -1934,7 +1942,7 @@ msgstr "強制" msgid "Force 40MHz mode" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:612 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:620 msgid "Force CCMP (AES)" msgstr "強制CCMP (AES)åŠ å¯†" @@ -1942,11 +1950,11 @@ msgstr "強制CCMP (AES)åŠ å¯†" msgid "Force DHCP on this network even if another server is detected." msgstr "在網路上å³ä½¿åµæ¸¬åˆ°å…¶å®ƒä¼ºæœå™¨ä¹Ÿå¼·åˆ¶æŽ¡ç”¨DHCPçš„è¨å®š" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:613 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:621 msgid "Force TKIP" msgstr "強制TKIPåŠ å¯†" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:614 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:622 msgid "Force TKIP and CCMP (AES)" msgstr "強制TKIP+CCMP (AES)åŠ å¯†" @@ -1987,7 +1995,7 @@ msgid "Forwarding mode" msgstr "轉發模å¼" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:254 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:586 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:594 msgid "Fragmentation Threshold" msgstr "分片閥值" @@ -2049,7 +2057,7 @@ msgstr "一般è¨ç½®" msgid "Generate Config" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:900 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:925 msgid "Generate PMK locally" msgstr "" @@ -2076,7 +2084,7 @@ msgstr "" #: themes/luci-theme-bootstrap/luasrc/view/themes/bootstrap/header.htm:198 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:235 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:262 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:288 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:309 msgid "Go to password configuration..." msgstr "到密碼è¨å®šé " @@ -2123,9 +2131,9 @@ msgid "" "the timezone." msgstr "在這è¨ç½®åŸºæœ¬æ¨£è²Œé¡žä¼¼åƒä¸»æ©Ÿå稱或者時å€..ç‰" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:489 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:546 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:569 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:497 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:554 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 msgid "Hide <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" msgstr "éš±è— <abbr title=\"Extended Service Set Identifier\">ESSID</abbr>" @@ -2159,7 +2167,7 @@ msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:283 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/hosts.lua:15 #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:17 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:35 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:36 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:129 msgid "Hostname" msgstr "主機å稱" @@ -2380,7 +2388,7 @@ msgstr "IPv6凌駕IPv4外(第6版)" msgid "IPv6-over-IPv4 (6to4)" msgstr "IPv6凌駕IPv4外(6轉4)" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1030 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1055 msgid "Identity" msgstr "特性" @@ -2490,7 +2498,7 @@ msgstr "é–’ç½®éŽæœŸ" msgid "Inbound:" msgstr "輸入" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:94 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 msgid "Info" msgstr "訊æ¯" @@ -2544,7 +2552,7 @@ msgstr "介é¢é 覽" msgid "Interface is reconnecting..." msgstr "介é¢é‡é€£" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Interface name" msgstr "" @@ -2584,7 +2592,7 @@ msgstr "打入的是ä¸æ£ç¢ºçš„VLAN ID!僅有ç¨ä¸€ç„¡äºŒçš„IDs被å…許" msgid "Invalid username and/or password! Please try again." msgstr "ä¸æ£ç¢ºçš„用戶å稱和/或者密碼!è«‹å†è©¦ä¸€æ¬¡." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:498 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 msgid "Isolate Clients" msgstr "" @@ -2599,7 +2607,7 @@ msgstr "它顯示您æ£å˜—試更新ä¸é©ç”¨æ–¼é€™å€‹flashè¨˜æ†¶é«”çš„æ˜ åƒæª”, #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:220 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:242 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:252 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:295 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:316 msgid "JavaScript required!" msgstr "需è¦Java腳本" @@ -2628,15 +2636,16 @@ msgstr "æ ¸å¿ƒæ—¥èªŒ" msgid "Kernel Version" msgstr "æ ¸å¿ƒç‰ˆæœ¬" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:784 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:794 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:854 msgid "Key" msgstr "鑰匙" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:810 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:811 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:812 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:813 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:829 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:820 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:821 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:822 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:823 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:839 msgid "Key #%d" msgstr "鑰匙 #%d" @@ -2679,7 +2688,7 @@ msgstr "LLCé‚輯éˆçµæŽ§åˆ¶å±¤" msgid "Label" msgstr "標籤" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:136 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:137 msgid "Language" msgstr "語言" @@ -2764,7 +2773,7 @@ msgid "" "requests to" msgstr "列出 <abbr title=\"Domain Name System\">DNS</abbr> 伺æœå™¨ä»¥ä¾¿è½‰ç™¼è«‹æ±‚" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:927 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:952 msgid "" "List of R0KHs in the same Mobility Domain. <br />Format: MAC-address,NAS-" "Identifier,128-bit key as hex string. <br />This list is used to map R0KH-ID " @@ -2773,7 +2782,7 @@ msgid "" "Association." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:936 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:961 msgid "" "List of R1KHs in the same Mobility Domain. <br />Format: MAC-address,R1KH-ID " "as 6 octets with colons,128-bit key as hex string. <br />This list is used " @@ -2860,7 +2869,7 @@ msgid "Local Startup" msgstr "本地啟動" #: modules/luci-mod-status/luasrc/view/admin_status/index/10-system.htm:25 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:31 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:32 msgid "Local Time" msgstr "本地時å€" @@ -2897,7 +2906,7 @@ msgstr "本地化網路請求" msgid "Locked to channel %s used by: %s" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:92 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:93 msgid "Log output level" msgstr "日誌輸出層級" @@ -2939,8 +2948,8 @@ msgstr "" msgid "MAC-Address" msgstr "MAC-ä½å€" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:447 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:576 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:455 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:584 msgid "MAC-Address Filter" msgstr "MAC-ä½å€éŽæ¿¾" @@ -2949,8 +2958,8 @@ msgstr "MAC-ä½å€éŽæ¿¾" msgid "MAC-Filter" msgstr "MAC-éŽæ¿¾" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:454 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:580 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:462 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:588 msgid "MAC-List" msgstr "MAC-清單" @@ -3000,7 +3009,7 @@ msgstr "" msgid "Max. Attainable Data Rate (ATTNDR)" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:529 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:537 msgid "Maximum allowed Listen Interval" msgstr "" @@ -3072,7 +3081,7 @@ msgstr "" msgid "Missing protocol extension for proto %q" msgstr "å”定 %q æ¼å¤±çš„延伸å”定" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:878 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:903 msgid "Mobility Domain" msgstr "" @@ -3109,9 +3118,9 @@ msgstr "" msgid "Modem init timeout" msgstr "數據機åˆå§‹åŒ–終çµæ™‚é–“" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:442 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:544 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:567 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:575 msgid "Monitor" msgstr "監視" @@ -3172,7 +3181,7 @@ msgstr "往下移" msgid "Move up" msgstr "往上移" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:867 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:892 msgid "NAS ID" msgstr " 網路附å˜ä¼ºæœå™¨ID" @@ -3196,7 +3205,7 @@ msgstr "" msgid "NT Domain" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:238 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:261 msgid "NTP server candidates" msgstr "NTP伺æœå™¨å‚™é¸" @@ -3225,7 +3234,7 @@ msgstr "網路é®ç½©" #: modules/luci-base/luasrc/controller/admin/index.lua:62 #: modules/luci-base/luasrc/view/wifi_assoclist.htm:108 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:392 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:400 #: modules/luci-mod-status/luasrc/view/admin_status/connections.htm:358 #: modules/luci-mod-status/luasrc/view/admin_status/index/30-network.htm:8 #: modules/luci-mod-status/luasrc/view/admin_status/routes.htm:73 @@ -3299,7 +3308,7 @@ msgstr "尚未指定網路å稱" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:103 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:232 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:259 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:283 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:304 msgid "No password set!" msgstr "尚未è¨å®šå¯†ç¢¼!" @@ -3348,7 +3357,7 @@ msgstr "" msgid "None" msgstr "ç„¡" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:105 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 msgid "Normal" msgstr "æ£å¸¸" @@ -3370,7 +3379,7 @@ msgstr "尚未連線" msgid "Note: interface name length" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:95 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 msgid "Notice" msgstr "通知" @@ -3382,7 +3391,7 @@ msgstr "DNSåµéŒ¯Nslookup" msgid "Number of cached DNS entries (max is 10000, 0 is no caching)" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "Number of parallel threads used for compression" msgstr "" @@ -3462,7 +3471,7 @@ msgstr "é¸é …已變更" msgid "Option removed" msgstr "é¸é …已移除" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1095 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1120 #: protocols/luci-proto-wireguard/luasrc/model/cbi/admin_network/proto_wireguard.lua:55 msgid "Optional" msgstr "" @@ -3569,7 +3578,7 @@ msgstr "" msgid "Override TTL" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:503 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:511 msgid "Override default interface name" msgstr "" @@ -3631,7 +3640,7 @@ msgstr "PIN碼" msgid "PIN code rejected" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:921 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:946 msgid "PMK R1 Push" msgstr "" @@ -3684,7 +3693,7 @@ msgid "Part of zone %q" msgstr "å€åŸŸ %q 的部分 " #: modules/luci-base/luasrc/view/sysauth.htm:29 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1066 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1091 #: modules/luci-mod-system/luasrc/view/admin_system/password.htm:14 #: protocols/luci-proto-openconnect/luasrc/model/cbi/admin_network/proto_openconnect.lua:42 #: protocols/luci-proto-vpnc/luasrc/model/cbi/admin_network/proto_vpnc.lua:33 @@ -3695,11 +3704,11 @@ msgstr "密碼" msgid "Password authentication" msgstr "密碼驗è‰" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:974 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:999 msgid "Password of Private Key" msgstr "ç§äººé‡‘鑰密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1022 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1047 msgid "Password of inner Private Key" msgstr "" @@ -3711,27 +3720,27 @@ msgstr "" msgid "Paste or drag SSH key file…" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:955 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:980 msgid "Path to CA-Certificate" msgstr "CA-è‰æ›¸çš„路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:962 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:987 msgid "Path to Client-Certificate" msgstr "用戶端-è‰æ›¸çš„路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:968 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:993 msgid "Path to Private Key" msgstr "ç§äººé‡‘鑰的路徑" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1004 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1029 msgid "Path to inner CA-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1010 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1035 msgid "Path to inner Client-Certificate" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1016 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1041 msgid "Path to inner Private Key" msgstr "" @@ -3809,6 +3818,14 @@ msgstr "請輸入您的用戶å稱和密碼" msgid "Policy" msgstr "ç–ç•¥" +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:178 +msgid "Polling interval" +msgstr "" + +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:179 +msgid "Polling interval for status queries in seconds" +msgstr "" + #: modules/luci-mod-system/luasrc/model/cbi/admin_system/dropbear.lua:22 msgid "Port" msgstr "åŸ " @@ -3856,8 +3873,8 @@ msgstr "å‡è‹¥åœ¨çµ¦äºŽå¤šæ¬¡çš„ LCP 呼å«å¤±æ•—後終點將æ», 使用0忽略å msgid "Prevent listening on these interfaces." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:499 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:552 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:507 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:560 msgid "Prevents client-to-client communication" msgstr "防æ¢ç”¨æˆ¶ç«¯å°ç”¨æˆ¶ç«¯çš„通訊" @@ -3898,7 +3915,7 @@ msgstr "新介é¢çš„å”定家æ—" msgid "Protocol support is not installed" msgstr "支æ´çš„å”定尚未安è£" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:257 msgid "Provide NTP server" msgstr "æä¾›NTP伺æœå™¨" @@ -3906,7 +3923,7 @@ msgstr "æä¾›NTP伺æœå™¨" msgid "Provide new network" msgstr "æ供新網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:441 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:449 msgid "Pseudo Ad-Hoc (ahdemo)" msgstr "å½è£Ad-Hoc (ahdemo模å¼)" @@ -3941,11 +3958,11 @@ msgid "" "servers" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "R0 Key Lifetime" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:914 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:939 msgid "R1 Key Holder" msgstr "" @@ -3953,8 +3970,12 @@ msgstr "" msgid "RFC3947 NAT-T mode" msgstr "" +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:380 +msgid "RSSI threshold for joining" +msgstr "" + #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:255 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:587 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:595 msgid "RTS/CTS Threshold" msgstr "RTS/CTS門檻" @@ -3968,27 +3989,27 @@ msgstr "接收" msgid "RX Rate" msgstr "接收速率" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:744 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:754 msgid "Radius-Accounting-Port" msgstr "Radius-驗証帳號-åŸ " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:752 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:762 msgid "Radius-Accounting-Secret" msgstr "Radius-åˆæ³•å¸³è™Ÿ-密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:736 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:746 msgid "Radius-Accounting-Server" msgstr "Radius-åˆæ³•å¸³è™Ÿ-伺æœå™¨" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:720 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:730 msgid "Radius-Authentication-Port" msgstr "Radius-驗証-åŸ " -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:728 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:738 msgid "Radius-Authentication-Secret" msgstr "Radius-驗証-密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:712 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:722 msgid "Radius-Authentication-Server" msgstr "Radius-驗証-伺æœå™¨" @@ -4046,7 +4067,7 @@ msgstr "å³æ™‚æµé‡" msgid "Realtime Wireless" msgstr "å³æ™‚無線網路" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:886 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:911 msgid "Reassociation Deadline" msgstr "" @@ -4140,7 +4161,7 @@ msgstr "" msgid "Request IPv6-prefix of length" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1096 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1121 msgid "Required" msgstr "" @@ -4163,10 +4184,10 @@ msgid "" "routes through the tunnel." msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1089 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:1114 msgid "" "Requires the 'full' version of wpad/hostapd and support from the wifi driver " -"<br />(as of Feb 2017: ath9k and ath10k, in LEDE also mwlwifi and mt76)" +"<br />(as of Jan 2019: ath9k, ath10k, mwlwifi and mt76)" msgstr "" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/dhcp.lua:95 @@ -4406,7 +4427,7 @@ msgid "" "conjunction with failure threshold" msgstr "傳é€LCP呼å«è«‹æ±‚在這個給予的秒數間隔內, 僅影響關è¯åˆ°å¤±æ•—門檻" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:559 msgid "Separate Clients" msgstr "分隔用戶端" @@ -4441,7 +4462,7 @@ msgid "" "sense events do not invoke hotplug handlers)." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:206 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:229 #, fuzzy msgid "Set up Time Synchronization" msgstr "安è£æ ¡æ™‚åŒæ¥" @@ -4466,7 +4487,7 @@ msgstr "" msgid "Short GI" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:506 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:514 msgid "Short Preamble" msgstr "" @@ -4509,7 +4530,7 @@ msgstr "大å°" msgid "Size of DNS query cache" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "Size of the ZRam device in megabytes" msgstr "" @@ -4654,7 +4675,7 @@ msgstr "" "éœæ…‹ç§Ÿç´„是用來指定固定的IPä½å€å’Œè¡¨ç¤ºçš„主機å稱給予DHCP用戶端. 它們也需è¦éžå‹•" "態介é¢è¨å®šå€¼ä»¥ä¾¿ç²å–相應租約的主機æœå‹™." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "Station inactivity limit" msgstr "" @@ -4758,7 +4779,7 @@ msgstr "系統日誌" msgid "System Properties" msgstr "系統屬性" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:69 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:70 msgid "System log buffer size" msgstr "系統日誌緩è¡å¤§å°" @@ -4995,7 +5016,7 @@ msgid "" msgstr "" "ä»¥ä¸Šå‚³çš„æ˜ åƒæª”ä¸åŒ…å«æ”¯æ´æ ¼å¼. 請確èªæ‚¨é¸æ“‡çš„是é‡å°æ‚¨çš„å¹³å°æŽ¡ç”¨çš„é€šç”¨æ˜ åƒæª”." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:156 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:157 msgid "Theme" msgstr "è¨è¨ˆè¦åŠƒ" @@ -5026,7 +5047,7 @@ msgstr "尚未指定è¨å‚™, 請接上一個網路è¨å‚™åœ¨é€™\"實體è¨ç½®\"標 #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:104 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:233 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:260 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:286 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:307 msgid "" "There is no password set on this router. Please configure a root password to " "protect the web interface and enable SSH." @@ -5113,20 +5134,20 @@ msgstr "這一é æ供目å‰æ£åœ¨æ´»å‹•ä¸ç¶²è·¯é€£ç·šçš„é 覽." msgid "This section contains no values yet" msgstr "這部分尚未有任何數值." -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:200 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:211 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:223 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:234 msgid "Time Synchronization" msgstr "æ ¡æ™‚åŒæ¥" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:205 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:228 msgid "Time Synchronization is not configured yet." msgstr "æ ¡æ™‚åŒæ¥å°šæœªè¨å®š." -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 msgid "Time interval for rekeying GTK" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:44 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:45 msgid "Timezone" msgstr "時å€" @@ -5167,7 +5188,7 @@ msgstr "æµé‡" msgid "Transfer" msgstr "傳輸" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:593 msgid "Transmission Rate" msgstr "傳輸速率" @@ -5328,7 +5349,7 @@ msgid "" "compatible firmware image)." msgstr "" "上傳一個sysupgrade-ç›¸å®¹çš„æ˜ åƒæª”在這以便替代æ£åŸ·è¡Œä¸çš„韌體. 勾é¸\"ä¿æŒè¨å®š\"以" -"ä¿ç•™ç›®å‰è¨å®šå€¼(å¿…é ˆè¦æ˜¯OpenWrt/LEDEç›¸å®¹æ€§éŸŒé«”æ˜ åƒæª”)." +"ä¿ç•™ç›®å‰è¨å®šå€¼(å¿…é ˆè¦æ˜¯OpenWrtç›¸å®¹æ€§éŸŒé«”æ˜ åƒæª”)." #: modules/luci-mod-system/luasrc/view/admin_system/flashops.htm:51 msgid "Upload archive..." @@ -5472,11 +5493,11 @@ msgstr "" msgid "Used" msgstr "已使用" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:807 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:817 msgid "Used Key Slot" msgstr "已使用的關éµæ’槽" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:868 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:893 msgid "" "Used for two different purposes: RADIUS NAS ID and 802.11r R0KH-ID. Not " "needed with normal WPA(2)-PSK." @@ -5554,18 +5575,18 @@ msgstr "確èª" msgid "Virtual dynamic interface" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:460 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:461 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:543 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:566 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:468 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:469 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:551 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:574 msgid "WDS" msgstr "無線分散系統WDS" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:657 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:665 msgid "WEP Open System" msgstr "WEP 開放系統" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:658 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:666 msgid "WEP Shared Key" msgstr "WEP 共享金鑰" @@ -5573,8 +5594,8 @@ msgstr "WEP 共享金鑰" msgid "WEP passphrase" msgstr "WEP通關密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:493 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:556 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:501 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:564 msgid "WMM Mode" msgstr "無線多媒體機制" @@ -5582,9 +5603,9 @@ msgstr "無線多媒體機制" msgid "WPA passphrase" msgstr "WPA 密碼" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:684 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:696 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:701 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:693 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:706 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:711 msgid "" "WPA-Encryption requires wpa_supplicant (for client mode) or hostapd (for AP " "and ad-hoc mode) to be installed." @@ -5608,8 +5629,8 @@ msgstr "" msgid "Waiting for device..." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:96 -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:106 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:97 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:107 msgid "Warning" msgstr "è¦å‘Š" @@ -5617,7 +5638,7 @@ msgstr "è¦å‘Š" msgid "Warning: There are unsaved changes that will get lost on reboot!" msgstr "" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:901 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:926 msgid "" "When using a PSK, the PMK can be automatically generated. When enabled, the " "R0/R1 key options below are not applied. Disable this to use the R0 and R1 " @@ -5704,7 +5725,7 @@ msgstr "無線網路已啟用" msgid "Write received DNS requests to syslog" msgstr "寫入已接收的DNS請求到系統日誌ä¸" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:88 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:89 msgid "Write system log to file" msgstr "" @@ -5725,7 +5746,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:221 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:243 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:253 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:298 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:319 msgid "" "You must enable JavaScript in your browser or LuCI will not work properly." msgstr "在ç€è¦½å™¨æ‚¨å¿…é ˆå•Ÿç”¨JavaScriptå¦å‰‡LuCI無法æ£å¸¸é‹ä½œ." @@ -5737,19 +5758,19 @@ msgid "" "or Safari." msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:118 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:119 msgid "ZRam Compression Algorithm" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:125 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:126 msgid "ZRam Compression Streams" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:25 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:26 msgid "ZRam Settings" msgstr "" -#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:113 +#: modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua:114 msgid "ZRam Size" msgstr "" @@ -5764,7 +5785,7 @@ msgstr "ä»»æ„" #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:281 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:320 #: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:327 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:611 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:619 #: protocols/luci-proto-ncm/luasrc/model/cbi/admin_network/proto_ncm.lua:37 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:22 #: protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua:29 @@ -5817,8 +5838,8 @@ msgstr "dB" msgid "dBm" msgstr "dBm" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:450 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:577 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:458 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:585 msgid "disable" msgstr "關閉" @@ -5922,7 +5943,7 @@ msgstr "" msgid "local <abbr title=\"Domain Name System\">DNS</abbr> file" msgstr "本地<abbr title=\"Domain Name System\">DNS</abbr> 檔案" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:907 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:932 msgid "minutes" msgstr "" @@ -5955,7 +5976,7 @@ msgstr "" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:133 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:215 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:225 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:250 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:270 msgid "off" msgstr "關閉" @@ -5963,7 +5984,7 @@ msgstr "關閉" #: themes/luci-theme-freifunk-generic/luasrc/view/themes/freifunk-generic/header.htm:132 #: themes/luci-theme-material/luasrc/view/themes/material/header.htm:214 #: themes/luci-theme-openwrt/luasrc/view/themes/openwrt.org/header.htm:224 -#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:247 +#: themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm:267 msgid "on" msgstr "é–‹å•Ÿ" @@ -6007,8 +6028,8 @@ msgstr "" msgid "routed" msgstr "路由" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:515 -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:524 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:523 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:532 msgid "sec" msgstr "" @@ -6033,7 +6054,7 @@ msgstr "" msgid "tagged" msgstr "標籤" -#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:887 +#: modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua:912 msgid "time units (TUs / 1.024 ms) [1000-65535]" msgstr "" diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js index 145f5807a0..40624e741e 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/network.js @@ -81,7 +81,7 @@ L.poll(5, L.url('admin/network/iface_status', networks.join(',')), null, desc = desc ? '%s (%s)'.format(desc, ifc.desc) : ifc.desc; L.itemlist(d, [ - _('Protocol'), '%h'.format(desc || '?'), + _('Protocol'), desc || '?', _('Uptime'), ifc.is_up ? '%t'.format(ifc.uptime) : null, _('MAC'), (!ifc.is_dynamic && !ifc.is_alias && ifc.macaddr) ? ifc.macaddr : null, _('RX'), (!ifc.is_dynamic && !ifc.is_alias) ? '%.2mB (%d %s)'.format(ifc.rx_bytes, ifc.rx_packets, _('Pkts.')) : null, diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js index 7e14d999bd..108a141f88 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wifi_status.js @@ -39,7 +39,7 @@ requestAnimationFrame(function() { L.itemlist(info, [ _('Mode'), iw.mode, - _('SSID'), '%h'.format(iw.ssid || '?'), + _('SSID'), iw.ssid || '?', _('BSSID'), is_assoc ? iw.bssid : null, _('Encryption'), is_assoc ? iw.encryption || _('None') : null, _('Channel'), is_assoc ? '%d (%.3f %s)'.format(iw.channel, iw.frequency || 0, _('GHz')) : null, diff --git a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js index bdeb23d235..57e6bbb04c 100644 --- a/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js +++ b/modules/luci-mod-network/htdocs/luci-static/resources/view/network/wireless.js @@ -70,7 +70,7 @@ L.poll(5, L.url('admin/network/wireless_status', networks.join(',')), null, }, [ E('img', { src: icon }), ' %d%%'.format(p) ])); L.itemlist(info, [ - _('SSID'), '%h'.format(iw.ssid || '?'), + _('SSID'), iw.ssid || '?', _('Mode'), iw.mode, _('BSSID'), iw.is_assoc ? iw.bssid : null, _('Encryption'), iw.is_assoc ? iw.encryption || _('None') : null, diff --git a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua index 9ab282c3ab..1ac79d8ee7 100644 --- a/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua +++ b/modules/luci-mod-network/luasrc/model/cbi/admin_network/wifi.lua @@ -376,6 +376,14 @@ meshfwd.rmempty = false meshfwd.default = "1" meshfwd:depends({mode="mesh"}) +mesh_rssi_th = s:taboption("advanced", Value, "mesh_rssi_threshold", + translate("RSSI threshold for joining"), + translate("0 = not using RSSI threshold, 1 = do not change driver default")) +mesh_rssi_th.rmempty = false +mesh_rssi_th.default = "0" +mesh_rssi_th.datatype = "range(-255,1)" +mesh_rssi_th:depends({mode="mesh"}) + ssid = s:taboption("general", Value, "ssid", translate("<abbr title=\"Extended Service Set Identifier\">ESSID</abbr>")) ssid.datatype = "maxlength(32)" ssid:depends({mode="ap"}) @@ -669,6 +677,7 @@ if hwtype == "mac80211" or hwtype == "prism2" then encr:value("psk", "WPA-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk2", "WPA2-PSK", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}, {mode="adhoc"}) + encr:value("sae", "SAE", {mode="mesh"}) if has_ap_eap and has_sta_eap then encr:value("wpa", "WPA-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) encr:value("wpa2", "WPA2-EAP", {mode="ap"}, {mode="sta"}, {mode="ap-wds"}, {mode="sta-wds"}) @@ -689,6 +698,7 @@ if hwtype == "mac80211" or hwtype == "prism2" then encr:value("psk", "WPA-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk2", "WPA2-PSK", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) encr:value("psk-mixed", "WPA-PSK/WPA2-PSK Mixed Mode", {mode="sta"}, {mode="sta-wds"}, {mode="adhoc"}) + encr:value("sae", "SAE", {mode="mesh"}) if has_sta_eap then encr:value("wpa", "WPA-EAP", {mode="sta"}, {mode="sta-wds"}) encr:value("wpa2", "WPA2-EAP", {mode="sta"}, {mode="sta-wds"}) @@ -841,6 +851,21 @@ for slot=1,4 do end end +saekey = s:taboption("encryption", Value, "_sae_key", translate("Key")) +saekey:depends("encryption", "sae") +saekey.rmempty = true +saekey.datatype = "wpakey" +saekey.password = true + +saekey.cfgvalue = function(self, section, value) + local key = m.uci:get("wireless", section, "key") + return key +end + +saekey.write = function(self, section, value) + self.map.uci:set("wireless", section, "key", value) +end + if hwtype == "mac80211" or hwtype == "prism2" then -- Probe 802.11r support (and EAP support as a proxy for Openwrt) @@ -1087,8 +1112,8 @@ if hwtype == "mac80211" then ieee80211w = s:taboption("encryption", ListValue, "ieee80211w", translate("802.11w Management Frame Protection"), translate("Requires the 'full' version of wpad/hostapd " .. - "and support from the wifi driver <br />(as of Feb 2017: " .. - "ath9k and ath10k, in LEDE also mwlwifi and mt76)")) + "and support from the wifi driver <br />(as of Jan 2019: " .. + "ath9k, ath10k, mwlwifi and mt76)")) ieee80211w.default = "" ieee80211w.rmempty = true ieee80211w:value("", translate("Disabled (default)")) diff --git a/modules/luci-mod-rpc/luasrc/controller/rpc.lua b/modules/luci-mod-rpc/luasrc/controller/rpc.lua index 1e8038b28a..37a976035e 100644 --- a/modules/luci-mod-rpc/luasrc/controller/rpc.lua +++ b/modules/luci-mod-rpc/luasrc/controller/rpc.lua @@ -14,7 +14,6 @@ function session_retrieve(sid, allowed_users) if type(sdat) == "table" and type(sdat.values) == "table" and type(sdat.values.token) == "string" and - type(sdat.values.secret) == "string" and type(sdat.values.username) == "string" and util.contains(allowed_users, sdat.values.username) then @@ -78,8 +77,7 @@ function rpc_auth() util.ubus("session", "set", { ubus_rpc_session = login.ubus_rpc_session, values = { - token = sys.uniqueid(16), - secret = sys.uniqueid(16) + token = sys.uniqueid(16) } }) @@ -87,8 +85,7 @@ function rpc_auth() if sdat then return { sid = sid, - token = sdat.token, - secret = sdat.secret + token = sdat.token } end end diff --git a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js index 39ddab3979..a742243a03 100644 --- a/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js +++ b/modules/luci-mod-status/htdocs/luci-static/resources/view/status/iptables.js @@ -165,7 +165,7 @@ function parse_output(table, s) else if (m[1].match(/^num /)) { continue; } - else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+\/\d+) +([a-f0-9:.]+\/\d+) +(.+)$/)) !== null) { + else if ((m2 = m[1].match(/^(\d+) +(\d+) +(\d+) +(.*?) +(\S+) +(\S*) +(\S+) +(\S+) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +([a-f0-9:.]+(?:\/[a-f0-9:.]+)?) +(.+)$/)) !== null) { var num = +m2[1], pkts = +m2[2], bytes = +m2[3], diff --git a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua index c26fd475a4..b58bbd4134 100644 --- a/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua +++ b/modules/luci-mod-system/luasrc/model/cbi/admin_system/system.lua @@ -22,6 +22,7 @@ s.addremove = false s:tab("general", translate("General Settings")) s:tab("logging", translate("Logging")) s:tab("language", translate("Language and Style")) +s:tab("advanced", translate("Advanced")) if has_zram then s:tab("zram", translate("ZRam Settings")) end -- @@ -170,6 +171,28 @@ end -- +-- Advanced +-- + +o = s:taboption("advanced", Value, "_pollinterval", + translate("Polling interval"), + translate("Polling interval for status queries in seconds")) +o.datatype = "range(3, 20)" +o.default = 5 +o:value("3") +o:value("5") +o:value("10") + +function o.cfgvalue(...) + return m.uci:get("luci", "main", "pollinterval") +end + +function o.write(self, section, value) + m.uci:set("luci", "main", "pollinterval", value) +end + + +-- -- NTP -- diff --git a/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua b/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua index f785b7fb6f..063d8c07eb 100644 --- a/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua +++ b/protocols/luci-proto-ppp/luasrc/model/cbi/admin_network/proto_pppoe.lua @@ -119,7 +119,7 @@ host_uniq = section:taboption("advanced", Value, "host_uniq", translate("Raw hex-encoded bytes. Leave empty unless your ISP require this")) host_uniq.placeholder = translate("auto") -host_uniq.datatype = "hex" +host_uniq.datatype = "hexstring" demand = section:taboption("advanced", Value, "demand", diff --git a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css index 8c6f681105..db5304b430 100644 --- a/themes/luci-theme-material/htdocs/luci-static/material/cascade.css +++ b/themes/luci-theme-material/htdocs/luci-static/material/cascade.css @@ -40,24 +40,6 @@ url("fonts/font.svg") format("svg"); } -::-webkit-scrollbar { - width: 10px; - height: 10px; - background: transparent; -} - -::-webkit-scrollbar-thumb { - background: #9e9e9e; -} - -::-webkit-scrollbar-thumb:hover { - background: #757575; -} - -::-webkit-scrollbar-thumb:active { - background: #424242; -} - .table { position: relative; display: table; @@ -270,7 +252,6 @@ code { font-size-adjust: .35; padding: 1px 3px; color: #101010; - border: thin solid #999; border-radius: 2px; background: #ddd; } @@ -550,18 +531,29 @@ header > .fill > .container > .status > * { } .main > .main-left > .nav > .slide > .menu::before { - font-weight: 900; position: absolute; + top: 30%; right: 17px; - content: "\2228"; - transform: scale(1.3, .75); + width: 1rem; + height: 1rem; + content: ""; + background-image: url(data:image/svg+xml;base64,PHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIHg9IjBweCIgeT0iMHB4IiB2aWV3Qm94PSIwIDAgMTAwMCAxMDAwIiBlbmFibGUtYmFja2dyb3VuZD0ibmV3IDAgMCAxMDAwIDEwMDAiIHhtbDpzcGFjZT0icHJlc2VydmUiPjxnPjxwYXRoIGQ9Ik01MDAsNjI1LjJMNzUuMywyNTVMMTAsMzE0LjlMNTAwLDc0NWw0OTAtNDMwLjFMOTI0LjcsMjU1TDUwMCw2MjUuMnoiLz48L2c+PC9zdmc+); + background-repeat: no-repeat; } .main > .main-left > .nav > .slide > .menu.active::before { - content: "\2227"; + transform: rotate(-180deg); +} + +body[class*="node-"] > .main > .main-left > .nav > .slide > .menu::before { + transition: transform .1s ease-in-out; } -.main > .main-left[style$="overflow: hidden;"] > .nav > .slide > .menu::before { +body[class*="node-"] > .main > .main-left > .nav > .slide > .menu.active::before { + transition: transform .2s ease-in-out; +} + +.main > .main-left[style*="overflow: hidden"] > .nav > .slide > .menu::before { display: none; } @@ -700,6 +692,8 @@ h5 { .cbi-section, .cbi-section-error, +#iptables, +.Firewall form, #cbi-network > .cbi-section-node, #cbi-wireless > .cbi-section-node, #cbi-wireless > #wifi_assoclist_table, @@ -1779,10 +1773,12 @@ td > .ifacebadge, #syslog { font-size: small; + overflow-y: hidden; width: 100%; min-height: 15rem; margin-bottom: 20px; padding: 1rem; + padding-bottom: 2.5rem; resize: none; color: #eee; border: 0; @@ -2287,16 +2283,12 @@ input[name="nslookup"] { /* firewall */ #iptables { - font-family: inherit; - font-weight: normal; - font-style: normal; - line-height: 1; - min-width: inherit; - margin: 0 0 2rem 0; - padding: 2rem; - border: 0; - border-radius: 0; - background-color: #fff; + margin: 0; +} + +.Firewall form { + padding: 0; + box-shadow: none; } #cbi-firewall-redirect table *, @@ -2629,7 +2621,6 @@ input[name="nslookup"] { .tr.placeholder > .td, #cbi-firewall .tr > .td, - #iptables .tr:nth-child(2) > .td, #cbi-network .tr:nth-child(2) > .td, .cbi-section #wifi_assoclist_table .tr > .td { border-top: 0; @@ -2723,17 +2714,9 @@ input[name="nslookup"] { } .Firewall form { - font-family: inherit; - font-weight: normal; - font-style: normal; - line-height: normal; position: static !important; - min-width: inherit; margin: 0 0 2rem 0; padding: 2rem; - border: 0; - border-radius: 0; - background-color: #fff; box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .16), 0 0 2px 0 rgba(0, 0, 0, .12); } @@ -2923,6 +2906,26 @@ input[name="nslookup"] { } } +@media screen and (min-width: 600px) { + ::-webkit-scrollbar { + width: 10px; + height: 10px; + background: transparent; + } + + ::-webkit-scrollbar-thumb { + background: #9e9e9e; + } + + ::-webkit-scrollbar-thumb:hover { + background: #757575; + } + + ::-webkit-scrollbar-thumb:active { + background: #424242; + } +} + @media screen and (min-width: 1152px) { .cbi-value input[type="password"], .cbi-value input[type="text"] { diff --git a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css index ab7cac626c..449f9d4cf3 100644 --- a/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css +++ b/themes/luci-theme-rosy/htdocs/luci-static/rosy/cascade.css @@ -16,149 +16,129 @@ * Licensed to the public under the Apache License 2.0 */ +/* + * Font generate by Icomoon<icomoon.io> + */ @font-face { - font-family: 'icomoon'; - src: url('fonts/font.eot'); - src: url('fonts/font.eot') format('embedded-opentype'), url('fonts/font.ttf') format('truetype'), url('fonts/font.woff') format('woff'), url('fonts/font.svg') format('svg'); - font-weight: normal; - font-style: normal; -} - -strong { - font-weight: normal; + font-family: "icomoon"; + font-weight: normal; + font-style: normal; + src: url("fonts/font.eot"); + src: url("fonts/font.eot") format("embedded-opentype"), url("fonts/font.ttf") format("truetype"), + url("fonts/font.woff") format("woff"), url("fonts/font.svg") format("svg"); } +/* Table correlation è¡¨æ ¼ */ .table { - display: table; - position: relative; + position: relative; + display: table; } .tr { - display: table-row; + display: table-row; } .thead { - display: table-header-group; + display: table-header-group; } .tbody { - display: table-row-group; + display: table-row-group; } .tfoot { - display: table-footer-group; + display: table-footer-group; } .td, .th { - vertical-align: middle; - text-align: center; - display: table-cell; - padding: .8em; + line-height: normal; + display: table-cell; + padding: .5em; + text-align: center; + vertical-align: middle; } .th { - font-weight: normal; + color: #333; +} + +.td { + color: #777; } .tr.placeholder { - height: 4em; - background-color: #f9f9f9; + height: 4em; } -.tr.placeholder>.td { - position: absolute; - left: 0; - right: 0; - bottom: 0; - text-align: center; - line-height: 3em; - background: #f9f9f9; +.tr.placeholder > .td { + line-height: 3; + position: absolute; + right: 0; + bottom: 0; + left: 0; + text-align: center !important; + background: inherit; +} + +.td[width="33%"] { + padding: 1.1em; } .table[width="33%"], .th[width="33%"], .td[width="33%"] { - width: 33%; + width: 33%; } .table[width="100%"], .th[width="100%"], .td[width="100%"] { - width: 100%; + width: 100%; } +/* grid æ …æ ¼ */ .col-1 { - flex: 1 1 30px !important; - -webkit-flex: 1 1 30px !important; + flex: 1 1 30px !important; } .col-2 { - flex: 2 2 60px !important; - -webkit-flex: 2 2 60px !important; + flex: 2 2 60px !important; } .col-3 { - flex: 3 3 90px !important; - -webkit-flex: 3 3 90px !important; + flex: 3 3 90px !important; } .col-4 { - flex: 4 4 120px !important; - -webkit-flex: 4 4 120px !important; + flex: 4 4 120px !important; } .col-5 { - flex: 5 5 150px !important; - -webkit-flex: 5 5 150px !important; + flex: 5 5 150px !important; } .col-6 { - flex: 6 6 180px !important; - -webkit-flex: 6 6 180px !important; + flex: 6 6 180px !important; } .col-7 { - flex: 7 7 210px !important; - -webkit-flex: 7 7 210px !important; + flex: 7 7 210px !important; } .col-8 { - flex: 8 8 240px !important; - -webkit-flex: 8 8 240px !important; + flex: 8 8 240px !important; } .col-9 { - flex: 9 9 270px !important; - -webkit-flex: 9 9 270px !important; + flex: 9 9 270px !important; } .col-10 { - flex: 10 10 300px !important; - -webkit-flex: 10 10 300px !important; -} - -.cbi-button-up, -.cbi-button-down, -.cbi-value-helpicon, -.main>.loading>span { - font-family: 'icomoon' !important; - speak: none; - font-style: normal !important; - font-weight: normal !important; - font-variant: normal !important; - text-transform: none !important; - line-height: 1; - -webkit-font-smoothing: antialiased; - -moz-osx-font-smoothing: grayscale; -} - -* { - margin: 0; - padding: 0; - box-sizing: border-box; + flex: 10 10 300px !important; } +/* dom å…ƒç´ */ .h1, .h2, .h3, @@ -171,2583 +151,2962 @@ h3, h4, h5, h6 { - font-family: inherit; - font-weight: normal; - line-height: 1.1; - color: inherit; + font-family: inherit; + font-weight: normal; + line-height: 1.1 !important; + color: inherit; } html { - -webkit-text-size-adjust: 100%; - -ms-text-size-adjust: 100%; - position: relative; + -webkit-text-size-adjust: 100%; + -ms-text-size-adjust: 100%; + height: 100%; } body { - font-size: 0.8rem; - background-color: #EEE; + font-size: .8rem; + background-color: #eee; + height: auto; } html, body { - margin: 0px; - padding: 0px; - height: auto; - min-height: 100%; - font-family: Microsoft Yahei, WenQuanYi Micro Hei, sans-serif, "Helvetica Neue", Helvetica, Hiragino Sans GB; + font-family: "Microsoft Yahei", "WenQuanYi Micro Hei", "sans-serif", "Helvetica Neue", "Helvetica", + "Hiragino Sans GB"; + margin: 0; + padding: 0; + background-color: #EBF1F6; } -select { - padding: 0.36rem 0.8rem; - color: #555; - background-color: #fff; - background-image: none; - border: 1px solid #ccc; -} - -select, -input, -.cbi-dropdown { - background-color: transparent; - color: rgba(0, 0, 0, .87); - border: none; - border-bottom: 2px solid rgba(0, 0, 0, .26); - outline: 0; - padding: 0; - box-shadow: none; - border-radius: 0; - background-image: none; - height: auto; - font-size: 0.8rem; +header { + display: none; } -select:not([multiple="multiple"]):focus, -input:focus { - border-color: #0099CC; +select { + padding: .36rem .8rem; + color: #555; + border: thin solid #ccc; + background-color: #fff; + background-image: none; } -select[multiple="multiple"] { - height: auto; +pre { + overflow: auto; } code { - color: #0099CC; + font-size: 1rem; + font-size-adjust: .35; + padding: 1px 3px; + color: #101010; + border: thin solid #999; + border-radius: 2px; + background: #ddd; } abbr { - color: #005470; - text-decoration: underline; - cursor: help; + cursor: help; + text-decoration: underline; + color: #005470; } hr { - margin: 1rem 0; - border-color: #EEE; - opacity: 0.1; + margin: 1rem 0; + opacity: .1; + border-color: #eee; } -footer>a { - color: #aaa; - text-decoration: none; +textarea { + resize: none; + border-radius: 20px; } -.main>.loading { - position: fixed; - width: 100%; - height: 100%; - z-index: 2000; - display: block; - background-color: #354057; - top: 0; +.pull-right { + float: right; } -.main>.loading>span { - display: block; - text-align: center; - margin-top: 2rem; - color: #888; - font-size: 1.2rem; - line-height: 45px; +.pull-left { + float: left; } -.main>.loading>span>.loading-img { - margin-right: 0.2rem; - display: inline-block; +.nowrap:not(.td) { + white-space: nowrap; } -.main>.loading>span>.loading-img img { - vertical-align: middle; +[disabled="disabled"] { + pointer-events: none; } -.pull-right { - float: right; +#xhr_poll_status { + display: flex; } -.pull-left { - float: left; +.danger { + background-color: #f794b0 !important; +} + +.warning { + background-color: #f0e68c !important; +} + +.success { + background-color: #f24c7c !important; +} + +.notice { + background-color: #468ea4 !important; +} + +.error { + color: #f00; +} + +ul { + line-height: normal; } li { - list-style-type: none; + list-style-type: none; } h1 { - font-size: 2rem; - padding-bottom: 10px; - border-bottom: 1px solid #eee; + font-size: 2rem; + padding-bottom: 10px; + border-bottom: thin solid #eee; } h2 { - margin: 2rem 0 0 0; - color: #354057; - font-size: 1.8rem; - padding-bottom: 10px; - border-bottom: 1px solid #eee; + font-size: 1.8rem; + margin: 2rem 0 0 0; + padding-bottom: 10px; + color: #354057; } h3 { - margin: 2rem 0 0 0; - font-size: 1.4rem; - padding-bottom: 10px; + font-size: 1.4rem; + margin: 2rem 0 0 0; + padding-bottom: 10px; } h4 { - margin: 2rem 0 0 0; - font-size: 1.2rem; - padding-bottom: 10px; + font-size: 1.2rem; + margin: 2rem 0 0 0; + padding-bottom: 10px; } -.mobile-hide { - display: inline-block; +h5 { + font-size: 1rem; + margin: 2rem 0 0 0; + padding-bottom: 10px; } -.PC-hide { - width: 100%; - display: none; +.cbi-section, +.cbi-section-error, +#cbi-network > .cbi-section-node, +#cbi-wireless > .cbi-section-node, +#cbi-wireless > #wifi_assoclist_table, +[data-page^="admin-system-admin"]:not(.login) .cbi-map:not(#cbi-dropbear), +[data-page="admin-system-opkg"] #maincontent > .container { + font-family: inherit; + font-weight: normal; + font-style: normal; + line-height: normal; + min-width: inherit; + margin: 1rem 0 0 0; + padding: 2rem; + border-radius: 20px; + background-color: #fff; } -.cbi-section { - margin: 1rem 0 0 0; - padding: 2rem; - border: 0; - font-weight: normal; - font-style: normal; - line-height: 1; - font-family: inherit; - min-width: inherit; - border-radius: 20px; - background-color: #FFF; - -webkit-overflow-scrolling: touch; +fieldset { + border: none; +} + +.cbi-map-descr + fieldset { + margin-top: 1rem; + border: none; +} + +.cbi-section > legend { + display: none !important; } -.cbi-section>legend { - display: none !important; +fieldset > fieldset, +.cbi-section > .cbi-section { + margin: 0; + padding: 0; + border: 0; + box-shadow: none; } -.cbi-section>h3:first-child, +.cbi-section > h3:first-child, .panel-title { - width: 100%; - display: block; - line-height: 1; - color: #354057; - font-size: 1.4rem; - padding-bottom: 1rem; - margin: 0; + font-size: 1.4rem; + line-height: 1; + display: block; + width: 100%; + margin: 0; + margin-bottom: .5rem; + color: #354057; } -.table { - width: 100%; - border-radius: 20px; +/* btn 按钮 */ +.cbi-button-up, +.cbi-button-down, +.cbi-value-helpicon, +.showSide { + font-family: "icomoon" !important; + font-weight: normal; + font-style: normal; + font-variant: normal; + line-height: 1; + text-transform: none; + -webkit-font-smoothing: antialiased; + speak: none; } -.table>.tbody>.tr>.td, -.table>.tbody>.tr>.th, -.table>.tfoot>.tr>.td, -.table>.tfoot>.tr>.th, -.table>.thead>.tr>.td, -.table>.thead>.tr>.th { - padding: .5rem; - border-top: 1px solid #ddd; - white-space: nowrap; +* { + box-sizing: border-box; + margin: 0; + padding: 0; } -.cbi-section-table-cell { - white-space: nowrap; - align-self: flex-end; - flex: 1 1 auto; +.btn, +button, +select, +input, +.cbi-dropdown { + height: 1.8rem; + padding: 0; + color: rgba(0, 0, 0, .87); + border: 0; + border-bottom: 2px solid rgba(0, 0, 0, .26); + border-radius: 0; + outline: 0; + background-color: transparent; + background-image: none; + box-shadow: none; + vertical-align: bottom; } -.cbi-section-table { - border: none; +select, +.cbi-dropdown { + width: inherit; } -.cbi-section-table-row { - text-align: center; - margin-bottom: 1rem; - background: #f4f4f4; +select:not([multiple="multiple"]):focus, +input:not(.cbi-button):focus, +.cbi-dropdown:focus, +.cbi-dynlist > .item:focus { + border-color: #09c; } -.cbi-section-table-row:last-child { - margin-bottom: 0; +select[multiple="multiple"] { + height: auto; } -.cbi-section-table-row>.cbi-value-field .cbi-input-select, -.cbi-section-table-row>.cbi-value-field .cbi-input-text, -.cbi-section-table-row>.cbi-value-field .cbi-input-password, -.cbi-section-table-row>.cbi-value-field .cbi-dropdown { - width: 100%; +/* footer 尾部 */ +footer { + font-size: .8rem; + overflow: hidden; + padding: 1rem; + text-align: right; + color: #aaa; + width: 100%; + float: right; +} + +footer > a { + text-decoration: none; + color: #aaa; +} + +/* Main interface ä¸»ç•Œé¢ */ +.loading { + position: fixed; + z-index: 3000; + top: 0; + display: block; + width: 100%; + height: 100%; + pointer-events: none; + background-color: #354057; +} + +.loading > span { + font-family: monospace; + font-size: 2.0rem; + font-size-adjust: .35; + position: relative; + top: 12.5%; + display: block; + text-align: center; + color: #888; +} + +.loading > span > .loading-img { + font-family: "icomoon" !important; + font-size: 1.0rem; + display: inline-block; + margin-right: 1rem; + animation: anim-rotate 2s infinite linear; + vertical-align: middle; +} + +@keyframes anim-rotate { + 0% { + -webkit-transform: rotate(0); + -ms-transform: rotate(0); + transform: rotate(0); + } + + 100% { + -webkit-transform: rotate(360deg); + -ms-transform: rotate(360deg); + transform: rotate(360deg); + } +} + +.Processes #maincontent > .container { + margin-right: 0; +} + +/* Main interface left å·¦ä¸»ç•Œé¢ */ +.main-left { + position: fixed; + top: 10px; + bottom: 10px; + left: 10px; + width: 15%; + border-radius: 20px; + background-color: #7f8ba5; + z-index: 2000; + min-width: 210px; } -.cbi-section-table-row>.cbi-value-field [data-dynlist]>input, -.cbi-section-table-row>.cbi-value-field input.cbi-input-password { - width: calc(100% - 1.5rem); +.main-left .nav-container { + position: absolute; + top: 10px; + left: 10px; + bottom: 10px; + background-color: #354057; + width: 100%; + border-radius: 20px; } -.table .tr:first-child .td:first-child, -.table .tr:first-child::before, -.table .tr:first-child .th:first-child { - border-top-left-radius: 10px; +.main-left .nav-container .navbar-container { + position: absolute; + overflow: hidden; + bottom: 10px; + top: 82px; + width: 100%; + height: calc(100% - 92px); } -.table .tr:first-child .td:last-child, -.table .tr:first-child .th:last-child { - border-top-right-radius: 10px; +.main-left .nav-container .brand { + color: #fff; + text-decoration: none; + font-size: 18px; + display: block; + text-align: center; + padding: 36px 0 24px; + border-bottom: 1px solid #fff; + margin: 0 15px; } -.table .tr:last-child .td:first-child, -.table .tr:last-child::before { - border-bottom-left-radius: 10px; +.main-left .nav { + margin-top: .5rem; } -.table .tr:last-child .td:last-child { - border-bottom-right-radius: 10px; +.main-left .nav > li { + padding: .5rem 1rem; + cursor: pointer; } -.table .tr.placeholder:last-child { - background-color: transparent; +.main-left .nav > li a { + display: block; + color: #fff; } -/* fix progress bar */ -.cbi-progressbar { - background-color: #9bc1cc; - border-radius: 20px; - overflow: hidden; - position: relative; +.main-left .nav > .slide { + padding: 0; } -.cbi-progressbar div { - background-color: #468ea4; - height: 20px; - border-radius: 20px; +.main-left .nav > .slide > ul { + display: none; } -.cbi-progressbar::after { - content: attr(title); - position: absolute; - top: 0; - left: 0; - right: 0; - bottom: 0; - text-align: center; - line-height: 1.2rem; - color: #fff; +.main-left .nav > .slide > .menu { + font-size: 1.15rem; + display: block; + padding: .5rem 1rem; + text-decoration: none; + color: #fff; + width: 90%; + border-radius: 0 25px 25px 0; +} + +.main-left .nav > .slide > .menu.active { + background: #485267; +} + +.main-left .nav > li:hover, +.main-left .nav > .slide > .menu:hover, +.main-left .nav > .slide > .slide-menu > li:hover { + background: #485267; +} + +.main-left .nav > .slide:hover { + background: none; +} + +.main-left .nav > .slide > .slide-menu > li { + margin: 5px 0; + padding: 10px 2rem; + width: 90%; + border-radius: 0 25px 25px 0; +} + +.main-left .nav > .slide > .slide-menu > .active { + background-color: #f24c7c !important; + width: 80%; + border-radius: 0 25px 25px 0; +} + +.main-left .nav > .slide > .slide-menu > li > a { + white-space: nowrap; + text-decoration: none; +} + +.main-left .nav > .slide > .slide-menu > .active > a { + color: #fff; +} + +.main-left .nav > .slide > .slide-menu > .active:hover { + cursor: hand; +} + +/* Main interface right å³ä¸»ç•Œé¢ */ +.main-right { + width: 84%; + height: 100%; +} + +.main-right .container .alert, +.main-right .container .alert-message { + margin-top: 1rem; +} + +.main-right .container .alert-message { + padding: 1rem; + margin-top: 1rem; + border-radius: 20px; + background-color: #fff !important; +} + +.main-right .container .alert-message h4 { + margin-top: 1rem; + background: url(./no-pwd.png) no-repeat left 1px / 28px; + padding: 7px 0 0 32px; +} + +.main-right .container .alert-message .btn { + margin-top: .8rem; + padding: 7px 6px; + background-color: #468ea4; + border-radius: 20px; + color: #fff; +} + +/* table è¡¨æ ¼ */ +table { + border-spacing: 0; + border-collapse: collapse; +} + +table, +.table { + overflow: hidden; + width: 100%; + border: 1px solid #ddd; + border-radius: 10px; +} + +table > tbody > tr > td, +table > tbody > tr > th, +table > tfoot > tr > td, +table > tfoot > tr > th, +table > thead > tr > td, +table > thead > tr > th, +.table > .tbody > .tr > .td, +.table > .tbody > .tr > .th, +.table > .tfoot > .tr > .td, +.table > .tfoot > .tr > .th, +.table > .thead > .tr > .td, +.table > .thead > .tr > .th, +.table > .tr > .td.cbi-value-field, +.table > .tr > .th.cbi-section-table-cell { + padding: .5rem; +} + +.container > .cbi-section:first-of-type > .table[width="100%"] > .tr > .td { + padding: .6rem; +} + +.cbi-section-table-cell { + line-height: 1.1; + align-self: flex-end; + flex: 1 1 auto; +} + +tr > td, +tr > th, +.tr > .td, +.tr > .th, +.cbi-section-table-row::before, +#cbi-wireless > #wifi_assoclist_table > .tr:nth-child(2) { + border-top: thin solid #ddd; +} + +tr:first-child > td .tr:first-child > .td, +#cbi-wireless .td, +#cbi-network .tr:first-child > .td, +.table[width="100%"] > .tr:first-child > .td, +[data-page="admin-network-diagnostics"] .tr > .td, +.tr.table-titles > .th, +.tr.cbi-section-table-titles > .th { + border-top: 0 !important; +} + +.cbi-section-table-row { + margin-bottom: 1rem; + text-align: center !important; + background: #f4f4f4; +} + +.cbi-section-table-row:last-child { + margin-bottom: 0; +} + +.cbi-section-table-row > .cbi-value-field .cbi-input-select, +.cbi-section-table-row > .cbi-value-field .cbi-input-text, +.cbi-section-table-row > .cbi-value-field .cbi-input-password, +.cbi-section-table-row > .cbi-value-field .cbi-dropdown { + width: 100%; +} + +.cbi-section-table-row > .cbi-value-field [data-dynlist] > input, +.cbi-section-table-row > .cbi-value-field input.cbi-input-password { + width: calc(100% - 1.5rem); +} + +.cbi-section-table-row .td { + text-align: center !important; +} + +div > table > tbody > tr:nth-of-type(2n), +div > .table > .tr:nth-of-type(2n) { + background-color: #f9f9f9; } /* fix multiple table */ table table, .table .table { - border: none; + border: 0; } .cbi-value-field table, .cbi-value-field .table { - border: none; + border: 0; } -td>table>tbody>tr>td, -.td>.table>.tbody>.tr>.td { - border: none; +td > table > tbody > tr > td, +.td > .table > .tbody > .tr > .td { + border: 0; } -.cbi-value-field>table>tbody>tr>td, -.cbi-value-field>.table>.tbody>.tr>.td { - border: none; +.cbi-value-field > table > tbody > tr > td, +.cbi-value-field > .table > .tbody > .tr > .td { + border: 0; } /* button style */ .btn, -.cbi-button { - margin: 0 .8rem .5rem 0; - -webkit-appearance: none; - color: rgba(0, 0, 0, 0.87); - background-color: #F0F0F0; - transition: all 0.2s ease-in-out; - display: inline-block; - padding: .5rem .8rem; - border: none; - border-radius: 25px; - cursor: pointer; - -ms-touch-action: manipulation; - touch-action: manipulation; - background-image: none; - text-align: center; - vertical-align: middle; - white-space: nowrap; - -webkit-user-select: none; - -moz-user-select: none; - -ms-user-select: none; - user-select: none; - font-size: 0.8rem; - width: auto; - display: inline-block; - text-decoration: none; +.cbi-button, +.item::after { + font-size: .8rem; + display: inline-block; + width: auto !important; + padding: 0 .8rem; + cursor: pointer; + -webkit-user-select: none; + -moz-user-select: none; + -ms-user-select: none; + user-select: none; + transition: all .2s ease-in-out; + text-align: center; + vertical-align: middle; + white-space: nowrap; + text-decoration: none; + color: rgba(0, 0, 0, .87); + border: 0; + border-radius: 20px; + background-color: #f0f0f0; + background-image: none; + -webkit-appearance: none; + -ms-touch-action: manipulation; + touch-action: manipulation; +} + +.cbi-button:not(select) { + -webkit-appearance: none !important; +} + +form[method="post"] + form[method="post"], +.cbi-button + .cbi-button { + margin-left: .6rem; +} + +.btn:hover, +.btn:focus, +.btn:active, +.cbi-button:hover, +.cbi-button:focus, +.cbi-button:active, +.item:hover::after, +.item:focus::after, +.item:active::after, +.cbi-page-actions .cbi-button-apply + .cbi-button-save:hover, +.cbi-page-actions .cbi-button-apply + .cbi-button-save:focus, +.cbi-page-actions .cbi-button-apply + .cbi-button-save:active { + text-decoration: none; + outline: 0; } .btn:disabled, .cbi-button:disabled { - cursor: not-allowed; - pointer-events: none; - opacity: 0.60; - box-shadow: none; -} - -.cbi-page-actions .cbi-button-apply, -.cbi-section-actions .cbi-button-edit, -.cbi-button-edit.important, -.cbi-button-apply.important, -.cbi-button-reload.important, -.cbi-button-apply, -.cbi-page-actions .cbi-button-save { - color: #fff; - background-color: #337ab7; - border: none; -} - -.cbi-button-add.important, -.cbi-button-save.important, -.cbi-button-positive.important, -.cbi-button-action.important, -.cbi-section-actions .cbi-button-edit { - color: #337ab7; - background-color: transparent; - border: 1px solid #337ab7; -} - -.cbi-button-remove.important, -.cbi-button-reset.important, -.cbi-button-negative.important { - color: #fff; - background-color: #d9534f; - border: none; + cursor: not-allowed; + pointer-events: none; + opacity: .5; + box-shadow: none; } +/* gray */ +.modal div[class="btn"], .cbi-button-find, .cbi-button-link, .cbi-button-up, .cbi-button-down, -.cbi-button-neutral { - color: #468ea4; - background-color: transparent; - border: 1px solid #468ea4; +.cbi-button-neutral, +.cbi-button[name="zero"], +.cbi-button[name="restart"], +.cbi-button[onclick="hide_empty(this)"] { + border: 1px solid; +} + +/* dark blue */ +.btn.primary, +.cbi-page-actions .cbi-button-save, +.cbi-page-actions .cbi-button-apply + .cbi-button-save, +.cbi-button-add, +.cbi-button-save, +.cbi-button-positive, +.cbi-button-link, +.cbi-button[value="Enable"], +.cbi-button[value="Scan"], +.cbi-button[value^="Back"], +.cbi-button-neutral[onclick="handleConfig(event)"] { + font-weight: normal; + color: #2e6da4; + border: thin solid #2e6da4; + background-color: transparent; } +/* light blue */ +.cbi-page-actions .cbi-button-apply, +.cbi-section-actions .cbi-button-edit, .cbi-button-edit, +.cbi-button-apply, .cbi-button-reload, -.cbi-button-action { - color: #468ea4; - background-color: transparent; +.cbi-button-action, +.cbi-button[value="Submit"], +.cbi-button[value$="Apply"], +.cbi-button[onclick="addKey(event)"] { + font-weight: normal; + color: #fff; border: 1px solid #468ea4; + background-color: #468ea4; } -.cbi-page-actions .cbi-button-apply+.cbi-button-save, -.cbi-button-add, -.cbi-button-save, -.cbi-button-positive { - color: #354057; - background-color: transparent; - border: 1px solid #354057; -} - -.cbi-section-remove>.cbi-button, +/* red */ +.btn.danger, +.cbi-section-remove > .cbi-button, .cbi-button-remove, .cbi-button-reset, -.cbi-button-negative { - color: #F24C7C; +.cbi-button-negative, +.cbi-button[value="Stop"], +.cbi-button[value="Kill"], +.cbi-button[onclick="reboot(this)"], +.cbi-button-neutral[value="Restart"] { + padding: 5px .8rem; + font-weight: 100; + color: #f24b7c; + background-color: transparent; + border: 1px solid #f24b7c; +} + +/* yellow */ +.btn[value="Dismiss"], +.cbi-button[value="Terminate"], +.cbi-button[value="Reset"], +.cbi-button[value="Disabled"], +.cbi-button[onclick^="iface_reconnect"], +.cbi-button[onclick="handleReset(event)"], +.cbi-button-neutral[value="Disable"] { + font-weight: normal; + color: #9a4569; + border: 1px solid #9a4569; + background-color: transparent; +} + +/* green */ +.cbi-button-success, +.cbi-button-download, +.cbi-button[name="backup"], +.cbi-button[value="Upload"], +.cbi-button[value="Save mtdblock"] { + font-weight: normal; + color: #468ea4; + border: thin solid #468ea4; background-color: transparent; - border: 1px solid #F24C7C; } .cbi-page-actions .cbi-button-link:first-child { - float: left; + float: left; } .a-to-btn { - text-decoration: none; + text-decoration: none; } -/* table */ -.container>.tabs, -.container>.tabs>li[class~="active"], -.container>.tabs>li:hover, -.container>.cbi-tabmenu, -.container>.cbi-tabmenu>li[class~="cbi-tab"], -.container>.cbi-tabmenu>li:hover { - border-radius: 20px; +.cbi-value-field .cbi-button-add { + padding: 1px 6px; } -.container .cbi-map .cbi-tabmenu, -.container .cbi-map .cbi-tabmenu>li[class~="cbi-tab"], -.container .cbi-map .cbi-tabmenu>li:hover { - border-top-left-radius: 10px; - border-top-right-radius: 10px; +.cbi-value-field .cbi-button-neutral { + padding: 1px 8px; } -.container .cbi-map .cbi-tabmenu, -.container>.tabs, -.container>.cbi-tabmenu { - overflow: hidden; +/* tabs & menu é€‰é¡¹å¡ & èœå•æ */ +.tabs { + margin-top: 1rem; + background-color: #fff; + border-radius: 20px; } -.container .cbi-map .cbi-tabmenu+div { - border-radius: 0; - border-bottom-left-radius: 10px; - border-bottom-right-radius: 10px; +.cbi-tabmenu > li, +.tabs > li { + display: inline-block; + padding: .6rem 0; } -.tabs { - background-color: #FFFFFF; - margin-top: 1rem; +.cbi-tabmenu > li > a, +.tabs > li > a { + padding: .5rem .8rem; + text-decoration: none; + color: #404040; } -.cbi-tabmenu>li, -.tabs>li { - margin-right: .4rem; - display: inline-block; - padding: 0.6rem 0rem; +.tabs > li[class~="active"], +.tabs > li:hover { + cursor: pointer; + background-color: #468ea4; + border-radius: 20px; } -.cbi-tabmenu>li>a, -.tabs>li>a { - text-decoration: none; - color: #404040; - padding: 0.5rem 0.8rem; +.tabs > li[class~="active"], +.tabs > li:hover a { + color: #fff; } -.tabs>li[class~="active"], -.tabs>li:hover { - cursor: pointer; - background-color: #337ab7; +.tabs > li[class~="active"] > a { + color: #fff; } -.tabs>li[class~="active"]>a, -.tabs>li:hover>a { - color: #fff; +.cbi-tabmenu { + border: thin solid #d4d4d4; + border-bottom: 0; +} + +.cbi-tabmenu > li:hover { + background-color: #f1f1f1; + border-radius: 10px 10px 0 0; +} + +.cbi-tabmenu > li[class~="cbi-tab"] { + background-color: #fff; + border-radius: 10px 10px 0 0; } .cbi-tabmenu { - border-top: 1px solid #D4D4D4; - border-left: 1px solid #D4D4D4; - border-right: 1px solid #D4D4D4; + background-color: #d4d4d4; + border-radius: 10px 10px 0 0; + overflow: hidden; } -.cbi-tabmenu>li:hover { - background-color: #F1F1F1; +.cbi-section .cbi-section-remove:nth-of-type(2n), +.container > .cbi-section .cbi-section-node:nth-of-type(2n) { + background-color: #f9f9f9; } -.cbi-tabmenu>li[class~="cbi-tab"] { - background-color: #fff; +.cbi-tabmenu + div { + border-radius: 0 0 10px 10px; } -.cbi-tabmenu { - background-color: #D4D4D4; +.cbi-tabmenu + div.controls { + margin: 0; + padding: .5em 0 1em 0; + background: #fff; + border: 1px solid #d4d4d4; + border-top: none; + border-bottom: none; + border-radius: 0; +} + +.cbi-tabmenu + div.controls + .table { + border-radius: 0 0 25px 25px; + background: #fff; } [data-tab-title] { - height: 0; - opacity: 0; - overflow: hidden; + height: 0; + opacity: 0; + overflow: hidden; } [data-tab-active="true"] { - opacity: 1; - height: auto; - overflow: visible; - transition: opacity .25s ease-in; + opacity: 1; + height: auto; + overflow: visible; + transition: opacity .25s ease-in; } -.cbi-section-remove:nth-of-type(2n) { - background-color: #f9f9f9; +.cbi-section[id] .cbi-section-remove:nth-of-type(4n + 3), +.cbi-section[id] .cbi-section-node:nth-of-type(4n + 4) { + background-color: #f9f9f9; } .cbi-section-node-tabbed { - padding: 0; - margin-top: 0; - border-bottom: 1px solid #D4D4D4; - border-left: 1px solid #D4D4D4; - border-right: 1px solid #D4D4D4; + margin-top: 0; + padding: 0; + border: thin solid #d4d4d4; + border-top: 0; } -.cbi-tabcontainer>.cbi-value:nth-of-type(2n) { - background-color: #f9f9f9; +.cbi-tabcontainer > .cbi-value:nth-of-type(2n) { + background-color: #f9f9f9; } .cbi-value-field, .cbi-value-description { - display: table-cell; - line-height: 1.25; + line-height: 1.25; + display: table-cell; +} + +.cbi-input-invalid { + color: #f00; + border-color: #f00; +} + +.cbi-section-error { + font-weight: bold; + line-height: 1.42857143; + margin: 18px; + padding: 6px; + border: 1px solid #f24b7c; + border-radius: 3px; + background-color: #fce6e6; } -.cbi-value-helpicon>img { - display: none; +.cbi-section-error ul { + margin: 0 0 0 20px; +} + +.cbi-section-error ul li { + font-weight: bold; + color: #f24b7c; +} + +.cbi-value-helpicon > img { + display: none; } .cbi-value-helpicon:before { - content: "\f059"; + content: "\f059"; } .cbi-value-description { - font-size: small; - opacity: 0.5; - padding: 0.5rem 0 0 0; + font-size: small; + padding: .5rem 0 0 0; + opacity: .5; } .cbi-value-title { - word-wrap: break-word; - padding: 0.6rem 2rem .6rem 0; - width: 23rem; - float: left; - text-align: right; - display: table-cell; + display: table-cell; + float: left; + width: 23rem; + padding-top: .4rem; + padding-right: 2rem; + text-align: right; + word-wrap: break-word; } .cbi-value { - padding: 6px 0; - display: inline-block; - width: 100%; + display: inline-block; + width: 100%; + padding: .3rem 1rem; } -.cbi-section-table-descr>.cbi-section-table-cell, -.cbi-section-table-titles>.cbi-section-table-cell { - border: none; +.cbi-value ul { + line-height: 1.25; } .td[data-title]::before { - content: attr(data-title) ":\20"; - font-weight: bold; - text-align: left; - display: none; - padding: .25rem 0; - white-space: nowrap; + font-weight: bold; + display: none; + padding: .25rem 0; + content: attr(data-title) ":\20"; + text-align: left; + white-space: nowrap; } .tr.placeholder .td[data-title]::before { - display: none; + display: none; } .tr[data-title]::before, .tr.cbi-section-table-titles.named::before { - content: attr(data-title) "\20"; - font-weight: bold; - text-align: center; - display: table-cell; - align-self: center; - flex: 1 1 5%; - padding: .25rem; - white-space: normal; - word-wrap: break-word; - vertical-align: middle; + font-weight: bold; + display: table-cell; + align-self: center; + flex: 1 1 5%; + padding: .25rem; + content: attr(data-title) "\20"; + text-align: center; + vertical-align: middle; + white-space: normal; + word-wrap: break-word; } -.table .tr.cbi-rowstyle-2, -.table .tr:nth-child(n) { - background-color: #eee; +.cbi-rowstyle-1 { + background-color: #f9f9f9; } -.table .tr.cbi-rowstyle-1, -.table .tr:nth-child(2n) { - background-color: #f9f9f9; +.cbi-rowstyle-2 { + background-color: #eee; } -.table .tr.table-titles, -.table .tr.cbi-section-table-titles { - background-color: #ddd; +.cbi-rowstyle-2 .cbi-button-up, +.cbi-rowstyle-2 .cbi-button-down { + background-color: #fff !important; } .cbi-section-table .cbi-section-table-titles .cbi-section-table-cell { - width: auto !important; + width: auto !important; } .td.cbi-section-actions { - text-align: right; - vertical-align: middle; + text-align: right !important; + vertical-align: middle; } -.td.cbi-section-actions>* { - display: flex; +.td.cbi-section-actions > * { + display: inline-flex; } -.td.cbi-section-actions>*>*, -.td.cbi-section-actions>*>form>* { - flex: 1 1 4em; - margin: 0 1px; +.td.cbi-section-actions > * > *, +.td.cbi-section-actions > * > form > * { + margin: 0 5px; } -.td.cbi-section-actions>*>form { - display: inline-flex; - margin: 0; +.td.cbi-section-actions > * > form { + display: inline-flex; + margin: 0; } /* desc */ - .cbi-section-descr, .cbi-map-descr { - padding: 0.5rem; - color: #999; - font-size: small; + font-size: small; + line-height: 1.42857143; + color: #999; } -.cbi-dropdown { +.cbi-dynlist { + line-height: 1.3; + flex-direction: column; + min-height: 30px; +} + +.cbi-dynlist > .item { + position: relative; + max-width: 24.9rem; + margin: 0 2em 4px 0; + padding: 2px 4px; + cursor: default; + pointer-events: none; + color: #666; + border-bottom: 2px solid rgba(0, 0, 0, .26); +} + +.cbi-dynlist[name="sshkeys"] > .item { + max-width: none; +} + +.cbi-dynlist > .item::after { + position: absolute; + right: -2em; + bottom: 0; display: inline-flex; - cursor: pointer; - position: relative; - padding: 0; - height: auto; + min-height: 17px; + padding: 0 6px; + content: "\00D7"; + pointer-events: auto; + color: #f24b7c; + border: thin solid #f24b7c; + background-color: transparent; +} + +.cbi-dynlist > .item > span { + white-space: normal; + word-break: break-word; } -.cbi-dropdown:focus { - outline: 2px solid #4b6e9b; +.cbi-dynlist, +.cbi-dropdown { + position: relative; + display: inline-flex; + height: auto; + padding: 0; + cursor: default; } -.cbi-dropdown>ul { - margin: 0 !important; - padding: 0; - list-style: none; - overflow-x: hidden; - overflow-y: auto; - display: flex; - width: 100%; +.cbi-dropdown > ul { + display: flex; + overflow-x: hidden; + overflow-y: auto; + width: 100%; + margin: 0 !important; + padding: 0; + list-style: none; } -.cbi-dropdown>ul.preview { - display: none; +.cbi-dropdown > ul.preview { + display: none; } -.cbi-dropdown>.open { - border: 2px outset #eee; - flex-basis: 15px; - background: #eee; +.cbi-dropdown > .open { + flex-basis: 15px; } -.cbi-dropdown>.open, -.cbi-dropdown>.more { - flex-grow: 0; - flex-shrink: 0; - display: flex; - flex-direction: column; - justify-content: center; - text-align: center; - line-height: 2em; - padding: 0 .25em; +.cbi-dropdown > .open, +.cbi-dropdown > .more { + font-size: 1rem; + font-weight: 900; + line-height: 2; + display: flex; + flex-direction: column; + flex-grow: 0; + flex-shrink: 0; + justify-content: center; + padding: 0 .25em; + text-align: center; + background: #d4d4d4; + border-radius: 5px; + margin-bottom: 1px; } -.cbi-dropdown>.more, -.cbi-dropdown>ul>li[placeholder] { - color: #777; - font-weight: bold; - text-shadow: 1px 1px 0px #fff; - display: none; +.cbi-dropdown > .more, +.cbi-dropdown > ul > li[placeholder] { + font-weight: bold; + display: none; + color: #777; + text-shadow: 1px 1px 0 #fff; } -.cbi-dropdown>ul>li { - display: none; - padding: .25em; - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - flex-shrink: 1; - flex-grow: 1; - align-items: center; - align-self: center; - min-height: 20px; +.cbi-dropdown > ul > li { + display: none; + overflow: hidden; + align-items: center; + align-self: center; + flex-grow: 1; + flex-shrink: 1; + min-height: 20px; + padding: .25em; + white-space: nowrap; + text-overflow: ellipsis; } -.cbi-dropdown>ul>li .hide-open { - display: initial; +.cbi-dropdown > ul > li .hide-open { + display: initial; } -.cbi-dropdown>ul>li .hide-close { - display: none; +.cbi-dropdown > ul > li .hide-close { + display: none; } -.cbi-dropdown>ul>li[display]:not([display="0"]) { - border-left: 1px solid #ccc; +.cbi-dropdown > ul > li[display]:not([display="0"]) { + border-left: thin solid #ccc; } -.cbi-dropdown[empty]>ul { - max-width: 1px; +.cbi-dropdown[empty] > ul { + max-width: 1px; } -.cbi-dropdown>ul>li>form { - display: none; - margin: 0; - padding: 0; - pointer-events: none; +.cbi-dropdown > ul > li > form { + display: none; + margin: 0; + padding: 0; + pointer-events: none; } -.cbi-dropdown>ul>li img { - vertical-align: middle; - margin-right: .25em; +.cbi-dropdown > ul > li img { + margin-right: .25em; + vertical-align: middle; } -.cbi-dropdown>ul>li>form>input[type="checkbox"] { - margin: 0; - height: auto; +.cbi-dropdown > ul > li > form > input[type="checkbox"] { + height: auto; + margin: 0; } -.cbi-dropdown>ul>li input[type="text"] { - height: 20px; +.cbi-dropdown > ul > li input[type="text"] { + height: 20px; } .cbi-dropdown[open] { - position: relative; + position: relative; } -.cbi-dropdown[open]>ul.dropdown { - display: block; - background: #f6f6f5; - border: 1px solid #918e8c; - position: absolute; - z-index: 1000; - max-width: none; - min-width: 100%; - width: auto; -} - -.cbi-dropdown>ul>li[display], -.cbi-dropdown[open]>ul.preview, -.cbi-dropdown[open]>ul.dropdown>li, -.cbi-dropdown[multiple]>ul>li>label, -.cbi-dropdown[multiple][open]>ul.dropdown>li, -.cbi-dropdown[multiple][more]>.more, -.cbi-dropdown[multiple][empty]>.more { - flex-grow: 1; - display: flex; - align-items: center; -} - -.cbi-dropdown[empty]>ul>li, -.cbi-dropdown[optional][open]>ul.dropdown>li[placeholder], -.cbi-dropdown[multiple][open]>ul.dropdown>li>form { - display: block; +.cbi-dropdown[open] > ul.dropdown { + position: absolute; + z-index: 1100; + display: block; + width: auto; + min-width: 100%; + max-width: none; + max-height: 200px !important; + border: thin solid #918e8c; + background: #f6f6f6; +} + +.cbi-dropdown > ul > li[display], +.cbi-dropdown[open] > ul.preview, +.cbi-dropdown[open] > ul.dropdown > li, +.cbi-dropdown[multiple] > ul > li > label, +.cbi-dropdown[multiple][open] > ul.dropdown > li, +.cbi-dropdown[multiple][more] > .more, +.cbi-dropdown[multiple][empty] > .more { + display: flex; + align-items: center; + flex-grow: 1; +} + +.cbi-dropdown[empty] > ul > li, +.cbi-dropdown[optional][open] > ul.dropdown > li[placeholder], +.cbi-dropdown[multiple][open] > ul.dropdown > li > form { + display: block; } -.cbi-dropdown[open]>ul.dropdown>li .hide-open { - display: none; +.cbi-dropdown[open] > ul.dropdown > li .hide-open { + display: none; } -.cbi-dropdown[open]>ul.dropdown>li .hide-close { - display: initial; +.cbi-dropdown[open] > ul.dropdown > li .hide-close { + display: initial; } -.cbi-dropdown[open]>ul.dropdown>li { - border-bottom: 1px solid #ccc; +.cbi-dropdown[open] > ul.dropdown > li { + border-bottom: thin solid #ccc; } -.cbi-dropdown[open]>ul.dropdown>li[selected] { - background: #b0d0f0; +.cbi-dropdown[open] > ul.dropdown > li[selected] { + background: #b0d0f0; } -.cbi-dropdown[open]>ul.dropdown>li.focus { - background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%); +.cbi-dropdown[open] > ul.dropdown > li.focus { + background: linear-gradient(90deg, #a3c2e8 0%, #84aad9 100%); } -.cbi-dropdown[open]>ul.dropdown>li:last-child { - margin-bottom: 0; - border-bottom: none; +.cbi-dropdown[open] > ul.dropdown > li:last-child { + margin-bottom: 0; + border-bottom: 0; +} + +.cbi-dropdown[open] > ul.dropdown > li[unselectable] { + opacity: .7; +} + +.cbi-dropdown[open] > ul.dropdown > li > input.create-item-input:first-child:last-child { + width: 100%; } .cbi-dropdown[disabled] { - pointer-events: none; - opacity: .6; + pointer-events: none; + opacity: .6; } .cbi-dropdown .zonebadge { - width: 100%; - border-radius: 20px; - background-color: #468ea4 !important; + width: 100%; } .cbi-dropdown[open] .zonebadge { - width: auto; + width: auto; } -/* luci */ +#modal_overlay { + position: fixed; + z-index: 3000; + top: 0; + right: 10000px; + bottom: 0; + left: -10000px; + overflow-y: scroll; + transition: opacity .125s ease-in; + opacity: 0; + background: rgba(0, 0, 0, .7); + -webkit-overflow-scrolling: touch; +} + +.modal { + display: flex; + align-items: center; + flex-wrap: wrap; + width: 90%; + min-width: 270px; + max-width: 600px; + min-height: 80px; + max-height: 2400px; + margin: 5em auto; + padding: 1em; + border-radius: 20px !important; + background: #fff; +} +.modal > * { + line-height: normal; + flex-basis: 100%; +} + +.modal > pre, +.modal > textarea { + font-size: 1rem; + font-size-adjust: .35; + overflow: auto; + margin-bottom: .5em; + padding: 8.5px; + white-space: pre-wrap; + color: #fff; + outline: 0; + background-color: #354057; +} + +.modal > h4 { + margin: .5em 0; +} + +.modal ul { + margin-left: 2.2em; +} + +.modal li { + list-style-type: square; + color: #808080; +} + +.modal p { + padding-left: .25rem; + word-break: break-word; +} + +.modal .label { + font-size: .6rem; + font-weight: normal; + padding: .1rem .3rem; + padding-bottom: 0; + cursor: default; + border-radius: 0; +} + +.modal .label.warning { + background-color: #f0ad4e !important; +} + +.modal .btn { + padding: .3rem .6rem; +} + +.modal .spinning { + margin-bottom: 2em; +} + +body.modal-overlay-active { + overflow: hidden; + height: 100vh; +} + +body.modal-overlay-active #modal_overlay { + right: 0; + left: 0; + opacity: 1; +} + +.spinning { + position: relative; + padding-left: 32px !important; +} + +.spinning::before { + position: absolute; + top: 0; + bottom: 0; + left: .2em; + width: 32px; + content: " "; + background: url(../resources/icons/loading.gif) no-repeat center; + background-size: 16px; +} + +/* luci */ .hidden { - display: none + display: none; } .left, .left::before { - text-align: left !important; + text-align: left !important; } .right, .right::before { - text-align: right !important; + text-align: right !important; } .center, .center::before { - text-align: center !important; + text-align: center !important; } .top { - align-self: flex-start !important; - vertical-align: top !important; + align-self: flex-start !important; + vertical-align: top !important; } .bottom { - align-self: flex-end !important; - vertical-align: bottom !important; + align-self: flex-end !important; + vertical-align: bottom !important; } .inline { - display: inline; + display: inline; } .cbi-page-actions { - border-top: 1px solid #eee; - padding-top: 1rem; - text-align: right; + padding-top: 1rem; + text-align: right; } -/* select */ +.cbi-page-actions > form[method="post"] { + display: inline-block; +} -.cbi-value-field .cbi-dropdown { - min-width: 15rem; +/* input */ +.cbi-value input[type="password"], +.cbi-value input[type="text"] { + min-width: 15rem; } +/* select */ +.cbi-value-field .cbi-dropdown, .cbi-value-field .cbi-input-select { - width: 15rem; + min-width: 15rem; +} + +.cbi-value-field .cbi-input-invalid { + color: #f00; + border-bottom-color: #f00; +} + +/* progressbar */ +.cbi-progressbar { + position: relative; + min-width: 170px; + height: 20px; + margin: 4px 0; + background: #a9cad4; + color: #fff; + border-radius: 20px; + overflow: hidden; +} + +.cbi-progressbar > div { + width: 0; + height: 100%; + background: #468ea4; + border-radius: 20px; +} + +.cbi-progressbar::after { + font-family: monospace; + font-size: 10px; + font-size-adjust: .38; + line-height: normal; + position: absolute; + top: 50%; + right: 0; + bottom: 2px; + left: 0; + content: attr(title); + text-align: center; + white-space: pre; + transform: translateY(-50%); } .th[data-type="button"], .td[data-type="button"], .th[data-type="fvalue"], .td[data-type="fvalue"] { - flex: 1 1 2em; - text-align: center; + flex: 1 1 2em; + text-align: center; } .ifacebadge { - display: inline-flex; - border: 1px solid #CCCCCC; - padding: 0.5rem 1rem; - background: #fff; - border-radius: 20px; + display: inline-flex; + padding: .5rem .8rem; + background: #eee; + border-radius: 20px; } -td>.ifacebadge, -.td>.ifacebadge { - background-color: #F0F0F0; - font-size: 0.9rem; +td > .ifacebadge, +.td > .ifacebadge { + font-size: .8rem; + background-color: #d4d4d4; + border-radius: 20px; } -.ifacebadge>em, -.ifacebadge>img { - display: inline-block; - margin: 0 .2rem; - align-self: flex-start; +.ifacebadge > em, +.ifacebadge > img { + display: inline-block; + align-self: flex-start; + margin: 0 .2rem; } -.ifacebadge>img+img { - margin: 0 .2rem 0 0; +.ifacebadge > img + img { + margin: 0 .2rem 0 0; } .network-status-table { - display: flex; - flex-wrap: wrap; + display: flex; + flex-wrap: wrap; } .network-status-table .ifacebox { - margin: .5em .8rem; - flex-grow: 1; + flex-grow: 1; + margin: .5em; + border-radius: 20px; + overflow: hidden; } .network-status-table .ifacebox-body { - display: flex; - flex-direction: column; - height: 100%; + display: flex; + flex-direction: column; + height: 100%; + background: #f5f5f5; } -.network-status-table .ifacebox-body>span { - flex: 10 10 auto; +.network-status-table .ifacebox-body > span { + flex: 10 10 auto; + font-size: 12px; } -.network-status-table .ifacebox-body>div { - display: flex; - flex-wrap: wrap; +.network-status-table .ifacebox-body > div { + display: flex; + flex-wrap: wrap; } .network-status-table .ifacebox-body .ifacebadge { - flex: 1 1 auto; - margin: .5em .25em 0 .25em; - padding: .5em; - min-width: 220px; - background-color: #fff; - align-items: center; + align-items: center; + flex: 1 1 auto; + min-width: 220px; + margin: .5em .25em 0 .25em; + padding: .5em; + background-color: #fff; + border-radius: 20px; } -/*textarea*/ - +/* textarea */ .cbi-input-textarea { - width: 100%; - min-height: 14rem; - padding: 0.8rem; - font-size: 0.8rem; - font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; - color: black; - resize: unset; - border-radius: 20px; + font-family: monospace; + width: 100%; + min-height: 14rem; + padding: .8rem; + color: #000; } #syslog { - width: 100%; - min-height: 15rem; - padding: 1rem; - font-size: small; - color: #5F5F5F; - margin-bottom: 20px; - border-radius: 20px; - background-color: #FFF; - border: none; - resize: unset; + font-size: small; + width: 100%; + min-height: 15rem; + margin-bottom: 20px; + padding: 1rem; + resize: none; + color: #333; + border: 0; + border-radius: 20px; + background-color: #fff; } -/* change */ +#syslog:focus { + outline: 0; +} +/* config changes */ .uci-change-list { - font-family: monospace; + font-family: monospace; } .uci-change-list ins, .uci-change-legend-label ins { - text-decoration: none; - border: 1px solid #00FF00; - background-color: #CCFFCC; - display: block; - padding: 2px; + display: block; + padding: 2px; + text-decoration: none; + border: thin solid #0f0; + background-color: #cfc; } .uci-change-list del, .uci-change-legend-label del { - text-decoration: none; - border: 1px solid #FF0000; - background-color: #FFCCCC; - display: block; - font-style: normal; - padding: 2px; + font-style: normal; + display: block; + padding: 2px; + text-decoration: none; + border: thin solid #f00; + background-color: #fcc; } .uci-change-list var, .uci-change-legend-label var { - text-decoration: none; - border: 1px solid #CCCCCC; - background-color: #EEEEEE; - display: block; - font-style: normal; - padding: 2px; + font-style: normal; + display: block; + padding: 2px; + text-decoration: none; + border: thin solid #ccc; + background-color: #eee; } .uci-change-list var ins, .uci-change-list var del { - border: none; - white-space: pre; - font-style: normal; - padding: 0px; + font-style: normal; + padding: 0; + white-space: pre; + border: 0; } .uci-change-legend { - padding: 5px; + padding: 5px; } .uci-change-legend-label { - width: 150px; - float: left; + float: left; + width: 150px; } -.uci-change-legend-label>ins, -.uci-change-legend-label>del, -.uci-change-legend-label>var { - float: left; - margin-right: 4px; - width: 10px; - height: 10px; - display: block; +.uci-change-legend-label > ins, +.uci-change-legend-label > del, +.uci-change-legend-label > var { + display: block; + float: left; + width: 10px; + height: 10px; + margin-right: 4px; } .uci-change-legend-label var ins, .uci-change-legend-label var del { - line-height: 6px; - border: none; + line-height: .4; + border: 0; } .uci-change-list var, .uci-change-list del, .uci-change-list ins { - padding: 0.5rem; + padding: .5rem; } /* other fix */ - #iwsvg, #iwsvg2, #bwsvg { - border: 1px solid #D4D4D4 !important; - overflow: hidden; - border-radius: 20px; + border: 1px solid #d4d4d4 !important; + border-radius: 20px; +} + +.lang_enTraffic #bwsvg, +.lang_enWireless #iwsvg { + border: 1px solid #d4d4d4 !important; + border-radius: 0 0 20px 20px; } #iwsvg, -#bwsvg { - margin-top: 1rem; +[data-page="admin-status-realtime-bandwidth"] #bwsvg { + border-top: 0 !important; } .ifacebox { - background-color: #f9f9f9; - display: inline-flex; - flex-direction: column; - line-height: 1.2em; - min-width: 100px; - border-radius: 20px; - overflow: hidden; + line-height: 1.25; + display: inline-flex; + flex-direction: column; + min-width: 100px; + background-color: #f9f9f9; + border-radius: 10px; } .ifacebox-head { - padding: .5em .8em; - background: #eee; + padding: .5em; + background: #eee; + color: #333; + font-size: 14px; + border-radius: 10px 10px 0 0; +} + +strong { + font-weight: 100; } .ifacebox-head.active { - background: #eee; + background: #5bc0de; } .ifacebox-body { - padding: .5em .8em; + padding: .8em; + border-radius: 0 0 10px 10px; } .cbi-image-button { - margin-left: 0.5rem; + margin-left: .5rem; } .zonebadge { - padding: 0.2rem 0.5rem; - display: inline-block; - border-radius: 20px; + display: inline-block; + padding: .2rem .5rem; + border-radius: 20px; } .zonebadge .ifacebadge { - padding: .2rem .3rem; - margin: 0.1rem 0.2rem; - border: none; + margin: .1rem .2rem; + padding: .2rem .3rem; + border: thin solid #6c6c6c; + height: 26px; } -.zonebadge>input[type="text"] { - padding: 0.16rem 1rem; - min-width: 10rem; - margin-top: 0.3rem; +.zonebadge > input[type="text"] { + min-width: 10rem; + margin-top: .3rem; + padding: .16rem 1rem; } -.zonebadge>em, -.zonebadge>strong { - margin: 0 0.2rem; - display: inline-block; +.zonebadge > em, +.zonebadge > strong { + display: inline-block; + margin: 0 .2rem; } .cbi-value-field .cbi-input-checkbox, .cbi-value-field .cbi-input-radio { - margin-top: 0.5rem; - height: 1rem; -} - -.td .cbi-input-checkbox, -.td .cbi-input-radio { - margin-top: 0; + margin-top: .15rem; } -.cbi-value-field>input+.cbi-value-description { - padding: 0; +.cbi-value-field > ul > li { + display: flex; } -.cbi-value-field>ul>li { - display: flex; +.cbi-value-field > ul > li > label { + margin-top: .5rem; } -.cbi-value-field>ul>li>label { - margin-top: 0.5rem; +.cbi-value-field > ul > li .ifacebadge { + margin-top: -.5rem; + margin-left: .4rem; + background-color: #eee; } -.cbi-value-field>ul>li .ifacebadge { - background-color: #eee; - margin-left: 0.4rem; - margin-top: -0.5rem; -} - -.cbi-section-table-row>.cbi-value-field .cbi-dropdown { - min-width: 7rem; +.cbi-section-table-row > .cbi-value-field .cbi-dropdown { + min-width: 7rem; } .cbi-section-create { - margin: .5rem -3px; - display: inline-flex; - align-items: center; + display: inline-flex; + align-items: center; + margin: .5rem -3px; } -.cbi-section-create>* { - margin: 0.5rem; +.cbi-section-create > * { + margin: .5rem; } .cbi-section-remove { - padding: 0.5rem; + padding: .5rem; } div.cbi-value var, td.cbi-value-field var, .td.cbi-value-field var { - font-style: italic; - color: #0069D6; + font-style: italic; + color: #0069d6; } small { - font-size: 90%; - white-space: normal; - line-height: 1.42857143; + font-size: 90%; + line-height: 1.42857143; + white-space: normal; } .cbi-button-up, .cbi-button-down { - display: inline-block; - min-width: 0; - padding: 0.2rem 0.3rem; - font-size: 1.2rem; + font-size: 1.2rem; + display: inline-block; + min-width: 0; + padding: .2rem .3rem; } .cbi-optionals { - padding: 1rem 1rem 0 1rem; - border-top: 1px solid #CCC; + padding: 1rem 1rem 0 1rem; + border-top: thin solid #ccc; } .cbi-dropdown-container { - position: relative; + position: relative; } -.cbi-tooltip-container { - cursor: help; +.cbi-tooltip-container, +span[data-tooltip], +span[data-tooltip] .label { + cursor: help !important; } .cbi-tooltip { - position: absolute; - z-index: 1000; - left: -1000px; - opacity: 0; - transition: opacity .25s ease-out; - pointer-events: none; + position: absolute; + z-index: 1000; + left: -1000px; + padding: 2px 5px; + transition: opacity .25s ease-out; + white-space: pre; + pointer-events: none; + opacity: 0; + border-radius: 3px; + background: #fff; } .cbi-tooltip-container:hover .cbi-tooltip { - left: auto; - opacity: 1; - transition: opacity .25s ease-in; - border-radius: 20px; + left: auto; + transition: opacity .25s ease-in; + opacity: 1; + height: 38px; } .zonebadge .cbi-tooltip { - padding: .25rem; - background: inherit; - margin: -1.5rem 0 0 -.5rem; + margin: -1.5rem 0 0 -.5rem; + padding: .25rem; + background: inherit; } .zonebadge-empty { - background: repeating-linear-gradient(45deg, rgba(204, 204, 204, 0.5), rgba(204, 204, 204, 0.5) 5px, rgba(255, 255, 255, 0.5) 5px, rgba(255, 255, 255, 0.5) 10px); - color: #404040; + color: #404040; + background: repeating-linear-gradient( + 45deg, + rgba(204, 204, 204, .5), + rgba(204, 204, 204, .5) 5px, + rgba(255, 255, 255, .5) 5px, + rgba(255, 255, 255, .5) 10px + ); } .zone-forwards { - display: flex; - min-width: 10rem; + display: flex; + min-width: 10rem; } -.zone-forwards>* { - flex: 1 1 45%; +.zone-forwards > * { + flex: 1 1 45%; } -.zone-forwards>span { - flex-basis: 10%; - text-align: center; - padding: 0 .25rem; +.zone-forwards > span { + flex-basis: 10%; + padding: 0 .25rem; + text-align: center; } .zone-forwards .zone-src, .zone-forwards .zone-dest { - display: flex; - flex-direction: column; -} - -#diag-rc-output>pre { - background-color: #f5f5f5; - display: block; - padding: 8.5px; - margin: 0 0 18px; - line-height: 1.5rem; - -moz-border-radius: 3px; - white-space: pre-wrap; - word-wrap: break-word; - font-size: 1.4rem; - color: #404040; -} - -input[name="ping"], -input[name="traceroute"], -input[name="nslookup"] { - width: 80%; -} - -header>.container>.pull-right>* { - position: relative; - top: 0.45rem; - cursor: pointer; -} - -#xhr_poll_status>.label.success { - background-color: #F24C7C; + display: flex; + flex-direction: column; } .label { - padding: 0.3rem 0.8rem; - font-size: 0.8rem; - font-weight: bold; - color: #ffffff !important; - white-space: nowrap; - background-color: #bfbfbf; - -webkit-border-radius: 3px; - -moz-border-radius: 3px; - border-radius: 50px; - text-shadow: none; - text-decoration: none; + font-size: .8rem; + padding: .3rem .8rem; + white-space: nowrap; + text-decoration: none; + color: #fff !important; + -moz-border-radius: 3px; + border-radius: 20px; + background-color: #bfbfbf; } -.notice { - background-color: #468EA4; +label > input[type="checkbox"], +label > input[type="radio"] { + position: relative; + top: .4rem; + right: .2rem; + margin: 0; + vertical-align: bottom; } .showSide { - background: url(./menu-logo.png) no-repeat center center / 100%; - display: none; - height: 26px; - width: 26px; + display: none; } .darkMask { - width: 100%; - height: 100%; - position: fixed; - background-color: rgba(0, 0, 0, 0.56); - content: ""; - z-index: 99; - display: none; -} - -/* fix status processes */ - -.node-status-processes>.main .table .tr .td:nth-child(3) { - white-space: normal; -} - -.node-status-iptables>.main div>.cbi-map>form { - margin: 2rem 2rem 0 0; -} - -.node-status-iptables>.main div>.cbi-map>form input { - padding: .8em; - border-radius: 20px; -} - -.node-status-processes .cbi-section { - overflow-x: scroll; -} - -/* fix status realtime traffic and wireless */ - -.node-status-realtime.lang_enTraffic .cbi-tabmenu, -.node-status-realtime.lang_enWireless .cbi-tabmenu { - background-color: #d4d4d4; -} - -.node-status-realtime.lang_enTraffic .cbi-tabmenu>li[class~="cbi-tab"], -.node-status-realtime.lang_enTraffic .cbi-tabmenu>li:hover, -.node-status-realtime.lang_enWireless .cbi-tabmenu>li[class~="cbi-tab"], -.node-status-realtime.lang_enWireless .cbi-tabmenu>li:hover { - background-color: #F1F1F1; -} - -.node-status-realtime.lang_enTraffic #bwsvg, -.node-status-realtime.lang_enWireless #iwsvg, -.node-system-packages .cbi-map>.cbi-section, -.node-system-packages form .cbi-section { - border-top-right-radius: 0; - border-top-left-radius: 0; -} - -/* fix system system */ - -.node-system-system .cbi-tabmenu { - background-color: #d4d4d4; -} - -.node-system-system .cbi-tabmenu>li[class~="cbi-tab"] { - background-color: #fff; -} - -/* fix system reboot */ - -.node-system-reboot>.main>.main-right p, -.node-system-reboot>.main>.main-right h3 { - padding-left: 2rem; -} - -/* fix Services Network Shares*/ -.node-services-samba.lang_enNetwork #cbi-samba-sambashare .table-container { - overflow-x: scroll; -} - -.node-services-samba>.main .cbi-tabcontainer:nth-child(3) .cbi-value-title { - margin-bottom: 1rem; - width: auto; -} - -.node-services-samba>.main .cbi-tabcontainer:nth-child(3) .cbi-value-field { - display: list-item; -} - -.node-services-samba>.main .cbi-tabcontainer:nth-child(3) .cbi-value-description { - padding-top: 1rem; -} - -/* fix System Software*/ - -.node-system-packages #swfreespace { - background-color: #468ea4 !important; - border: none !important; - border-radius: 20px -} - -.node-system-packages #swfreespace>div { - background-color: #f24c7c !important; - border: none !important; - border-radius: 20px -} - -.node-system-packages>.main table tr td:nth-child(1) { - width: auto !important; -} - -.node-system-packages>.main table tr td:nth-last-child(1) { - white-space: normal; - font-size: small; - color: #404040; -} - -.node-system-packages>.main .cbi-tabmenu>li>a, -.tabs>li>a { - padding: 0.5rem 0.8rem; -} - -.node-system-packages>.main .cbi-value>pre { - background-color: #eee; - padding: 0.5rem; - overflow: auto; -} - -.node-system-packages .cbi-section .cbi-section-node-tabbed { - border: none; + position: fixed; + z-index: 99; + display: none; + width: 100%; + height: 100%; + content: ""; + background-color: rgba(0, 0, 0, .56); } -.node-system-packages form .cbi-section { - margin: 0; +/* diagnostics */ +#diag-rc-output > pre, +#command-rc-output > pre { + font-size: 1.2rem; + font-size-adjust: .35; + line-height: normal; + display: block; + width: 100%; + padding: 8.5px; + white-space: pre; + color: #eee; + background-color: #101010; } -.cbi-tabmenu+.cbi-section { - margin-top: 0; +[data-page="admin-network-diagnostics"] .table { + box-shadow: none; } -.node-status-iptables .cbi-tabmenu, -.node-system-flashops .cbi-tabmenu { - border: none; +input[name="ping"], +input[name="traceroute"], +input[name="nslookup"] { + width: 80%; } -.node-system-flashops form.inline+form.inline { - margin-left: 0; +/* fix Main Login 登录界é¢*/ +body.login { + background: #fff url(./loginBG.png) no-repeat center center; + height: 100%; } -.lang_zh-cnBackup .cbi-tabmenu { - margin-bottom: 1rem; +.login header { + margin-top: 10px; } -#cbi-firewall-redirect table *, -#cbi-network-switch_vlan table *, -#cbi-firewall-zone table * { - font-size: small; +.login > .main { + position: relative; + height: 100%; } -#cbi-firewall-redirect table input[type="text"], -#cbi-network-switch_vlan table input[type="text"], -#cbi-firewall-zone table input[type="text"] { - width: 5rem; +.login > .main .main-left { + display: none; } -#cbi-firewall-redirect table select, -#cbi-network-switch_vlan table select, -#cbi-firewall-zone table select { - min-width: 3.5rem; +.login > .main > .main-right { + width: 100%; + text-align: center; + background-color: transparent; } -#cbi-network-switch_vlan .th, -#cbi-network-switch_vlan .td { - flex-basis: 12%; +.login .brand { + display: block; + color: #fff; + font-size: 24px; + text-decoration: none; } -/* fix Network Network*/ - -.node-network-network .cbi-rowstyle-2 .ifacebox-body { - background-color: #fff; +.login > .main .cbi-value-title { + display: none; } -.lang_zh-cnInterfaces .container .cbi-map .cbi-tabmenu+div { - overflow: inherit; +.login > .main #maincontent { + margin-top: 5rem; + display: inline-block; + background-color: transparent; + width: 39%; + color: #fff; + max-width: 493px; } -/* fix Network Wireless*/ - -.node-network-wireless .cbi-section-node { - margin-bottom: 1rem; +.login > .main .container { + display: block; + margin-top: 2rem !important; } -/* applyreboot fix */ - -#maincontainer { - text-align: center; +.login .alert, +.login .main-right .container .alert-message { + margin-bottom: 1em; + padding: 1rem; + background-color: #4a5368 !important; + border: 1px solid #3e4a62; + border-radius: 20px; } -#maincontainer>#maincontent { - padding: 1rem; - margin: 0 auto; - border-radius: 10px; +.login .alert-message > h4 { + padding: 7px 0 0 32px; + font-size: 18px; + background: url(./no-pwd.png) no-repeat left 0 / 28px; display: inline-block; - max-width: 800px; - width: 40%; } -#applyreboot-container { - margin-bottom: 1rem; +.login .alert-message > p { + line-height: 25px; + font-size: 14px; } -#applyreboot-section { - text-align: left; - background: #fff; - padding: 1rem; - border-radius: 10px; +.login .alert-message > * { + margin: .5rem 0; } -#applyreboot-section>div { - margin: 1rem 0; - line-height: 1.5rem; +.login .main-right .container .alert-message .btn { + border: 1px solid #fff; + background-color: transparent; + color: #fff; + border-radius: 20px; + padding: .6rem; + height: auto; } -#applyreboot-container { - margin: 90px 2rem 2rem 2rem; +.login > .main form h2 { + font-size: 1.8rem; + margin: 17px 0; + padding-bottom: 0; + color: #fff; } -#applyreboot-section { - margin: 2rem; - line-height: 300%; +.login > .main form .cbi-map-descr { + margin-bottom: 17px; + display: block; } -/* Shared style */ - -header { - height: 0; - position: fixed; - top: 0; - left: 0; - right: 0; - z-index: 100; - overflow: hidden; +.login > .main form > .cbi-page-actions { + padding: 0; + display: block; } -header { - padding-right: 1rem; - background: #fff; - color: white; - border-bottom: 1px solid #dadada; +.login > .main form > .cbi-page-actions .cbi-button { + margin: 0; + width: 50% !important; + height: 42px; + float: left; } -header .fill, -header .container { - height: 100%; +.login > .main form > .cbi-page-actions .cbi-button-apply { + border-radius: 25px 0 0 25px; } -header .brand { - padding-left: .8rem; - color: #354057; - font-size: 24px; - text-decoration: none; - display: inline-block; - height: 100%; - line-height: 70px; - width: 10%; - text-align: center; +.login > .main form > .cbi-page-actions .cbi-button-reset { + border-radius: 0 25px 25px 0; } -header .btn-con { - line-height: 70px; +.login > .main .cbi-value { + margin: 17px 0; + padding: 0; + display: block; } -header .logout { - background-color: #354057; +.login > .main .cbi-value > .cbi-value-field { + display: block; + position: relative; } -header .logout a { - text-decoration: none; - color: #fff; +.login > .main .cbi-value-last > .cbi-value-field > div { + content: ''; + height: 24px; + width: 24px; + position: absolute; + top: 9px; + right: 12px; + background: no-repeat center center / cover; } -.main { - height: auto; - min-height: 100%; +.login > .main .cbi-value-last > .cbi-value-field .eye { + background-image: url(./op-eye.png); } -.main-right { - height: auto; +.login > .main .cbi-value-last > .cbi-value-field .op-eye { + background-image: url(./cl-eye.png); } -.main-left { - top: 10px; - bottom: 10px; - left: 10px; - width: 15%; - background-color: #636569; - position: fixed; - z-index: 1000; - border-radius: 20px; - min-width: 170px; +.login > .main .cbi-input-text { + width: 100%; + height: 42px; + background: #fff no-repeat 12px center; + border-radius: 20px; + padding-left: 42px; + font-size: 18px; + border: none; } -.main>.main-left .navbar-container { - margin-top: 0.5rem; - float: right; - width: calc(100% + 10px); - height: calc(100% - 110px); - overflow: hidden; +.login > .main .cbi-value .cbi-input-text { + background-image: url(./user.png); } -.main>.main-left .nav { - height: auto; +.login > .main .cbi-value-last .cbi-input-text { + background-image: url(./pwd.png); } -.main>.main-left .nav>li a { - color: #fff; - display: block; +.login .cbi-section { + padding: 0; + box-shadow: none; + background-color: transparent; } -.main>.main-left .nav>li { - padding: 0.5rem 1.7rem; - cursor: pointer; +.login .cbi-page-actions .cbi-button-apply, +.login .cbi-button-apply { + border: 1px solid #f24b7c; + background-color: #f24b7c; } -.main>.main-left .nav>.slide { - padding: 0 15px 0 0; - margin-bottom: 8px; - overflow: hidden; +.login .cbi-button[value="Reset"] { + color: #fff; + border: 1px solid #9a4569; + background-color: #9a4569; } -.main>.main-left .nav>.slide>ul { - display: none; - float: right; - width: calc(100% - 10px); +@media screen and (min-height: 585px) { + .login footer { + position: absolute; + bottom: 0; + width: 100%; + } } -.main>.main-left .nav>.slide>.menu { - display: block; - padding: 0.5rem 1.7rem; - text-decoration: none; - cursor: default; - font-size: 1.15rem; - width: 100%; - float: right; +/* logged å·²ç™»å½•ç•Œé¢ */ +/* header 头部 */ +.logged-in { + min-height: 100%; + background-color: #ebf1f6; } -.main>.main-left .nav>li>a.active, -.main>.main-left .nav>.slide>.menu:hover, -.main>.main-left .nav>.slide>.menu.active { - background: #485267; - float: right; - border-top-right-radius: 50px; - border-bottom-right-radius: 50px; +.logged-in header { + padding: 0 1rem; + height: 4rem; + width: 100%; + position: fixed; + top: 0; + background: #fff; + color: #fff; + z-index: 1000; + border-bottom: 1px solid #f5f5f5; + display: block; } -.main>.main-left .nav>.slide:hover { - background: none; +.logged-in .main { + overflow: hidden; } -.main>.main-left .nav>.slide>.slide-menu>li { - padding: 0.6rem 2rem; - margin: 8px 0; +.logged-in header .container { + height: 100%; } -.main>.main-left .nav>.slide>.slide-menu>.active { - background-color: #F24C7C; - border-top-right-radius: 50px; - border-bottom-right-radius: 50px; +.logged-in header .container .btn-con { + height: 4rem; + line-height: 4rem; } -.main>.main-left .nav>.slide>.slide-menu>li>a { - text-decoration: none; - white-space: nowrap; +.logged-in header .container .btn-con #xhr_poll_status { + display: inline-block; } -.main>.main-left .nav>.slide>.slide-menu>.active>a { - color: white; +.logged-in header .container .btn-con .logout { + background-color: #354057; } -.main>.main-left .nav>.slide>.slide-menu>li:hover { - background: #F24C7C; - border-top-right-radius: 50px; - border-bottom-right-radius: 50px; +.logged-in header .container .btn-con .logout a { + color: #fff; + text-decoration: none; } -.main>.main-left .nav>.slide>.slide-menu>.active:hover { - background-color: #F24C7C; - cursor: hand; +.logged-in .logoImg, +.login-info .logoImg { + display: none; } -/* The scroll bar of the navigation bar is compatible with each browser. */ - -/* Google */ - -.main>.main-left .navbar-container::-webkit-scrollbar { - width: 6px; - background: transparent; +.logged-in .main-right { + float: right; } -.main>.main-left .navbar-container::-webkit-scrollbar-button { - display: none; +.logged-in .main-right .container { + margin: 5rem 1rem 1rem; } -.main>.main-left .navbar-container::-webkit-scrollbar-thumb { - background-color: #ffffff61; - border-radius: 10px; +/* node main login */ +.login-info .main { + margin: 0 auto; + width: 80%; + max-width: 1170px; } -.main>.main-left .navbar-container::-webkit-scrollbar-thumb { - background-color: #839dd67a; - border-radius: 10px; +.login-info .main-left { + display: none; } -.main>.main-left .navbar-container:hover::-webkit-scrollbar-thumb { - background-color: #839dd67a; +.login-info .main-right { + width: 100%; } -/* IE */ - -.main>.main-left .navbar-container { - scrollbar-track-color: transparent; - scrollbar-face-color: #839dd67a; - scrollbar-arrow-color: transparent; - scrollbar-3dlight-color: transparent; - scrollbar-highlight-color: transparent; - scrollbar-shadow-color: transparent; - scrollbar-darkshadow-color: transparent; - scrollbar-base-color: transparent; +/* fix status overview */ +.node-status-overview > .main fieldset:nth-child(4) .td:nth-child(2) { + white-space: normal; } -.main>.main-left .navbar-container:hover { - scrollbar-face-color: #839dd67a; +/* fix status processes */ +.node-status-processes > .main .table .tr .td:nth-child(3) { + white-space: normal; } -footer { - text-align: right; - padding-right: 1rem; - color: #aaa; - font-size: 0.8rem; - text-shadow: 0px 0px 2px #BBB; - position: absolute; - bottom: 0; - right: 0; +.node-admin-status form { + margin: 2rem 2rem 0 0; } -.modal-overlay-active #modal_overlay { - position: fixed; - top: 0; - left: 0; - right: 0; - bottom: 0; - width: 100%; - background-color: #000000b8; - z-index: 2000; +/* fix system reboot */ +[data-page="admin-system-reboot"] p { + padding-left: 2rem; } -.modal-overlay-active #modal_overlay .modal { - width: 50%; - background-color: #fff; - margin: 150px auto; - border-radius: 20px; - color: #333; +/* fix network diagnostics */ +.lang_enDiagnostics .tr .td, +.lang_enLoad .tr .td, +.lang_enTraffic.node-admin-status .tr .td, +.lang_enWireless .tr .td, +.lang_enConnections .tr .td { + border: none; } -/* The style of the prompt message */ - -.alert-message { - padding: 13px 11%; - border-radius: 10px; - background-color: #FFF; +[data-page="admin-system-reboot"] p > span { + position: relative; + top: .1rem; + left: 1rem; } -.danger { - background-color: #FA8072; - color: black; +.lang_enInterfaces .ifacebox-body { + border-width: 1px; + border-style: solid; } -.success { - background-color: #90EE90; - color: black; +/* samba */ +#cbi-samba .cbi-value-last .cbi-value-field { + display: block; } -.error { - color: red; +#cbi-samba .cbi-value-last .cbi-value-title { + width: auto; + padding-bottom: .6rem; } -.alert-message>h4 { - padding: 7px 0 7px 36px; - margin: 0; - font-weight: normal; - font-size: 18px; - background: url(./no-pwd.png) no-repeat left 43%/ 28px; - display: inline-block; +/* software */ +.controls > * > .btn:not([aria-label$="page"]) { + flex-grow: initial !important; + margin-top: .1rem; } -.alert-message>p { - font-size: 14px; - line-height: 1.5rem; +.controls > #pager > .btn[aria-label$="page"] { + font-size: 1.4rem; } -.alert-message a { - padding: 4px 0; - margin-top: 12px; - width: 100%; - background-color: transparent; - color: #fff; - font-size: 16px; - border: 1px solid #fff; - border-radius: 50px; +.controls > * > label { + margin-bottom: .2rem; } -/* All styles of the login interface */ -.node-main-login { - height: auto; - min-height: 100%; - background: #fff url(./loginBG.png) no-repeat center center / cover; +[data-page="admin-system-opkg"] div.btn { + line-height: 3; + display: inline; + padding: .3rem .6rem; } -.node-main-login header { - display: none; +[data-page^="admin-system-admin"]:not(.login) .cbi-map:not(#cbi-dropbear), +[data-page="admin-system-opkg"] #maincontent > .container { + margin-top: 2rem; + padding-top: .1rem; } -.node-main-login .main { - height: auto; +[data-page="admin-system-opkg"] #maincontent > .container { + margin: 2rem; + margin-bottom: 1rem; } -.node-main-login>.main>.main-left { - display: none; +.td.version, +.td.size { + white-space: normal !important; + word-break: break-word; } -.node-main-login>.main>.main-right { - width: 100%; - height: auto; - min-height: 100%; +.cbi-tabmenu + .cbi-section { + margin-top: 0; + border: 1px solid #d4d4d4; + border-top: none; } -.node-main-login>.main #maincontent { - position: absolute; - min-width: 492px; - width: 100%; - top: 47%; - left: 50%; - transform: translateX(-50%) translateY(-50%); - height: auto; - text-align: center; -} - -.node-main-login>.main .container { - padding: 0; - width: 30%; - max-width: 492px; - display: inline-block; -} - -.node-main-login>.main .logoImg a { - margin: 0 0 18px 0; - display: block; - font-size: 30px; - color: #fff; - text-decoration: none; -} - -.node-main-login>.main .logoImg img:first-child { - width: 72px; +/* wireless overview */ +#cbi-wireless > #wifi_assoclist_table > .tr { } -.node-main-login .warning { - background-color: #3E4A62; - color: #fff; +#cbi-wireless > #wifi_assoclist_table > .tr.placeholder > .td { + right: 33px; + bottom: 33px; + left: 33px; + border-top: thin solid #ddd !important; } -.node-main-login>.main form h2 { - margin: 17px 0; - padding: 0; - font-size: 24px; - color: #fff; - font-weight: normal; - border: 0; +#cbi-wireless > #wifi_assoclist_table > .tr.table-titles { + border-radius: 20px 20px 0 0; } -.node-main-login>.main form .cbi-map-descr { - margin: 0 0 12px; - padding: 0; - font-size: 12px; - color: #B1B6BB; +#cbi-wireless > #wifi_assoclist_table > .tr.placeholder, +#cbi-wireless > #wifi_assoclist_table > .tr.placeholder .td { + border-radius: 0 0 20px 20px; + overflow: hidden; } -.node-main-login>.main form .cbi-section { - margin: 0; - padding: 0; - background-color: transparent; - box-shadow: none; +#cbi-wireless > #wifi_assoclist_table > .tr.table-titles .th:first-child { + border-top-left-radius: 20px; } -.node-main-login>.main form .cbi-value { - display: block; +#cbi-wireless > #wifi_assoclist_table > .tr.table-titles .th:last-child { + border-top-right-radius: 20px; } -.node-main-login>.main form .cbi-value-title { - margin: 0; - padding: 0; - display: none; +#cbi-wireless > #wifi_assoclist_table > .tr.table-titles > .th { + border-bottom: thin solid #ddd; } -.node-main-login>.main form .cbi-value .cbi-value-field { - margin-bottom: 16px; - display: block; - width: 100%; - position: relative; +#wifi_assoclist_table > .tr > .td[data-title="RX Rate / TX Rate"] { + width: 23rem; } -.node-main-login>.main form .cbi-value-field input { - padding-left: 48px; - width: 100%; - border: 1px solid #556270; - height: 42px; - border-radius: 50px; - font-size: 20px; - color: #9c9fa1; +/* firewall */ +#iptables { + font-family: inherit; + font-weight: normal; + font-style: normal; + line-height: 1; + min-width: inherit; + margin: 0 0 2rem 0; + padding: 2rem; + border: 1px solid #d4d4d4; + border-radius: 0; + background-color: #fff; + border-top: none; } -.node-main-login form .cbi-value-field .iconpwd, -.node-main-login form .cbi-value-field .iconuser, -.node-main-login form .cbi-value-field .iconeye { - height: 24px; - width: 20px; - position: absolute; - top: 50%; - left: 16px; - transform: translateY(-50%); -} - -.node-main-login form .cbi-value-field .iconpwd { - background: transparent url(./pwd.png) no-repeat center center / 100%; +#cbi-firewall-redirect table *, +#cbi-network-switch_vlan table *, +#cbi-firewall-zone table * { + font-size: small; } -.node-main-login form .cbi-value-field .iconuser { - background: transparent url(./user.png) no-repeat center center / 100%; +#cbi-firewall-redirect table input[type="text"], +#cbi-network-switch_vlan table input[type="text"], +#cbi-firewall-zone table input[type="text"] { + width: 5rem; } -.node-main-login form .cbi-value-field .iconeye { - left: auto; - right: 16px; - background: transparent url(./op-eye.png) no-repeat center center / 100%; +#cbi-firewall-redirect table select, +#cbi-network-switch_vlan table select, +#cbi-firewall-zone table select { + min-width: 3.5rem; } -.node-main-login form .cbi-value-field .cleye { - background-image: url(./cl-eye.png); +#cbi-network-switch_vlan .th, +#cbi-network-switch_vlan .td { + flex-basis: 12%; } -.node-main-login form .cbi-value-field .opeye { - background-image: url(./op-eye.png); +#cbi-firewall-zone .table, +#cbi-network-switch_vlan .table { + display: table; } -.node-main-login form .cbi-page-actions { - padding: 0; - border: 0; - text-align: center; +#cbi-firewall-zone .td.cbi-section-actions { + width: 100%; } -.node-main-login form .cbi-page-actions input { - margin: 0 0 0 -4px; - padding: 9px 0; - border: 0; - display: inline-block; - border-radius: 0; - width: 50%; - font-size: 18px; +/* applyreboot fix */ +#applyreboot-container { + margin: 2rem; } -.node-main-login form .cbi-page-actions .cbi-button-apply { - background-color: #F24C7C; - border-top-left-radius: 50px; - border-bottom-left-radius: 50px; +#applyreboot-section { + line-height: 300%; + margin: 2rem; } -.node-main-login form .cbi-page-actions .cbi-button-reset { - background-color: #8a4568; - color: #fff; - border-top-right-radius: 50px; - border-bottom-right-radius: 50px; +/* openvpn bug fix */ +.OpenVPN a { + line-height: initial !important; } -.node-main-login input.cbi-input-text { - box-shadow: 0 0 0 1000px white inset; +/* custom commands */ +.commandbox { + width: 24% !important; + padding: .5rem 1rem; + border-bottom: thin solid #ccc; + background: #eee; } -/* Interface after login */ -.logged-in { - background-color: #EBF1F6; +.commandbox h3 { + line-height: normal !important; + overflow: hidden; + margin: 6px 0 !important; + white-space: nowrap; + text-overflow: ellipsis; } -.logged-in header { - height: 70px; +.commandbox div { + left: auto !important; } -.logged-in .main { - overflow: hidden; +.commandbox code { + position: absolute; + overflow-x: hidden; + overflow-y: auto; + max-width: 60%; + max-height: 55px; + margin-top: -3px; + margin-left: 4px; + padding: 2px 3px; + text-overflow: ellipsis; } -.logged-in .main-right { - padding: 0 1rem 3rem 0; - margin-top: 90px; - float: right; +.commandbox p:first-of-type { + margin-top: -6px; } -.logged-in .main .logoImg { - display: none; +.commandbox p:nth-of-type(2) { + margin-top: 2px; } -.logged-in .main .main-left .nav-container { - background-color: #354057; - border-radius: 20px; - position: absolute; - top: 10px; - left: 10px; - right: -10px; - bottom: 10px; +[data-page^="admin-system-commands"] .panel-title, +[data-page^="command-cfg"] .mobile-hide, +[data-page^="command-cfg"] header .container > #logo { + display: none; } -.logged-in .main .main-left .brand { - margin: 0 auto; - padding: 44px 0 23px; - width: 85%; - color: #fff; - display: block; - font-size: 18px; - text-align: center; - text-decoration: none; - border-bottom: 2px solid #ffffff42; - /* Single line text omitted */ - white-space: nowrap; - overflow: hidden; - text-overflow: ellipsis; - -webkit-text-overflow: ellipsis; - -o-text-overflow: ellipsis; -} - -.logged-in .alert-message { - padding: 20px 2rem; - border: none; - background-color: #fff; -} - -.logged-in .alert-message a { - padding: 8px 2rem; - width: auto; - border: none; - background-color: #468EA4; - color: #fff; +.PC-hide { + display: none; } @media screen and (max-width: 1600px) { - .main-left { - width: calc(0% + 13rem); - } - - .btn, - .cbi-button { - padding: 0.3rem 0.6rem; - font-size: 0.8rem; - } - - header>.container>.pull-right>* { - top: 0.35rem; - } - - .label { - padding: 0.2rem 0.6rem; - } - - .cbi-value-title { - width: 15rem; - padding-right: 0.6rem; - } - - .cbi-input-textarea { - font-size: small; - } + header .container > #logo { + margin: 0 2.5rem 0 .5rem; + } + + .cbi-dynlist > .item { + max-width: 21.9rem; + } + + .btn:not(button), + .cbi-button { + font-size: .8rem; + padding: .3rem .6rem; + } + + .label { + padding: .2rem .6rem; + } + + .cbi-value-title { + width: 15rem; + padding-right: .6rem; + } + + fieldset, + .cbi-section { + padding: 1rem; + } + + .cbi-input-textarea { + font-size: small; + } + + .node-admin-status > .main fieldset li > a { + padding: .3rem .6rem; + } + + #cbi-firewall-zone > .table { + display: block; + } +} + +@media screen and (max-width: 1400px) { + .logged-in .main-right { + width: calc(100% - 230px); + } + + .cbi-dynlist > .item { + max-width: 19.9rem; + } + + .cbi-tabmenu > li > a, + .tabs > li > a { + padding: .2rem .5rem; + } + + .panel-title { + font-size: 1.1rem; + padding-bottom: 1rem; + } + + table { + font-size: .7rem !important; + width: 100% !important; + } + + .table .cbi-input-text { + width: 100%; + } + + .main .main-left > .nav > li, + .main .main-left > .nav > li a, + .main .main-left > .nav > .slide > .menu { + font-size: .9rem; + } + + .main .main-left > .nav > .slide > .slide-menu > li > a { + font-size: .7rem; + } + + #modal_overlay { + top: 3.5rem; + } + + [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table) { + display: block; + } + + [data-page="admin-network-firewall-forwards"] .table:not(.cbi-section-table), + [data-page="admin-network-firewall-rules"] .table:not(.cbi-section-table), + [data-page="admin-network-hosts"] .table { + overflow-y: visible; + } + + .commandbox { + width: 32% !important; + } } -@media screen and (max-width: 1280px) { - .node-main-login>.main .container { - width: 50%; - } - - .cbi-tabmenu>li>a, - .tabs>li>a { - padding: 0.2rem 0.5rem; - } - - .panel-title { - font-size: 1.1rem; - padding-bottom: 1rem; - } +@media screen and (max-width: 992px) { + .login > .main #maincontent { + margin-top: 2rem; + width: 90%; + } + + .login-info .main { + width: 100%; + } + + .login > .main .container { + width: 100%; + } + + .logged-in header { + height: 3rem; + z-index: 2000; + } + + .showSide, + .logged-in header .container .btn-con { + height: 3rem; + line-height: 3rem; + } + + .logged-in .main-left { + display: none; + z-index: 1000; + position: fixed; + top: 3rem; + bottom: 0; + left: 0; + right: 0; + border-radius: 0; + background-color: rgba(0, 0, 0, .3); + height: calc(100% - 3rem); + } + + .main-left .nav-container { + top: 0; + left: 0; + width: 50%; + border-radius: 0; + bottom: 0; + height: 100%; + } + + .main-left .nav-container .navbar-container { + overflow-y: scroll; + } + + .logged-in .main-right { + width: 100%; + } + + body.login { + background: #354057; + } + + [data-page^="command-cfg"] header .container > .brand { + display: block; + margin-top: -1.75rem; + } + + .cbi-dynlist > .item { + max-width: 14.9rem; + } + + .showSide { + display: inline-block; + cursor: pointer; + width: 30px; + } + + .showSide::before { + content: ''; + display: inline-block; + height: 24px; + width: 30px; + background: url(./menu-logo.png) no-repeat center center / 100%; + vertical-align: middle; + } + + .login > .main .cbi-value-title { + text-align: left; + } + + .cbi-value-title { + width: 9rem; + padding-right: 1rem; + } + + #diag-rc-output > pre, + #command-rc-output > pre { + font-size: 1rem; + } + + .table { + display: block; + } + + #packages.table { + display: grid; + } + + .tr { + display: flex; + flex-direction: row; + flex-wrap: wrap; + } + + .Overview .table[width="100%"] > .tr { + flex-wrap: nowrap; + } + + .tr.placeholder { + border-bottom: thin solid #ddd; + } + + .tr.placeholder > .td, + #cbi-firewall .tr > .td, + #iptables .tr:nth-child(2) > .td, + #cbi-network .tr:nth-child(2) > .td, + .cbi-section #wifi_assoclist_table .tr > .td { + border-top: 0; + } + + .th, + .td { + display: inline-block; + align-self: flex-start; + flex: 2 2 25%; + text-overflow: ellipsis; + word-wrap: break-word; + } + + .td select, + .td input[type="text"] { + width: 100%; + word-wrap: normal; + } + + .td [data-dynlist] > input, + .td input.cbi-input-password { + width: calc(100% - 1.5rem); + } + + .td[data-type="button"], + .td[data-type="fvalue"] { + flex: 1 1 12.5%; + text-align: left; + } + + .th.cbi-value-field, + .td.cbi-value-field, + .th.cbi-section-table-cell, + .td.cbi-section-table-cell { + flex-basis: auto; + padding-top: 1rem; + } + + .cbi-section-table-row { + display: flex; + flex-direction: row; + flex-wrap: wrap; + justify-content: space-between; + } + + .td.cbi-value-field, + .cbi-section-table-cell { + display: inline-block; + flex: 10 10 auto; + flex-basis: 50%; + text-align: center; + } + + .td.cbi-section-actions { + vertical-align: bottom; + } + + .tr.table-titles, + .tr.cbi-section-table-titles, + .tr.cbi-section-table-descr { + display: none; + } + + .tr[data-title]::before, + .tr.cbi-section-table-titles.named::before { + font-size: .9rem; + display: block; + flex: 1 1 100%; + border-bottom: thin solid rgba(0, 0, 0, .26); + background: #90c0e0; + } + + .td[data-title], + [data-page^="admin-status-realtime"] .td[id] { + text-align: left; + } + + .td[data-title]::before { + display: block; + } + + .cbi-button + .cbi-button { + margin-left: 0; + } + + .td.cbi-section-actions > * > *, + .td.cbi-section-actions > * > form > * { + margin: 2.1px 3px; + } + + .Firewall form { + font-family: inherit; + font-weight: normal; + font-style: normal; + line-height: normal; + position: static !important; + min-width: inherit; + margin: 0 0 2rem 0; + padding: 2rem; + border: 0; + border-radius: 0; + background-color: #fff; + } + + .Firewall form input { + width: 100% !important; + margin: 0; + margin-top: 1rem; + } + + .Firewall .center, + .Firewall .center::before { + text-align: left !important; + } + + .commandbox { + width: 100% !important; + } + + /* The scroll bar of the navigation bar is compatible with each browser. */ + /* Google */ + .main-left .navbar-container::-webkit-scrollbar { + width: 6px; + background: transparent; + } + + .main-left .navbar-container::-webkit-scrollbar-button { + display: none; + } + + .main-left .navbar-container::-webkit-scrollbar-thumb { + background-color: #ffffff61; + border-radius: 10px; + } + + .main-left .navbar-container::-webkit-scrollbar-thumb { + background-color: #839dd67a; + border-radius: 10px; + } + + .main-left .navbar-container:hover::-webkit-scrollbar-thumb { + background-color: #839dd67a; + } + + /* IE */ + .main-left .navbar-container { + scrollbar-track-color: transparent; + scrollbar-face-color: #839dd67a; + scrollbar-arrow-color: transparent; + scrollbar-3dlight-color: transparent; + scrollbar-highlight-color: transparent; + scrollbar-shadow-color: transparent; + scrollbar-darkshadow-color: transparent; + scrollbar-base-color: transparent; + } + + .main-left .navbar-container:hover { + scrollbar-face-color: #839dd67a; + } +} + +@media screen and (max-width: 600px) { + body { + font-size: .8rem; + } + + .cbi-progressbar::after { + font-size: .95em; + line-height: 1.5; + } + + fieldset, + .cbi-section { + margin: 1rem 0 0 0; + padding: 1rem; + } + + .tabs { + margin: 0 -1rem; + } + + .main-left .nav-container { + width: 70%; + } + + .main .main-left > .nav > .slide > .menu { + font-size: 1.2rem; + } + + .main .main-left > .nav > .slide > .slide-menu > li > a { + font-size: 1rem; + } + + .cbi-value-title { + display: block; + width: 100%; + min-width: 0 !important; + margin-top: 1rem; + margin-bottom: .5rem; + text-align: left; + } + + .cbi-value-field, + .cbi-value-description { + width: 100%; + } + + .cbi-value > .cbi-value-field { + display: inline-block; + } + + .cbi-tabmenu > li, + .tabs > li { + padding: .6rem 0; + } + + .cbi-tabmenu > li > a, + .tabs > li > a { + font-size: .9rem; + padding: .2rem .3rem; + } + + .cbi-page-actions > div > input { + display: none; + } + + .cbi-page-actions > .cbi-button { + margin-top: .2rem; + } + + .login > .main .cbi-value { + padding: 0; + } + + .login > .main form > div:nth-last-child(1) { + margin-top: 2rem; + } + + .login > .main .cbi-value-title { + font-size: 1.2rem; + width: 100% !important; + } + + .login > .main fieldset { + margin: 0; + padding: .5rem; + } + + .commandbox p:first-of-type { + margin-top: -8px; + } + + #diag-rc-output > pre, + #command-rc-output > pre { + font-size: .8rem; + } + + h2 { + font-size: 2rem; + } + + .tabs > li > a { + font-size: .9rem; + } + + select, + input { + font-size: .9rem; + } + + code { + font-size: .8rem; + } + + .panel-title { + font-size: 1.4rem; + padding-bottom: 1rem; + } + + .node-system-packages > .main .cbi-value.cbi-value-last > div { + width: 100% !important; + } + + .node-system-packages > .main .cbi-value .cbi-value-field input { + width: 100%; + } + + .th, + .td { + flex-basis: 50%; + } + + .td.cbi-value-field { + flex-basis: 100%; + } + + .td.cbi-value-field[data-type="button"], + .td.cbi-value-field[data-type="fvalue"] { + flex-basis: 25%; + text-align: left; + } + + .tr[data-title]::before, + .tr.cbi-section-table-titles.named::before { + font-size: 1rem; + } + + td > .ifacebadge, + .td > .ifacebadge { + font-size: .62rem; + } + + #cbi-wireless .td { + overflow: hidden; + } + + .hide-sm, + .hide-xs:not([data-title="MAC-Address"]) { + display: none; + } + + .mobile-hide { + display: none; + } +} - table { - font-size: 0.7rem !important; - width: 100% !important; - } +@media screen and (min-width: 1152px) { + .cbi-value input[type="password"], + .cbi-value input[type="text"] { + min-width: 20rem; + } + + .cbi-value-field .cbi-input-select { + width: 20rem; + } + + .cbi-value-field .cbi-dropdown { + min-width: 20rem; + } + + .cbi-section-node .tr { + overflow: hidden; + } +} + +@media screen and (min-width: 1366px) { + .cbi-value input[type="password"], + .cbi-value input[type="text"] { + min-width: 22rem; + } - .main>.main-left .nav>li, - .main>.main-left .nav>li a, - .main>.main-left .nav>.slide>.menu { - font-size: 0.9rem; - } + .cbi-value-field .cbi-input-select { + width: 22rem; + } - .main>.main-left .nav>.slide>.slide-menu>li>a { - font-size: 0.7rem; - } -} - -@media screen and (max-width: 992px) { - .logged-in header { - padding: 0 .8rem; - height: 45px; - } - - header .brand { - display: none; - } - - header .btn-con { - line-height: 45px; - } - - .main-left { - width: auto; - height: auto; - position: fixed; - z-index: 100; - right: 100%; - left: 0; - top: 0; - bottom: 0; - background: #0000007d; - border-radius: 0; - min-width: 0; - overflow: hidden; - } - - .main>.main-left .navbar-container { - overflow-y: scroll; - overflow-x: hidden; - } - - .main>.main-left .nav>.slide>.slide-menu>li { - width: 90%; - } - - header .container { - line-height: 43px; - } - - .main-right { - width: 100%; - } - - .node-main-login>.main .container { - width: 60%; - } - - .showSide { - padding: 0.1rem; - display: inline-block; - vertical-align: middle; - } - - .cbi-value-title { - width: 9rem; - padding-right: 1rem; - } - - #diag-rc-output>pre { - font-size: 1rem; - } - - .tr { - display: flex; - flex-direction: row; - flex-wrap: wrap; - } - - .th, - .td { - flex: 2 2 25%; - align-self: flex-start; - text-overflow: ellipsis; - word-wrap: break-word; - display: inline-block; - } - - .td select, - .td input[type="text"] { - word-wrap: normal; - width: 100%; - } - - .td [data-dynlist]>input, - .td input.cbi-input-password { - width: calc(100% - 1.5rem); - } - - .td[data-type="button"], - .td[data-type="fvalue"] { - flex: 1 1 12.5%; - text-align: left; - } - - .th.cbi-value-field, - .td.cbi-value-field, - .th.cbi-section-table-cell, - .td.cbi-section-table-cell { - flex-basis: auto; - } - - .cbi-section-table-row { - display: flex; - flex-wrap: wrap; - flex-direction: row; - justify-content: space-between; - } - - .td.cbi-value-field, - .cbi-section-table-cell { - text-align: center; - display: inline-block; - flex: 10 10 auto; - } - - .td.cbi-section-actions { - text-align: right; - align-self: flex-end; - vertical-align: bottom; - } - - .tr.table-titles, - .tr.cbi-section-table-titles, - .tr.cbi-section-table-descr { - display: none; - } - - .tr[data-title]::before, - .tr.cbi-section-table-titles.named::before { - display: block; - flex: 1 1 100%; - background: #eef; - font-size: .9rem; - border-bottom: 1px solid rgba(0, 0, 0, .26); - } - - .td[data-title] { - text-align: left; - font-size: 12px; - } - - .td[data-title]::before { - display: block; - } - - .hide-sm, - .hide-xs { - display: none; - } - - /* All styles of the login interface */ - .node-main-login .showSide { - display: none !important; - } - - .logged-in .main { - padding-bottom: .8rem; - } - - .logged-in .main .main-left .nav-container { - background-color: #354057; - border-radius: 0; - position: absolute; - top: 0; - left: 0; - right: 20%; - bottom: 0; - } - - .logged-in .main-right { - padding: 0 .8rem; - margin-top: calc(45px + .8rem); - width: 100%; - max-width: unset; - float: unset; - } - - .logged-in .alert-message { - padding: 8px .8rem; - } - - .cbi-section { - margin: .8rem 0 0 0; - padding: .8rem; - } - - small { - font-size: 10px; - line-height: 0; - } - - .cbi-section>h3:first-child, - .panel-title { - font-size: 1rem; - } - - .network-status-table .ifacebox-body>span { - font-size: 12px; - } - - .cbi-section .ifacebox-body .ifacebadge>span { - font-size: 12px; - } - - .table .tr.cbi-rowstyle-1:nth-child(n), - .table .tr:nth-child(n) { - font-size: 12px; - } - - .node-network-firewall .table .tr.cbi-rowstyle-1:nth-child(n), - .node-network-firewall .table .tr:nth-child(n) { - border-radius: 20px; - overflow: hidden; - } - - h2 { - margin: 1rem 0 0 0; - font-size: 1.4rem; - padding-bottom: 0; - border-bottom: none; - } - - h4 { - font-size: 1rem; - } - - .cbi-section-node-tabbed { - padding: 0 .5rem; - } - - .cbi-button, - .cbi-button-action.important { - margin-right: .3rem; - } - - select { - border-bottom: 1px solid rgba(0, 0, 0, .26); - } - - .node-status-processes .table .tr.cbi-rowstyle-1:nth-child(n), - .node-status-processes .table .tr:nth-child(n) { - border-radius: 20px; - } -} - -@media screen and (max-width: 768px) { - .node-main-login { - background: none; - } - - .node-main-login>.main .logoImg a { - font-size: 30px; - margin: 12px 0 22px 0; - color: #354057; - } - - .node-main-login>.main #maincontent { - padding-top: 0; - padding-bottom: 1rem; - min-width: 100%; - top: 0; - transform: translateY(0) translateX(-50%); - } - - .alert-message { - padding: 8px 15%; - } - - .alert-message>h4 { - font-size: 14px; - } - - .alert-message>p, - .alert-message a { - font-size: 12px; - } - - .a lert-message>h4 { - padding: 8px 0 8px 36px; - } - - .alert-message a { - padding: 8px 0; - margin-top: 8px; - } - - .node-main-login .warning { - background-color: #F5F5F6; - color: #354057; - } - - .alert-message a { - color: #f24c7c; - background: #fff; - } - - .node-main-login>.main form h2 { - font-size: 16px; - margin: 20px 0 16px; - color: #354057; - } - - .node-main-login>.main form .cbi-value-field input { - padding-left: 34px; - height: 36px; - background-size: 16px; - font-size: 16px; - } - - .node-main-login>.main form .cbi-value-field { - margin-bottom: 20px; - } - - .node-main-login form .cbi-page-actions input { - padding: 6px 0; - font-size: 16px; - } - - .node-main-login form .cbi-value-field .iconpwd, - .node-main-login form .cbi-value-field .iconuser, - .node-main-login form .cbi-value-field .iconeye { - height: 20px; - width: 16px; - left: 12px; - } - - .node-main-login form .cbi-value-field .iconeye { - left: auto; - right: 12px; - } - - .mobile-hide { - display: none; - } - - .PC-hide { - display: inline-block; - } -} - -@media screen and (max-width: 480px) { - body { - font-size: 1rem; - } - - .cbi-value-title { - width: 100%; - min-width: 0rem !important; - display: block; - margin-top: 1rem; - margin-bottom: 0.5rem; - text-align: left; - } - - .cbi-value-field, - .cbi-value-description { - width: 100%; - } - - .cbi-value>.cbi-value-field { - display: inline-block; - } - - .cbi-tabmenu>li, - .tabs>li { - padding: 0.6rem 0rem; - } - - .cbi-tabmenu>li>a, - .tabs>li>a { - padding: 0.2rem 0.3rem; - font-size: 0.9rem; - } - - .cbi-page-actions>div>input { - display: none; - } - - .tabs>li>a { - font-size: 0.9rem; - } - - select, - input { - font-size: 10px; - } - - .panel-title { - font-size: 1.4rem; - padding-bottom: 1rem; - } - - .node-system-packages>.main .cbi-value.cbi-value-last>div { - width: 100% !important; - } - - .node-system-packages>.main .cbi-value .cbi-value-field input { - width: 100%; - } - - .node-status-iptables>.main div>.cbi-map>form { - position: static !important; - margin: 0 0 2rem 0; - padding: 2rem; - border: 0; - font-weight: normal; - font-style: normal; - line-height: 1; - font-family: inherit; - min-width: inherit; - background-color: #FFF; - border-radius: 20px; - -webkit-overflow-scrolling: touch; - } - - .node-status-iptables>.main div>.cbi-map>form input[type="submit"] { - width: 100% !important; - margin: 0; - } - - .node-status-iptables>.main div>.cbi-map>form input[type="submit"]+input[type="submit"] { - margin-top: 1rem; - } - - .node-main-login>.main .container { - min-width: 90%; - } - - .th, - .td { - flex-basis: 50%; - } - - .td.cbi-value-field { - flex-basis: 100%; - } - - .td.cbi-value-field[data-type="dvalue"] { - flex-basis: 50%; - } - - .td.cbi-value-field[data-type="button"], - .td.cbi-value-field[data-type="fvalue"] { - flex-basis: 25%; - text-align: left; - } - - .tr[data-title]::before, - .tr.cbi-section-table-titles.named::before { - font-size: 1rem; - } - - .hide-xs { - display: none; - } - - /* All styles of the login interface */ - .node-main-login>.main .cbi-value { - padding: 0; - } - - .alert-message { - padding: 8px 10%; - } -} - -@media screen and (min-width: 992px) { - .cbi-value-field .cbi-input-select { - width: 20rem; - } - - .cbi-value-field .cbi-dropdown { - min-width: 20rem; - } -} - -@media screen and (min-width: 1280px) { - .cbi-value-field .cbi-input-select { - width: 22rem; - } - - .cbi-value-field .cbi-dropdown { - min-width: 22rem; - } + .cbi-value-field .cbi-dropdown { + min-width: 22rem; + } } @media screen and (min-width: 1600px) { - .cbi-value-field .cbi-input-select { - width: 25rem; - } - - .cbi-value-field .cbi-dropdown { - min-width: 25rem; - } + .cbi-value input[type="password"], + .cbi-value input[type="text"] { + min-width: 25rem; + } + + .cbi-value-field .cbi-input-select { + width: 25rem; + } + + .cbi-value-field .cbi-dropdown { + min-width: 25rem; + } } diff --git a/themes/luci-theme-rosy/htdocs/luci-static/rosy/js/script.js b/themes/luci-theme-rosy/htdocs/luci-static/rosy/js/script.js index c1a3dcd000..e8424411db 100755 --- a/themes/luci-theme-rosy/htdocs/luci-static/rosy/js/script.js +++ b/themes/luci-theme-rosy/htdocs/luci-static/rosy/js/script.js @@ -16,8 +16,8 @@ * Licensed to the public under the Apache License 2.0 */ -(function ($) { - $(".main > .loading").fadeOut(); +(function (win, $) { + $(".loading").fadeOut(); /** * trim text, Remove spaces, wrap @@ -33,16 +33,17 @@ var mainNodeName = undefined; var nodeUrl = ""; - (function(node){ - if (node[0] == "admin"){ + (function (node) { + var luciLocation; + if (node[0] == "admin") { luciLocation = [node[1], node[2]]; - }else{ + } else { luciLocation = node; } - for(var i in luciLocation){ + for (var i in luciLocation) { nodeUrl += luciLocation[i]; - if (i != luciLocation.length - 1){ + if (i != luciLocation.length - 1) { nodeUrl += "/"; } } @@ -59,7 +60,7 @@ return true; } - $(".main > .main-left .nav > .slide > .menu").each(function () { + $(".main-left .nav > .slide > .menu").each(function () { var ulNode = $(this); ulNode.next().find("a").each(function () { var that = $(this); @@ -91,8 +92,7 @@ enterShow: false }); } - - $(".main > .main-left .nav > .slide > .menu").click(function () { + $(".main-left .nav > .slide > .menu").click(function () { var ul = $(this).next(".slide-menu"); var menu = $(this); if (!ul.is(":visible")) { @@ -108,33 +108,32 @@ if ($('.nav').length > 0 && $(window).width() > 992) { oScroll.setSize(200); } - setInterval(function(){ - if($('.nav').height() < $('.navbar-container').height()){ - $('.nav').css('transform', 'translate(0px, 0px)'); + setInterval(function () { + if ($('.nav').height() < $('.navbar-container').height()) { + $('.nav').css('transform', 'translate(0px, 0px)'); } }, 300); return false; }); - /** * hook menu click and add the hash */ - $(".main > .main-left .nav > .slide > .slide-menu > li > a").click(function () { + $(".main-left .nav > .slide > .slide-menu > li > a").click(function () { if (lastNode != undefined) lastNode.removeClass("active"); $(this).parent().addClass("active"); - $(".main > .loading").fadeIn("fast"); + $(".loading").fadeIn("fast"); return true; }); /** * fix menu click */ - $(".main > .main-left .nav > .slide > .slide-menu > li").click(function () { + $(".main-left .nav > .slide > .slide-menu > li").click(function () { if (lastNode != undefined) lastNode.removeClass("active"); $(this).addClass("active"); - $(".main > .loading").fadeIn("fast"); - window.location = $($(this).find("a")[0]).attr("href"); + $(".loading").fadeIn("fast"); + win.location = $($(this).find("a")[0]).attr("href"); return false; }); @@ -160,7 +159,7 @@ that.click(function () { var href = that.attr("href"); if (href.indexOf("#") == -1) { - $(".main > .loading").fadeIn("fast"); + $(".loading").fadeIn("fast"); return true; } }); @@ -171,54 +170,50 @@ * Sidebar expand */ var showSide = false; - $(".showSide").click(function () { - if (showSide) { - $(".main-left").stop(true).animate({ - right: '100%' - }, "fast"); - $(".main-right").css("overflow-y", "auto"); + if ($(win).height() == 992) { + $(".showSide").click(function () { + if (showSide) { + $(".darkMask").stop(true).fadeOut("fast"); + $(".main-left").stop(true).fadeOut("fast"); + $(".main-right").css("overflow-y", "visible"); + showSide = false; + } else { + $(".darkMask").stop(true).fadeIn("fast"); + $(".main-left").stop(true).animate({ + width: "100%" + }, "fast").fadeIn("fast"); + $(".main-right").css("overflow-y", "hidden"); + showSide = true; + } + }); + $(".main-left").click(function(e) { + e.preventDefault(); + $(".main-left").stop(true).fadeOut("fast"); showSide = false; - } else { - $(".main-left").stop(true).animate({ - right: '0' - }, "fast"); - $(".main-right").css("overflow-y", "hidden"); - showSide = true; - } - }); + }); + } - $(".logged-in .main-left").click(function () { + $(".darkMask").click(function () { if (showSide) { showSide = false; - - $(this).stop(true).fadeOut("fast"); + $(".darkMask").stop(true).fadeOut("fast"); $(".main-left").stop(true).animate({ - right: '100%' + width: "0" }, "fast"); - $(".main-right").css("overflow-y", "auto"); - } - }); - - $(".logged-in .main-left > *").click(function () { - event.stopPropagation(); - if ((navigator.userAgent.indexOf('MSIE') >= 0)&& (navigator.userAgent.indexOf('Opera') < 0)){ - event.cancelBubble = true; - }else{ - event.stopPropagation(); + $(".main-right").css("overflow-y", "visible"); } }); - $(window).resize(function () { - if ($(window).width() > 921) { + $(win).resize(function () { + if ($(win).width() > 921) { $(".main-left").css("width", ""); $(".darkMask").stop(true); $(".darkMask").css("display", "none"); showSide = false; } - if( $(window).width() > 992 ){ - $('.logged-in .main-right').width( $(window).width() - $('.logged-in .main-left').width() - 50 ); - } + + $('body.login').height($(win).height()); }); /** @@ -231,7 +226,7 @@ $(".cbi-section-table-titles, .cbi-section-table-descr, .cbi-section-descr").each(function () { var that = $(this); - if (that.text().trim() == ""){ + if (that.text().trim() == "") { that.css("display", "none"); } }); @@ -263,53 +258,20 @@ } } - $('<div class="iconpwd"></div>').appendTo($('.node-main-login form .cbi-value input[type="password"]').parent()[0]); - - $('<div class="iconuser"></div>').appendTo($('.node-main-login form .cbi-value input[type="text"]').parent()[0]); - - $('<div class="iconeye"></div>').appendTo($('.node-main-login form .cbi-value input[type="password"]').parent()[0]); - - var num = true; - $('.cbi-value-field .iconeye').click(function(){ - if(num){ - $('.node-main-login form .cbi-value-last input[type="password"]').prop('type', 'text'); - $('.node-main-login form .cbi-value-field .iconeye').removeClass('opeye').addClass('cleye'); - num = false; - }else { - $('.node-main-login form .cbi-value-last input[type="text"]').prop('type', 'password'); - $('.node-main-login form .cbi-value-field .iconeye').removeClass('cleye').addClass('opeye'); - num = true; - } - + $('.lang_enInterfaces .ifacebox-head').each(function () { + $(this).next().css('border-color', $(this).css('background-color')); }); - $('body.logged-in').css('min-height', $(window).height()); - - $(function(){ - if( $(window).width() > 992 ){ - $('.logged-in .main-right').outerWidth( $(window).width() - $('.logged-in .main-left').width() - 50 ); + $('<div class="eye"></div>').appendTo('.login > .main .cbi-value-last > .cbi-value-field'); + $('.login > .main .cbi-value-last > .cbi-value-field .eye').click(function () { + var className = $(this).attr('class'); + if (className.indexOf('op-eye') > (-1)) { + $('.login > .main .cbi-value-last > .cbi-value-field').children().prop('type', 'text'); + $(this).addClass('eye').removeClass('op-eye'); + } else { + $('.login > .main .cbi-value-last > .cbi-value-field').children().prop('type', 'password'); + $(this).addClass('op-eye').removeClass('eye'); } - - $('.cbi-section .table').each(function () { - var firTr = $(this).children('.tr').get(0); - var firTd = $(firTr).children('.td').get(0); - var th = $(firTr).children('.th').get(0); - - var laTr = $(this).children('.tr').get($(this).children('.tr').length - 1); - var laTd = $(laTr).children('.td').get(0); - var a = window.getComputedStyle(firTr, ':before').getPropertyValue('content'); - - if (th && a != 'none') { - $(th).css('border-top-left-radius', '0'); - } else if (firTd && a != 'none') { - $(firTd).css('border-top-left-radius', '0'); - } - if (laTd && a != 'none') { - $(laTd).css('border-bottom-left-radius', '0'); - } - }); }); - $('#iptables').prev().css('margin-top', '10px'); - -})(jQuery); +})(window, jQuery);
\ No newline at end of file diff --git a/themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm b/themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm index a6aafbed61..c10dea9dd5 100644 --- a/themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm +++ b/themes/luci-theme-rosy/luasrc/view/themes/rosy/header.htm @@ -1,4 +1,4 @@ -<%# +<%# Rosy is a theme for LuCI. It is based on luci-theme-bootstrap luci-theme-rosy Copyright 2018 Rosy Song <rosysong@rosinson.com> @@ -192,6 +192,26 @@ end end end + + local function auth_level() + local childs = disp.node_childs(cattree) + if #childs > 0 then + for i, r in ipairs(childs) do + local nnode = cattree.nodes[r] + local grandchildren = disp.node_childs(nnode) + + if #grandchildren > 0 then + -- If this value is returned, the current interface is the logged-in data output interface + return "auth" + else + -- If this value is returned, it indicates that the current interface is a data output interface that does not require login. + return "noauth" + end + end + end + -- If this value is returned, the current interface is the login interface + return "login" + end -%> <!DOCTYPE html> <html lang="<%=luci.i18n.context.lang%>"> @@ -234,33 +254,33 @@ <script src="<%=media%>/js/ScrollY.js"></script> </head> -<body class="lang_<%=luci.i18n.context.lang%> <%- if node then %><%= striptags( node.title ) %><%- end %> <% if luci.dispatcher.context.authsession then %>logged-in<% end %>"> +<body class="lang_<%=luci.i18n.context.lang%> <%- if node then %><%= striptags( node.title ) %><%- end %> <%- if auth_level() == "auth" then %> logged-in<%- end %> <%- if auth_level() == "noauth" then %> login-info<%- end %> <%- if auth_level() == "login" then %> login<%- end %>"> <header> - <div class="fill"> - <div class="container"> - <span class="showSide"></span> - <a class="brand" href="#"><%=boardinfo.hostname or "?"%></a> - <div class="btn-con pull-right"> - <% render_changes() %> - <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()"> - <span class="label success" id="xhr_poll_status_on"><span class="mobile-hide"> - <%:Auto Refresh%></span> - <%:on%></span> - <span class="label" id="xhr_poll_status_off" style="display:none"><span class="mobile-hide"> - <%:Auto Refresh%></span> - <%:off%></span> - </span> - <% render_logout() %> - </div> + <div class="container"> + <span class="showSide"></span> + <a class="brand PC-hide" href="#"><%=boardinfo.hostname or "?"%></a> + <div class="btn-con pull-right"> + <% render_changes() %> + <span id="xhr_poll_status" style="display:none" onclick="XHR.running() ? XHR.halt() : XHR.run()"> + <span class="label success" id="xhr_poll_status_on"><span class="mobile-hide"> + <%:Auto Refresh%></span> + <%:on%></span> + <span class="label" id="xhr_poll_status_off" style="display:none"><span class="mobile-hide"> + <%:Auto Refresh%></span> + <%:off%></span> + </span> + <% render_logout() %> </div> </div> </header> + <div style="" class="loading"> + <span> + <div class="loading-img"> + <img src="<%=media%>/loading.svg"> + </div>Loading... + </span> + </div> <div class="main"> - <div style="" class="loading"><span> - <div class="loading-img"> - <img src="<%=media%>/loading.svg"> - </div>Loading... - </span></div> <div class="main-left"> <div class="nav-container"> <a class="brand" href="#"> |