diff options
Diffstat (limited to 'applications')
115 files changed, 2113 insertions, 1110 deletions
diff --git a/applications/luci-app-adblock/luasrc/view/adblock/query.htm b/applications/luci-app-adblock/luasrc/view/adblock/query.htm index 2cf7e5baaf..88108c3f21 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/query.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/query.htm @@ -11,7 +11,7 @@ This is free software, licensed under the Apache License, Version 2.0 function update_status(data) { - var domain = data.value; + var domain = data.value || data.placeholder; var input = document.getElementById('query_input'); var output = document.getElementById('query_output'); @@ -48,7 +48,7 @@ This is free software, licensed under the Apache License, Version 2.0 <div class="cbi-section"> <div class="cbi-section-descr"><%:This form allows you to query active block lists for certain domains, e.g. for whitelisting.%></div> <div style="width:33%; float:left;"> - <input type="text" value="google.com" name="input" /> + <input type="text" placeholder="google.com" name="input" /> <input type="button" value="<%:Query%>" class="cbi-button cbi-button-apply" onclick="update_status(this.form.input)" /> </div> <br style="clear:both" /> diff --git a/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm index 3f4d642592..4f7cfbf8a1 100644 --- a/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm +++ b/applications/luci-app-adblock/luasrc/view/adblock/runtime.htm @@ -18,60 +18,50 @@ This is free software, licensed under the Apache License, Version 2.0 //<![CDATA[ function status_update(json) { - var view = document.getElementById("value_1"); - var btn1 = document.getElementById("btn1"); - var btn1_running = document.getElementById("btn1_running"); - var btn2 = document.getElementById("btn2"); - var btn2_running = document.getElementById("btn2_running"); - var input = json.data.adblock_status; + var btn1 = document.getElementById("btn1"); + var btn1_running = document.getElementById("btn1_running"); + var btn2 = document.getElementById("btn2"); + var btn2_running = document.getElementById("btn2_running"); + var input = json.data.adblock_status || "-"; - view.innerHTML = input || "-"; - if (input === "enabled") - { - btn1.value = "<%:Suspend%>"; - btn1.name = "do_suspend"; - btn2.value = "<%:Refresh%>"; - btn2.name = "do_refresh"; - btn1.disabled = false; - running(btn1_running, 0); - btn2.disabled = false; - running(btn2_running, 0); - } - else if (input === "paused") - { - btn1.value = "<%:Resume%>"; - btn1.name = "do_resume"; - btn2.value = "<%:Refresh%>"; - btn2.name = "do_refresh"; - btn1.disabled = false; - running(btn1_running, 0); - btn2.disabled = false; - running(btn2_running, 0); - } - else - { - btn1.value = "<%:Suspend%>"; - btn1.name = "do_suspend"; - btn2.value = "<%:Refresh%>"; - btn2.name = "do_refresh"; - btn1.disabled = true; - btn2.disabled = true; - } - view = document.getElementById("value_2"); - input = json.data.adblock_version; - view.innerHTML = input || "-"; - view = document.getElementById("value_3"); - input = json.data.fetch_utility; - view.innerHTML = input || "-"; - view = document.getElementById("value_4"); - input = json.data.dns_backend; - view.innerHTML = input || "-"; - view = document.getElementById("value_5"); - input = json.data.overall_domains; - view.innerHTML = input || "-"; - view = document.getElementById("value_6"); - input = json.data.last_rundate; - view.innerHTML = input || "-"; + document.getElementById("value_1").innerHTML = input; + if (input === "enabled") + { + btn1.value = "<%:Suspend%>"; + btn1.name = "do_suspend"; + btn2.value = "<%:Refresh%>"; + btn2.name = "do_refresh"; + btn1.disabled = false; + running(btn1_running, 0); + btn2.disabled = false; + running(btn2_running, 0); + } + else if (input === "paused") + { + btn1.value = "<%:Resume%>"; + btn1.name = "do_resume"; + btn2.value = "<%:Refresh%>"; + btn2.name = "do_refresh"; + btn1.disabled = false; + running(btn1_running, 0); + btn2.disabled = false; + running(btn2_running, 0); + } + else + { + btn1.value = "<%:Suspend%>"; + btn1.name = "do_suspend"; + btn2.value = "<%:Refresh%>"; + btn2.name = "do_refresh"; + btn1.disabled = true; + btn2.disabled = true; + } + + document.getElementById("value_2").innerHTML = json.data.adblock_version || "-"; + document.getElementById("value_3").innerHTML = json.data.fetch_utility || "-"; + document.getElementById("value_4").innerHTML = json.data.dns_backend || "-"; + document.getElementById("value_5").innerHTML = json.data.overall_domains || "-"; + document.getElementById("value_6").innerHTML = json.data.last_rundate || "-"; } function btn_action(action) @@ -116,32 +106,42 @@ This is free software, licensed under the Apache License, Version 2.0 } } + function reset_view() + { + document.getElementById("btn1").value = "<%:Suspend%>"; + document.getElementById("btn1").name = "do_suspend"; + document.getElementById("btn2").value = "<%:Refresh%>"; + document.getElementById("btn2").name = "do_refresh"; + document.getElementById("btn1").disabled = true; + document.getElementById("btn2").disabled = true; + document.getElementById("value_1").innerHTML = "-"; + document.getElementById("value_2").innerHTML = "-"; + document.getElementById("value_3").innerHTML = "-"; + document.getElementById("value_4").innerHTML = "-"; + document.getElementById("value_5").innerHTML = "-"; + document.getElementById("value_6").innerHTML = "-"; + } + XHR.get('<%=luci.dispatcher.build_url("admin", "services", "adblock", "status")%>', null, function(x, json_info) { - if (!x || !json_info) + if (!x || !json_info || !json_info.data) { - var btn1 = document.getElementById("btn1"); - var btn2 = document.getElementById("btn2"); - btn1.value = "<%:Suspend%>"; - btn1.name = "do_suspend"; - btn2.value = "<%:Refresh%>"; - btn2.name = "do_refresh"; - btn1.disabled = true; - btn2.disabled = true; + reset_view(); return; } - status_update(json_info) + status_update(json_info); }); XHR.poll(5, '<%=luci.dispatcher.build_url("admin", "services", "adblock", "status")%>', null, function(x, json_info) { - if (!x || !json_info) + if (!x || !json_info || !json_info.data) { + reset_view(); return; } - status_update(json_info) + status_update(json_info); }); //]]> </script> diff --git a/applications/luci-app-adblock/po/it/adblock.po b/applications/luci-app-adblock/po/it/adblock.po index 9eddb7d91b..14c64bcaea 100644 --- a/applications/luci-app-adblock/po/it/adblock.po +++ b/applications/luci-app-adblock/po/it/adblock.po @@ -14,9 +14,6 @@ msgstr "" msgid "'Jail' Blocklist Creation" msgstr "" -msgid "-------" -msgstr "" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -25,9 +22,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Registro Adblock" - msgid "Adblock Status" msgstr "Status Adblock" @@ -57,7 +51,7 @@ msgstr "" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" msgid "" @@ -146,11 +140,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -177,15 +166,12 @@ msgstr "Ultimo Avvio" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" -"Lista dei backend DNS supportati con la loro directory di default di esporto " -"della lista.<br />" msgid "List of supported and fully pre-configured download utilities." msgstr "" @@ -193,10 +179,10 @@ msgstr "" msgid "Loading" msgstr "Caricando" -msgid "Max. Download Queue" +msgid "Low Priority Service" msgstr "" -msgid "Name" +msgid "Max. Download Queue" msgstr "" msgid "No" @@ -237,12 +223,19 @@ msgstr "Interrogazione domini" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," +msgstr "" + +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." +msgstr "" + +msgid "Refresh" msgstr "" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "Refresh Blocklist Sources" msgstr "" -"Reindirizza tutte le richieste DNS dalla zona 'lan' al risolvitore locale." msgid "Resume" msgstr "Riprendi" @@ -258,12 +251,17 @@ msgstr "Salva" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" msgid "Startup Trigger" @@ -286,19 +284,19 @@ msgstr "Directory per la lista di blocco generata 'adb_list.overall'." msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" -"Questo form ti consente di modificare il contenuto della lista nera di " -"adblock (%s).<br />" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" -"Questo form ti consente di modificare il contenuto della lista bianca di " -"adblock (%s).<br />" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -315,13 +313,6 @@ msgstr "" "determinati domini, p.e. per metterli nella lista bianca." msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "" -"Questo form mostra l'output del registro, prefiltrato per messaggi relativi " -"solo ad adblock." - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -351,28 +342,60 @@ msgid "" "kidsafe configurations." msgstr "" -msgid "disabled" -msgstr "disabilitato" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" -msgid "enabled" -msgstr "abilitato" +#~ msgid "Adblock Logfile" +#~ msgstr "Registro Adblock" -msgid "error" -msgstr "errore" +#~ msgid "" +#~ "List of supported DNS backends with their default list export directory." +#~ "<br />" +#~ msgstr "" +#~ "Lista dei backend DNS supportati con la loro directory di default di " +#~ "esporto della lista.<br />" -msgid "n/a" -msgstr "n/d" +#~ msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +#~ msgstr "" +#~ "Reindirizza tutte le richieste DNS dalla zona 'lan' al risolvitore locale." -msgid "paused" -msgstr "in pausa" +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Questo form ti consente di modificare il contenuto della lista nera di " +#~ "adblock (%s).<br />" -msgid "running" -msgstr "" +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Questo form ti consente di modificare il contenuto della lista bianca di " +#~ "adblock (%s).<br />" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for adblock related " +#~ "messages only." +#~ msgstr "" +#~ "Questo form mostra l'output del registro, prefiltrato per messaggi " +#~ "relativi solo ad adblock." + +#~ msgid "disabled" +#~ msgstr "disabilitato" + +#~ msgid "enabled" +#~ msgstr "abilitato" + +#~ msgid "error" +#~ msgstr "errore" + +#~ msgid "n/a" +#~ msgstr "n/d" + +#~ msgid "paused" +#~ msgstr "in pausa" #~ msgid "Invalid domain specified!" #~ msgstr "Dominio invalido specificato!" diff --git a/applications/luci-app-adblock/po/ja/adblock.po b/applications/luci-app-adblock/po/ja/adblock.po index ff3234175a..888ecd945e 100644 --- a/applications/luci-app-adblock/po/ja/adblock.po +++ b/applications/luci-app-adblock/po/ja/adblock.po @@ -8,15 +8,12 @@ msgstr "" "Language-Team: \n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" -"X-Generator: Poedit 2.0.7\n" +"X-Generator: Poedit 2.1.1\n" "Language: ja\n" msgid "'Jail' Blocklist Creation" msgstr "'Jail' ブロックリストの作成" -msgid "-------" -msgstr "(利用不可)" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -27,9 +24,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Adblock ログファイル" - msgid "Adblock Status" msgstr "Adblock ステータス" @@ -43,7 +37,7 @@ msgid "Advanced" msgstr "詳細設定" msgid "Archive Categories" -msgstr "" +msgstr "アーカイブ カテゴリ" msgid "Backup Directory" msgstr "バックアップ先 ディレクトリ" @@ -55,14 +49,14 @@ msgid "Blocklist Sources" msgstr "ブロックリスト提供元" msgid "Blocklist not found!" -msgstr "" +msgstr "ブロックリストが見つかりません!" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" -"ホワイトリストに存在しない全ドメインへのアクセスをブロックするために、追加で " -"'Jail' リスト (/tmp/adb_list.jail) を作成します。<br />" +"ホワイトリストに列挙されたものを除く全てのドメインをブロックする、追加の " +"'Jail' リスト (/tmp/adb_list.jail) を作成します。" msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " @@ -156,13 +150,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "Adblock 処理の後に DNS キャッシュをクリアします。" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" -"SSLで保護されているブロックリストの取得には、適切なSSL ライブラリが必要です。" -"例: 'libustream-ssl' または 'built-in'" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -193,17 +180,16 @@ msgstr "最終実行" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" -"利用可能なネットワーク インターフェースの一覧です。通常、 'wan' インター" -"フェースによりスタートアップがトリガされます。<br />" +"利用可能なネットワーク インターフェースの一覧です。通常、スタートアップは " +"'wan' インターフェースによってトリガされます。" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" -"サポートされる DNS バックエンドと、それぞれのデフォルトのリスト出力先ディレク" -"トリのリストです<br />" +"サポートされる DNS バックエンドと、それぞれのデフォルトのリスト出力先の一覧で" +"す。" msgid "List of supported and fully pre-configured download utilities." msgstr "サポートされ、かつ設定済のダウンロード ユーティリティの一覧です。" @@ -211,12 +197,12 @@ msgstr "サポートされ、かつ設定済のダウンロード ユーティ msgid "Loading" msgstr "読込中" +msgid "Low Priority Service" +msgstr "低優先度サービス" + msgid "Max. Download Queue" msgstr "ダウンロード キューの上限" -msgid "Name" -msgstr "" - msgid "No" msgstr "いいえ" @@ -254,14 +240,23 @@ msgstr "ドメインの検索" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," msgstr "" -"メール通知を行うドメイン カウントの下限を設定します。全体カウントが指定された" -"値以下の場合、メールを受け取ります(規定値: 0)。<br />" +"メール通知を行うメール通知カウントの下限値を設定します。全体カウントが指定さ" +"れた値以下の場合、メールを受け取ります(規定値: 0)。" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." msgstr "" -"'lan' ゾーンからの全 DNS クエリを、ローカル リゾルバにリダイレクトします。" +"'lan' ゾーンからの全 DNS クエリをローカル リゾルバにリダイレクトします。これ" +"は、53, 853, 5353 の各ポートにおける UDP, TCP プロトコルに適用されます。" + +msgid "Refresh" +msgstr "リフレッシュ" + +msgid "Refresh Blocklist Sources" +msgstr "ブロックリスト提供元のリフレッシュ" msgid "Resume" msgstr "再開" @@ -277,16 +272,23 @@ msgstr "保存" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" +"処理エラーまたはドメイン カウントが 0 以下の場合、通知メールを送信します。" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" -"処理エラーまたはドメイン カウントが0以下の場合、メールを送信します。<br />" +"nice値(優先度)を '低優先度' に設定し、adblock バックグラウンド処理のシステ" +"ムリソース使用量を抑制します。" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" "ダウンロードの制御とリストの処理を同時並行的に行うダウンロード キューのサイズ" -"です(既定値: '4')。<br />" +"です(規定値: '4')。" msgid "Startup Trigger" msgstr "スタートアップ トリガ" @@ -312,19 +314,23 @@ msgstr "" "LuCI上でのオンライン編集を行うには、ファイルサイズが大きすぎます (≥ 100 " "KB)。" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "Adblock に関連するメッセージのみが抽出された、システムログ出力です。" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "この変更の反映には、手動でのサービスの停止 / 再起動が必要です。" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" "このフォームでは、Adblock ブラックリスト (%s) の内容を変更することができま" -"す。<br />" +"す。" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" "このフォームでは、Adblock ホワイトリスト (%s) の内容を変更することができま" -"す。<br />" +"す。" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -341,13 +347,6 @@ msgstr "" "す。例: ホワイトリスト内" msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "" -"このフォームには、システムログ内の Adblock に関連するメッセージのみが表示され" -"ます。" - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -379,32 +378,8 @@ msgstr "" "この制約の厳しいブロックリストを、ゲスト WiFi や子供の安全を守る設定などに手" "動で利用することができます。" -msgid "disabled" -msgstr "無効" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" "例: Adblock のアップデート毎にメールを受け取るには、150000 に設定します。" - -msgid "enabled" -msgstr "有効" - -msgid "error" -msgstr "エラー" - -msgid "n/a" -msgstr "利用不可" - -msgid "paused" -msgstr "一時停止" - -msgid "running" -msgstr "実行中" - -#~ msgid "Categories" -#~ msgstr "カテゴリー" - -#~ msgid "Invalid domain specified!" -#~ msgstr "無効なドメインが指定されています!" diff --git a/applications/luci-app-adblock/po/pt-br/adblock.po b/applications/luci-app-adblock/po/pt-br/adblock.po index 6e5c7497c7..2cd4dcfaca 100644 --- a/applications/luci-app-adblock/po/pt-br/adblock.po +++ b/applications/luci-app-adblock/po/pt-br/adblock.po @@ -15,9 +15,6 @@ msgstr "" msgid "'Jail' Blocklist Creation" msgstr "" -msgid "-------" -msgstr "" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -26,9 +23,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Arquivo de log do Adblock" - msgid "Adblock Status" msgstr "" @@ -60,7 +54,7 @@ msgstr "" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" msgid "" @@ -146,11 +140,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -177,12 +166,11 @@ msgstr "" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" msgid "List of supported and fully pre-configured download utilities." @@ -191,10 +179,10 @@ msgstr "" msgid "Loading" msgstr "Carregando" -msgid "Max. Download Queue" +msgid "Low Priority Service" msgstr "" -msgid "Name" +msgid "Max. Download Queue" msgstr "" msgid "No" @@ -232,10 +220,18 @@ msgstr "Consulta de domínios" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," +msgstr "" + +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." msgstr "" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "Refresh" +msgstr "" + +msgid "Refresh Blocklist Sources" msgstr "" msgid "Resume" @@ -252,12 +248,17 @@ msgstr "Salvar" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" msgid "Startup Trigger" @@ -280,19 +281,19 @@ msgstr "" msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" -"Esse formulário permite que você modifique o conteúdo das listas de bloqueio " -"do adblock (%s).<br />" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" -"Esse formulário permite que você modifique o conteúdo das listas de " -"permissão do adblock (%s).<br />" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -309,13 +310,6 @@ msgstr "" "certos domínios, e.x. para listas de permissão." msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "" -"Esse formulário mostra a saída do syslog, pré-filtrado para mensagens do " -"adblock apenas." - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -343,28 +337,37 @@ msgid "" "kidsafe configurations." msgstr "" -msgid "disabled" -msgstr "" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" -msgid "enabled" -msgstr "" +#~ msgid "Adblock Logfile" +#~ msgstr "Arquivo de log do Adblock" -msgid "error" -msgstr "" +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Esse formulário permite que você modifique o conteúdo das listas de " +#~ "bloqueio do adblock (%s).<br />" -msgid "n/a" -msgstr "n/d" +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Esse formulário permite que você modifique o conteúdo das listas de " +#~ "permissão do adblock (%s).<br />" -msgid "paused" -msgstr "" +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for adblock related " +#~ "messages only." +#~ msgstr "" +#~ "Esse formulário mostra a saída do syslog, pré-filtrado para mensagens do " +#~ "adblock apenas." -msgid "running" -msgstr "" +#~ msgid "n/a" +#~ msgstr "n/d" #~ msgid "Invalid domain specified!" #~ msgstr "Domínio especificado inválido!" diff --git a/applications/luci-app-adblock/po/ru/adblock.po b/applications/luci-app-adblock/po/ru/adblock.po index f4957994b6..166681463b 100644 --- a/applications/luci-app-adblock/po/ru/adblock.po +++ b/applications/luci-app-adblock/po/ru/adblock.po @@ -18,22 +18,16 @@ msgstr "" msgid "'Jail' Blocklist Creation" msgstr "Создание Черного<br />списка 'Jail'" -msgid "-------" -msgstr "-------" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" msgstr "" -"<b>Внимание:</b> Для предотвращения переполнения ОЗУ, на устройствах" -"с ОЗУ менее 64MB, выбирайте только необходимый минимум списков!" +"<b>Внимание:</b> Для предотвращения переполнения ОЗУ, на устройствахс ОЗУ " +"менее 64MB, выбирайте только необходимый минимум списков!" msgid "Adblock" msgstr "AdBlock" -msgid "Adblock Logfile" -msgstr "Системный журнал Adblock" - msgid "Adblock Status" msgstr "Состояние Adblock" @@ -63,11 +57,8 @@ msgstr "Список блокировок не найден!" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" -"Создать дополнительный Черный список 'Jail' (/tmp/adb_list.jail), чтобы " -"заблокировать доступ ко всем доменам, кроме тех что перечислены в файле " -"Белого списка.<br />" msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " @@ -90,8 +81,8 @@ msgid "" "Create compressed blocklist backups, they will be used in case of download " "errors or during startup in backup mode." msgstr "" -"Создание сжатых резервных копий списков блокировок, они будут " -"использоваться в случае ошибок загрузки или при запуске в ручном режиме." +"Создание сжатых резервных копий списков блокировок, они будут использоваться " +"в случае ошибок загрузки или при запуске в ручном режиме." msgid "DNS Backend (DNS Directory)" msgstr "DNS бэкенд (папка DNS)" @@ -140,8 +131,9 @@ msgid "" "Enable memory intense overall sort / duplicate removal on low memory devices " "(< 64 MB free RAM)" msgstr "" -"Включить полную сортировку / удаление дубликатов в памяти. Используйте на устройствах с " -"низким объемом памяти (< 64 MB свободной оперативной памяти)." +"Включить полную сортировку / удаление дубликатов в памяти. Используйте на " +"устройствах с низким объемом памяти (< 64 MB свободной оперативной " +"памяти)." msgid "Enable verbose debug logging in case of any processing error." msgstr "Включить подробное ведение журнала отладки в случае ошибок обработки." @@ -159,13 +151,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "Очистка DNS-кэша после обработки Adblock-ом." msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" -"Для SSL-защищенных источников списков блокировки, вам нужны подходящие SSL " -"библиотеки, например 'libustream-ssl' или 'built-in'." - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -176,8 +161,8 @@ msgid "" "For further performance improvements you can raise this value, e.g. '8' or " "'16' should be safe." msgstr "" -"Для дополнительного повышения производительности вы можете увеличить это значение, например " -"значения '8' или '16' должны быть безопасными." +"Для дополнительного повышения производительности вы можете увеличить это " +"значение, например значения '8' или '16' должны быть безопасными." msgid "Force Local DNS" msgstr "Локальный DNS" @@ -196,30 +181,27 @@ msgstr "Последний запуск" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" -"Список доступных сетевых интерфейсов. По умолчанию установлен 'wan' " -"интерфейс.<br />" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" -"Список поддерживаемых серверов DNS с их стандартными папками для экспорта списков.<br />" msgid "List of supported and fully pre-configured download utilities." msgstr "" -"Список поддерживаемых и полностью предварительно настроенных утилит для скачивания." +"Список поддерживаемых и полностью предварительно настроенных утилит для " +"скачивания." msgid "Loading" msgstr "Загрузка" +msgid "Low Priority Service" +msgstr "" + msgid "Max. Download Queue" msgstr "Максимальная очередь загрузки" -msgid "Name" -msgstr "" - msgid "No" msgstr "Нет" @@ -257,14 +239,19 @@ msgstr "Запрос доменов" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," +msgstr "" + +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." msgstr "" -"Увеличьте количество email уведомлений, чтобы получить сообщения, если " -"общее количество меньше или равно заданному пределу (по умолчанию 0),<br />" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "Refresh" +msgstr "" + +msgid "Refresh Blocklist Sources" msgstr "" -"Перенаправлять все DNS запросы с интерфейса 'lan' на обработку Adblock-ом." msgid "Resume" msgstr "Возобновить" @@ -280,17 +267,18 @@ msgstr "Сохранить" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" -"Отправлять email уведомления в случае ошибки обработки или если количество обработанных доменов равно" -" 0.<br />" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" -"Количество потоков для скачивания списков блокировок (по умолчанию " -"'4').<br />" msgid "Startup Trigger" msgstr "Триггер запуска" @@ -305,26 +293,30 @@ msgid "" "Target directory for adblock backups. Please use only non-volatile disks, e." "g. an external usb stick." msgstr "" -"Папка для бэкапов списков блокировок. Используйте такие " -"накопители, как usb флешка." +"Папка для бэкапов списков блокировок. Используйте такие накопители, как usb " +"флешка." msgid "Target directory for the generated blocklist 'adb_list.overall'." msgstr "Папка для созданного списка блокировки 'adb_list.overall'." msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." -msgstr "Этот файл слишком большой для редактирования в Web-интерфейсе LuCI (≥ 100 KB)." +msgstr "" +"Этот файл слишком большой для редактирования в Web-интерфейсе LuCI (≥ 100 " +"KB)." + +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" -"Данное поле позволяет изменять содержимое Черного списка Adblock (%s).<br />" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" -"Данное поле позволяет изменять содержимое Белого списка Adblock (%s).<br />" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -341,11 +333,6 @@ msgstr "" "Белого списка." msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "Страница системного журнала. Только сообщения связанные с Adblock." - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -377,27 +364,107 @@ msgstr "" "Вы можете вручную настраивать и использовать этот Черный список, например " "для гостевой wifi сети или режима родительского контроля." -msgid "disabled" -msgstr "отключено" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" -"например, чтобы получать email уведомления при каждом " -"обновлении Adblock-а установите значение 150000." - -msgid "enabled" -msgstr "включено" - -msgid "error" -msgstr "ошибка" - -msgid "n/a" -msgstr "нет данных" - -msgid "paused" -msgstr "приостановлено" - -msgid "running" -msgstr "работает" +"например, чтобы получать email уведомления при каждом обновлении Adblock-а " +"установите значение 150000." + +#~ msgid "-------" +#~ msgstr "-------" + +#~ msgid "Adblock Logfile" +#~ msgstr "Системный журнал Adblock" + +#~ msgid "" +#~ "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to " +#~ "all domains except those listed in the whitelist file.<br />" +#~ msgstr "" +#~ "Создать дополнительный Черный список 'Jail' (/tmp/adb_list.jail), чтобы " +#~ "заблокировать доступ ко всем доменам, кроме тех что перечислены в файле " +#~ "Белого списка.<br />" + +#~ msgid "" +#~ "For SSL protected blocklist sources you need a suitable SSL library, e.g. " +#~ "'libustream-ssl' or 'built-in'." +#~ msgstr "" +#~ "Для SSL-защищенных источников списков блокировки, вам нужны подходящие " +#~ "SSL библиотеки, например 'libustream-ssl' или 'built-in'." + +#~ msgid "" +#~ "List of available network interfaces. Usually the startup will be " +#~ "triggered by the 'wan' interface.<br />" +#~ msgstr "" +#~ "Список доступных сетевых интерфейсов. По умолчанию установлен 'wan' " +#~ "интерфейс.<br />" + +#~ msgid "" +#~ "List of supported DNS backends with their default list export directory." +#~ "<br />" +#~ msgstr "" +#~ "Список поддерживаемых серверов DNS с их стандартными папками для экспорта " +#~ "списков.<br />" + +#~ msgid "" +#~ "Raise the minimum email notification count, to get emails if the overall " +#~ "count is less or equal to the given limit (default 0),<br />" +#~ msgstr "" +#~ "Увеличьте количество email уведомлений, чтобы получить сообщения, если " +#~ "общее количество меньше или равно заданному пределу (по умолчанию 0),<br /" +#~ ">" + +#~ msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +#~ msgstr "" +#~ "Перенаправлять все DNS запросы с интерфейса 'lan' на обработку Adblock-ом." + +#~ msgid "" +#~ "Send notification emails in case of a processing error or if domain count " +#~ "is ≤ 0.<br />" +#~ msgstr "" +#~ "Отправлять email уведомления в случае ошибки обработки или если " +#~ "количество обработанных доменов равно 0.<br />" + +#~ msgid "" +#~ "Size of the download queue to handle downloads & list processing in " +#~ "parallel (default '4').<br />" +#~ msgstr "" +#~ "Количество потоков для скачивания списков блокировок (по умолчанию '4')." +#~ "<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Данное поле позволяет изменять содержимое Черного списка Adblock (%s)." +#~ "<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Данное поле позволяет изменять содержимое Белого списка Adblock (%s).<br /" +#~ ">" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for adblock related " +#~ "messages only." +#~ msgstr "Страница системного журнала. Только сообщения связанные с Adblock." + +#~ msgid "disabled" +#~ msgstr "отключено" + +#~ msgid "enabled" +#~ msgstr "включено" + +#~ msgid "error" +#~ msgstr "ошибка" + +#~ msgid "n/a" +#~ msgstr "нет данных" + +#~ msgid "paused" +#~ msgstr "приостановлено" + +#~ msgid "running" +#~ msgstr "работает" diff --git a/applications/luci-app-adblock/po/sv/adblock.po b/applications/luci-app-adblock/po/sv/adblock.po index 3fb7bbe2e0..5b101c3a96 100644 --- a/applications/luci-app-adblock/po/sv/adblock.po +++ b/applications/luci-app-adblock/po/sv/adblock.po @@ -4,9 +4,6 @@ msgstr "Content-Type: text/plain; charset=UTF-8\n" msgid "'Jail' Blocklist Creation" msgstr "" -msgid "-------" -msgstr "-------" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -15,9 +12,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Adblock's loggfil" - msgid "Adblock Status" msgstr "Status för Adblock" @@ -47,7 +41,7 @@ msgstr "" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" msgid "" @@ -136,11 +130,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -168,12 +157,11 @@ msgstr "Kördes senast" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" msgid "List of supported and fully pre-configured download utilities." @@ -182,10 +170,10 @@ msgstr "" msgid "Loading" msgstr "Laddar" -msgid "Max. Download Queue" +msgid "Low Priority Service" msgstr "" -msgid "Name" +msgid "Max. Download Queue" msgstr "" msgid "No" @@ -221,10 +209,18 @@ msgstr "Fråga efter domäner" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," msgstr "" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." +msgstr "" + +msgid "Refresh" +msgstr "" + +msgid "Refresh Blocklist Sources" msgstr "" msgid "Resume" @@ -241,12 +237,17 @@ msgstr "Spara" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" msgid "Startup Trigger" @@ -269,19 +270,19 @@ msgstr "" msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" -"Det här formuläret tillåter dig att förändra innehållet i adblock's " -"svartlista (%s).<br />" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" -"Det här formuläret tillåter dig att förändra innehållet i adblock's vitlista " -"(%s).<br />" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -296,11 +297,6 @@ msgid "" msgstr "" msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "" - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -328,28 +324,45 @@ msgid "" "kidsafe configurations." msgstr "" -msgid "disabled" -msgstr "inaktiverad" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" -msgid "enabled" -msgstr "aktiverad" +#~ msgid "-------" +#~ msgstr "-------" + +#~ msgid "Adblock Logfile" +#~ msgstr "Adblock's loggfil" -msgid "error" -msgstr "fel" +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Det här formuläret tillåter dig att förändra innehållet i adblock's " +#~ "svartlista (%s).<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "" +#~ "Det här formuläret tillåter dig att förändra innehållet i adblock's " +#~ "vitlista (%s).<br />" -msgid "n/a" -msgstr "n/a" +#~ msgid "disabled" +#~ msgstr "inaktiverad" -msgid "paused" -msgstr "pausad" +#~ msgid "enabled" +#~ msgstr "aktiverad" -msgid "running" -msgstr "" +#~ msgid "error" +#~ msgstr "fel" + +#~ msgid "n/a" +#~ msgstr "n/a" + +#~ msgid "paused" +#~ msgstr "pausad" #~ msgid "Invalid domain specified!" #~ msgstr "Ogiltig domän angiven!" diff --git a/applications/luci-app-adblock/po/templates/adblock.pot b/applications/luci-app-adblock/po/templates/adblock.pot index e4c2a71418..117ce1faff 100644 --- a/applications/luci-app-adblock/po/templates/adblock.pot +++ b/applications/luci-app-adblock/po/templates/adblock.pot @@ -4,9 +4,6 @@ msgstr "Content-Type: text/plain; charset=UTF-8" msgid "'Jail' Blocklist Creation" msgstr "" -msgid "-------" -msgstr "" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -15,9 +12,6 @@ msgstr "" msgid "Adblock" msgstr "" -msgid "Adblock Logfile" -msgstr "" - msgid "Adblock Status" msgstr "" @@ -47,7 +41,7 @@ msgstr "" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" msgid "" @@ -129,11 +123,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "" @@ -160,12 +149,11 @@ msgstr "" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" +"by the 'wan' interface." msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" +"List of supported DNS backends with their default list export directory." msgstr "" msgid "List of supported and fully pre-configured download utilities." @@ -174,10 +162,10 @@ msgstr "" msgid "Loading" msgstr "" -msgid "Max. Download Queue" +msgid "Low Priority Service" msgstr "" -msgid "Name" +msgid "Max. Download Queue" msgstr "" msgid "No" @@ -213,10 +201,18 @@ msgstr "" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," msgstr "" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." +msgstr "" + +msgid "Refresh" +msgstr "" + +msgid "Refresh Blocklist Sources" msgstr "" msgid "Resume" @@ -233,12 +229,17 @@ msgstr "" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" +"parallel (default '4')." msgstr "" msgid "Startup Trigger" @@ -261,14 +262,18 @@ msgstr "" msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" msgstr "" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" msgstr "" msgid "" @@ -282,11 +287,6 @@ msgid "" msgstr "" msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "" - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "" @@ -314,25 +314,7 @@ msgid "" "kidsafe configurations." msgstr "" -msgid "disabled" -msgstr "" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "" - -msgid "enabled" -msgstr "" - -msgid "error" -msgstr "" - -msgid "n/a" -msgstr "" - -msgid "paused" -msgstr "" - -msgid "running" -msgstr "" diff --git a/applications/luci-app-adblock/po/zh-cn/adblock.po b/applications/luci-app-adblock/po/zh-cn/adblock.po index 76718612e4..0b0d2d2fe4 100644 --- a/applications/luci-app-adblock/po/zh-cn/adblock.po +++ b/applications/luci-app-adblock/po/zh-cn/adblock.po @@ -18,9 +18,6 @@ msgstr "" msgid "'Jail' Blocklist Creation" msgstr "“Jail”拦截列表创建" -msgid "-------" -msgstr "-------" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -31,9 +28,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Adblock 日志文件" - msgid "Adblock Status" msgstr "Adblock 状态" @@ -63,10 +57,8 @@ msgstr "拦截列表未找到!" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" -"构建一个额外的“Jail”列表(/tmp/adb_list.jail),除白名单文件中列出的域名外," -"阻止访问其他所有的域名。<br />" msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " @@ -149,13 +141,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "在 adblock 进程启动后清空 DNS 缓存。" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" -"对受 SSL 保护的拦截列表源,您需要一个合适的 SSL 库,如“libustream-" -"ssl”或“built-in”。" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "进一步信息<a href=\"%s\" target=\"_blank\">请访问在线文档</a>" @@ -182,13 +167,12 @@ msgstr "最后运行" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" -msgstr "可用网络接口列表。通常启动将由“wan”接口触发。<br />" +"by the 'wan' interface." +msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" -msgstr "支持的 DNS 后端列表及其默认列表导出目录。<br />" +"List of supported DNS backends with their default list export directory." +msgstr "" msgid "List of supported and fully pre-configured download utilities." msgstr "支持和完全预配置的下载工具列表。" @@ -196,12 +180,12 @@ msgstr "支持和完全预配置的下载工具列表。" msgid "Loading" msgstr "加载中" +msgid "Low Priority Service" +msgstr "" + msgid "Max. Download Queue" msgstr "最大下载队列" -msgid "Name" -msgstr "名称" - msgid "No" msgstr "否" @@ -237,13 +221,19 @@ msgstr "查询域" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," +msgstr "" + +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." +msgstr "" + +msgid "Refresh" msgstr "" -"如果总数小于或等于给定限制(默认为 0),请提高最小电子邮件通知数,以获取电子" -"邮件。" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." -msgstr "将所有 DNS 查询从“lan”区域重定向到本地解析器。" +msgid "Refresh Blocklist Sources" +msgstr "" msgid "Resume" msgstr "恢复" @@ -259,13 +249,18 @@ msgstr "保存" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" -msgstr "如果发生错误或域计数 ≤ 0,发送通知电子邮件。<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." +msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" -msgstr "处理下载队列的大小及并行处理列表(默认“4”)。<br />" +"parallel (default '4')." +msgstr "" msgid "Startup Trigger" msgstr "启动触发器" @@ -287,15 +282,19 @@ msgstr "生成拦截列表“adb_list.overall”的目标目录。" msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "文件过大,无法使用 LuCI 的在线编辑(≥ 100 KB)。" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" -msgstr "此表单允许您修改 adblock 黑名单(%s)的内容。<br />" +msgstr "" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" -msgstr "此表单允许您修改 adblock 白名单(%s)的内容。<br />" +msgstr "" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -308,11 +307,6 @@ msgid "" msgstr "此表单允许您查询某些域的活动块列表,例如用于列出白名单。" msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "此表单显示系统日志输出,仅针对 adblock 相关的消息进行了预筛选。" - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "要覆盖默认路径,请使用下面额外部分中的“DNS 目录”选项。" @@ -341,28 +335,96 @@ msgid "" msgstr "" "您可以手动使用此限制性拦截列表,例如:为客人提供 wifi 或 kidsafe 配置。" -msgid "disabled" -msgstr "已禁用" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "例如:要接收每个 adblock 更新的电子邮件通知时将此值设置为 150000。" -msgid "enabled" -msgstr "已启用" +#~ msgid "-------" +#~ msgstr "-------" + +#~ msgid "Adblock Logfile" +#~ msgstr "Adblock 日志文件" + +#~ msgid "" +#~ "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to " +#~ "all domains except those listed in the whitelist file.<br />" +#~ msgstr "" +#~ "构建一个额外的“Jail”列表(/tmp/adb_list.jail),除白名单文件中列出的域名" +#~ "外,阻止访问其他所有的域名。<br />" + +#~ msgid "" +#~ "For SSL protected blocklist sources you need a suitable SSL library, e.g. " +#~ "'libustream-ssl' or 'built-in'." +#~ msgstr "" +#~ "对受 SSL 保护的拦截列表源,您需要一个合适的 SSL 库,如“libustream-" +#~ "ssl”或“built-in”。" + +#~ msgid "" +#~ "List of available network interfaces. Usually the startup will be " +#~ "triggered by the 'wan' interface.<br />" +#~ msgstr "可用网络接口列表。通常启动将由“wan”接口触发。<br />" + +#~ msgid "" +#~ "List of supported DNS backends with their default list export directory." +#~ "<br />" +#~ msgstr "支持的 DNS 后端列表及其默认列表导出目录。<br />" + +#~ msgid "Name" +#~ msgstr "名称" + +#~ msgid "" +#~ "Raise the minimum email notification count, to get emails if the overall " +#~ "count is less or equal to the given limit (default 0),<br />" +#~ msgstr "" +#~ "如果总数小于或等于给定限制(默认为 0),请提高最小电子邮件通知数,以获取电" +#~ "子邮件。" + +#~ msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +#~ msgstr "将所有 DNS 查询从“lan”区域重定向到本地解析器。" + +#~ msgid "" +#~ "Send notification emails in case of a processing error or if domain count " +#~ "is ≤ 0.<br />" +#~ msgstr "如果发生错误或域计数 ≤ 0,发送通知电子邮件。<br />" + +#~ msgid "" +#~ "Size of the download queue to handle downloads & list processing in " +#~ "parallel (default '4').<br />" +#~ msgstr "处理下载队列的大小及并行处理列表(默认“4”)。<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "此表单允许您修改 adblock 黑名单(%s)的内容。<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "此表单允许您修改 adblock 白名单(%s)的内容。<br />" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for adblock related " +#~ "messages only." +#~ msgstr "此表单显示系统日志输出,仅针对 adblock 相关的消息进行了预筛选。" + +#~ msgid "disabled" +#~ msgstr "已禁用" + +#~ msgid "enabled" +#~ msgstr "已启用" -msgid "error" -msgstr "错误" +#~ msgid "error" +#~ msgstr "错误" -msgid "n/a" -msgstr "不可用" +#~ msgid "n/a" +#~ msgstr "不可用" -msgid "paused" -msgstr "已暂停" +#~ msgid "paused" +#~ msgstr "已暂停" -msgid "running" -msgstr "运行中" +#~ msgid "running" +#~ msgstr "运行中" #~ msgid "Invalid domain specified!" #~ msgstr "无效域名!" diff --git a/applications/luci-app-adblock/po/zh-tw/adblock.po b/applications/luci-app-adblock/po/zh-tw/adblock.po index 8c2f91be14..f9830a5098 100644 --- a/applications/luci-app-adblock/po/zh-tw/adblock.po +++ b/applications/luci-app-adblock/po/zh-tw/adblock.po @@ -18,9 +18,6 @@ msgstr "" msgid "'Jail' Blocklist Creation" msgstr "“Jail”攔截列表建立" -msgid "-------" -msgstr "-------" - msgid "" "<b>Caution:</b> To prevent OOM exceptions on low memory devices with less " "than 64 MB free RAM, please only select a few of them!" @@ -31,9 +28,6 @@ msgstr "" msgid "Adblock" msgstr "Adblock" -msgid "Adblock Logfile" -msgstr "Adblock 日誌檔案" - msgid "Adblock Status" msgstr "Adblock 狀態" @@ -63,10 +57,8 @@ msgstr "攔截列表未找到!" msgid "" "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to all " -"domains except those listed in the whitelist file.<br />" +"domains except those listed in the whitelist file." msgstr "" -"構建一個額外的“Jail”列表(/tmp/adb_list.jail),除白名單檔案中列出的域名外," -"阻止訪問其他所有的域名。<br />" msgid "" "Choose 'none' to disable automatic startups, 'timed' to use a classic " @@ -150,13 +142,6 @@ msgid "Flush DNS Cache after adblock processing." msgstr "在 adblock 程序啟動後清空 DNS 快取。" msgid "" -"For SSL protected blocklist sources you need a suitable SSL library, e.g. " -"'libustream-ssl' or 'built-in'." -msgstr "" -"對受 SSL 保護的攔截列表源,您需要一個合適的 SSL 庫,如“libustream-" -"ssl”或“built-in”。" - -msgid "" "For further information <a href=\"%s\" target=\"_blank\">check the online " "documentation</a>" msgstr "進一步資訊<a href=\"%s\" target=\"_blank\">請訪問線上文檔</a>" @@ -183,13 +168,12 @@ msgstr "最後執行" msgid "" "List of available network interfaces. Usually the startup will be triggered " -"by the 'wan' interface.<br />" -msgstr "可用網路介面列表。通常啟動將由“wan”介面觸發。<br />" +"by the 'wan' interface." +msgstr "" msgid "" -"List of supported DNS backends with their default list export directory.<br /" -">" -msgstr "支援的 DNS 後端列表及其預設列表匯出目錄。<br />" +"List of supported DNS backends with their default list export directory." +msgstr "" msgid "List of supported and fully pre-configured download utilities." msgstr "支援和完全預配置的下載工具列表。" @@ -197,12 +181,12 @@ msgstr "支援和完全預配置的下載工具列表。" msgid "Loading" msgstr "載入中" +msgid "Low Priority Service" +msgstr "" + msgid "Max. Download Queue" msgstr "最大下載佇列" -msgid "Name" -msgstr "名稱" - msgid "No" msgstr "否" @@ -238,13 +222,19 @@ msgstr "查詢域" msgid "" "Raise the minimum email notification count, to get emails if the overall " -"count is less or equal to the given limit (default 0),<br />" +"count is less or equal to the given limit (default 0)," +msgstr "" + +msgid "" +"Redirect all DNS queries from 'lan' zone to the local resolver, apply to udp " +"and tcp protocol on ports 53, 853 and 5353." +msgstr "" + +msgid "Refresh" msgstr "" -"如果總數小於或等於給定限制(預設為 0),請提高最小電子郵件通知數,以獲取電子" -"郵件。" -msgid "Redirect all DNS queries from 'lan' zone to the local resolver." -msgstr "將所有 DNS 查詢從“lan”區域重定向到本地解析器。" +msgid "Refresh Blocklist Sources" +msgstr "" msgid "Resume" msgstr "恢復" @@ -260,13 +250,18 @@ msgstr "儲存" msgid "" "Send notification emails in case of a processing error or if domain count is " -"≤ 0.<br />" -msgstr "如果發生錯誤或域計數 ≤ 0,傳送通知電子郵件。<br />" +"≤ 0." +msgstr "" + +msgid "" +"Set the nice level to 'low priority' and the adblock background processing " +"will take less resources from the system." +msgstr "" msgid "" "Size of the download queue to handle downloads & list processing in " -"parallel (default '4').<br />" -msgstr "處理下載佇列的大小及並行處理列表(預設“4”)。<br />" +"parallel (default '4')." +msgstr "" msgid "Startup Trigger" msgstr "啟動觸發器" @@ -288,15 +283,19 @@ msgstr "生成攔截列表“adb_list.overall”的目標目錄。" msgid "The file size is too large for online editing in LuCI (≥ 100 KB)." msgstr "檔案過大,無法使用 LuCI 的線上編輯(≥ 100 KB)。" +msgid "The syslog output, pre-filtered for adblock related messages only." +msgstr "" + +msgid "This change requires a manual service stop/re-start to take effect." +msgstr "" + msgid "" "This form allows you to modify the content of the adblock blacklist (%s)." -"<br />" -msgstr "此表單允許您修改 adblock 黑名單(%s)的內容。<br />" +msgstr "" msgid "" "This form allows you to modify the content of the adblock whitelist (%s)." -"<br />" -msgstr "此表單允許您修改 adblock 白名單(%s)的內容。<br />" +msgstr "" msgid "" "This form allows you to modify the content of the main adblock configuration " @@ -309,11 +308,6 @@ msgid "" msgstr "此表單允許您查詢某些域的活動塊列表,例如用於列出白名單。" msgid "" -"This form shows the syslog output, pre-filtered for adblock related messages " -"only." -msgstr "此表單顯示系統日誌輸出,僅針對 adblock 相關的訊息進行了預篩選。" - -msgid "" "To overwrite the default path use the 'DNS Directory' option in the extra " "section below." msgstr "要覆蓋預設路徑,請使用下面額外部分中的“DNS 目錄”選項。" @@ -342,28 +336,96 @@ msgid "" msgstr "" "您可以手動使用此限制性攔截列表,例如:為客人提供 wifi 或 kidsafe 配置。" -msgid "disabled" -msgstr "已禁用" - msgid "" "e.g. to receive an email notification with every adblock update set this " "value to 150000." msgstr "例如:要接收每個 adblock 更新的電子郵件通知時將此值設定為 150000。" -msgid "enabled" -msgstr "已啟用" +#~ msgid "-------" +#~ msgstr "-------" + +#~ msgid "Adblock Logfile" +#~ msgstr "Adblock 日誌檔案" + +#~ msgid "" +#~ "Builds an additional 'Jail' list (/tmp/adb_list.jail) to block access to " +#~ "all domains except those listed in the whitelist file.<br />" +#~ msgstr "" +#~ "構建一個額外的“Jail”列表(/tmp/adb_list.jail),除白名單檔案中列出的域名" +#~ "外,阻止訪問其他所有的域名。<br />" + +#~ msgid "" +#~ "For SSL protected blocklist sources you need a suitable SSL library, e.g. " +#~ "'libustream-ssl' or 'built-in'." +#~ msgstr "" +#~ "對受 SSL 保護的攔截列表源,您需要一個合適的 SSL 庫,如“libustream-" +#~ "ssl”或“built-in”。" + +#~ msgid "" +#~ "List of available network interfaces. Usually the startup will be " +#~ "triggered by the 'wan' interface.<br />" +#~ msgstr "可用網路介面列表。通常啟動將由“wan”介面觸發。<br />" + +#~ msgid "" +#~ "List of supported DNS backends with their default list export directory." +#~ "<br />" +#~ msgstr "支援的 DNS 後端列表及其預設列表匯出目錄。<br />" + +#~ msgid "Name" +#~ msgstr "名稱" + +#~ msgid "" +#~ "Raise the minimum email notification count, to get emails if the overall " +#~ "count is less or equal to the given limit (default 0),<br />" +#~ msgstr "" +#~ "如果總數小於或等於給定限制(預設為 0),請提高最小電子郵件通知數,以獲取電" +#~ "子郵件。" + +#~ msgid "Redirect all DNS queries from 'lan' zone to the local resolver." +#~ msgstr "將所有 DNS 查詢從“lan”區域重定向到本地解析器。" + +#~ msgid "" +#~ "Send notification emails in case of a processing error or if domain count " +#~ "is ≤ 0.<br />" +#~ msgstr "如果發生錯誤或域計數 ≤ 0,傳送通知電子郵件。<br />" + +#~ msgid "" +#~ "Size of the download queue to handle downloads & list processing in " +#~ "parallel (default '4').<br />" +#~ msgstr "處理下載佇列的大小及並行處理列表(預設“4”)。<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock blacklist (%s)." +#~ "<br />" +#~ msgstr "此表單允許您修改 adblock 黑名單(%s)的內容。<br />" + +#~ msgid "" +#~ "This form allows you to modify the content of the adblock whitelist (%s)." +#~ "<br />" +#~ msgstr "此表單允許您修改 adblock 白名單(%s)的內容。<br />" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for adblock related " +#~ "messages only." +#~ msgstr "此表單顯示系統日誌輸出,僅針對 adblock 相關的訊息進行了預篩選。" + +#~ msgid "disabled" +#~ msgstr "已禁用" + +#~ msgid "enabled" +#~ msgstr "已啟用" -msgid "error" -msgstr "錯誤" +#~ msgid "error" +#~ msgstr "錯誤" -msgid "n/a" -msgstr "不可用" +#~ msgid "n/a" +#~ msgstr "不可用" -msgid "paused" -msgstr "已暫停" +#~ msgid "paused" +#~ msgstr "已暫停" -msgid "running" -msgstr "執行中" +#~ msgid "running" +#~ msgstr "執行中" #~ msgid "Invalid domain specified!" #~ msgstr "無效域名!" diff --git a/applications/luci-app-ddns/po/ru/ddns.po b/applications/luci-app-ddns/po/ru/ddns.po index 4731cc379f..415f7badb8 100644 --- a/applications/luci-app-ddns/po/ru/ddns.po +++ b/applications/luci-app-ddns/po/ru/ddns.po @@ -56,22 +56,22 @@ msgid "" "BusyBox's nslookup and Wget do not support to specify the IP version to use " "for communication with DDNS Provider!" msgstr "" -"Утилиты nslookup и wget из состава busybox не поддерживают указание IP-версии" -", используемой для связи с DDNS провайдером!" +"Утилиты nslookup и wget из состава busybox не поддерживают указание IP-" +"версии, используемой для связи с DDNS провайдером!" msgid "" "BusyBox's nslookup and hostip do not support to specify to use TCP instead " "of default UDP when requesting DNS server!" msgstr "" -"Утилиты nslookup и hostip из состава busybox не поддерживают указание использ" -"овать TCP вместо UDP по умолчанию при запросе DNS сервера!" +"Утилиты nslookup и hostip из состава busybox не поддерживают указание " +"использовать TCP вместо UDP по умолчанию при запросе DNS сервера!" msgid "" "BusyBox's nslookup in the current compiled version does not handle given DNS " "Servers correctly!" msgstr "" -"Благодаря текущей скомпилированной версии busybox, утилита nslookup не обраба" -"тывает данные DNS сервера правильно!" +"Благодаря текущей скомпилированной версии busybox, утилита nslookup не " +"обрабатывает данные DNS сервера правильно!" msgid "Casual users should not change this setting" msgstr "Обычный пользователь не должен изменять данную опцию" @@ -116,8 +116,8 @@ msgid "" ">You can start/stop each configuration here. It will run until next reboot." msgstr "" "В настоящее время, обновления DDNS не запускаются при загрузке или при " -"событиях интерфейса.<br />Вы можете запустить/остановить каждый " -"config здесь. Он будет работать до следующей перезагрузки." +"событиях интерфейса.<br />Вы можете запустить/остановить каждый config " +"здесь. Он будет работать до следующей перезагрузки." msgid "Custom update script to be used for updating your DDNS Provider." msgstr "" @@ -310,9 +310,9 @@ msgid "" "the instructions on OpenWrt's homepage to enable IPv6 support<br />or update " "your system to the latest OpenWrt Release" msgstr "" -"IPv6 не поддерживается вашей прошивкой.<br />Следуйте инструкциям на " -"главной странице OpenWrt, чтобы включить поддержку IPv6<br / >или обновить " -"прошивку до последнего выпуска OpenWrt с включенной поддержкой IPv6" +"IPv6 не поддерживается вашей прошивкой.<br />Следуйте инструкциям на главной " +"странице OpenWrt, чтобы включить поддержку IPv6<br / >или обновить прошивку " +"до последнего выпуска OpenWrt с включенной поддержкой IPv6" msgid "IPv6 not supported" msgstr "IPv6 не поддерживается" @@ -322,8 +322,7 @@ msgstr "IPv6-адрес" msgid "If both cURL and GNU Wget are installed, Wget is used by default." msgstr "" -"Если установлены и cURL и GNU wget, по умолчанию будет использоваться " -"wget." +"Если установлены и cURL и GNU wget, по умолчанию будет использоваться wget." msgid "" "If this service section is disabled it could not be started.<br />Neither " @@ -381,8 +380,7 @@ msgstr "" msgid "It is NOT recommended for casual users to change settings on this page." msgstr "" -"Настройки на данной странице не рекомендуется изменять обычным " -"пользователям." +"Настройки на данной странице не рекомендуется изменять обычным пользователям." msgid "Last Update" msgstr "Последнее обновление" @@ -414,8 +412,9 @@ msgstr "Не установлено" msgid "" "Neither GNU Wget with SSL nor cURL installed to select a network to use for " "communication." -msgstr "Не установлены пакеты GNU wget c SSL или cURL для возможности выбора " -"сети для связи." +msgstr "" +"Не установлены пакеты GNU wget c SSL или cURL для возможности выбора сети " +"для связи." msgid "" "Neither GNU Wget with SSL nor cURL installed to support secure updates via " @@ -459,8 +458,8 @@ msgstr "Необязательно: использовать только чис msgid "OPTIONAL: Force the use of TCP instead of default UDP on DNS requests." msgstr "" -"Необязательно: использовать протокол TCP вместо UDP по умолчанию " -"для DNS-запросов." +"Необязательно: использовать протокол TCP вместо UDP по умолчанию для DNS-" +"запросов." msgid "OPTIONAL: Network to use for communication" msgstr "Необязательно: сеть для связи" @@ -470,8 +469,8 @@ msgstr "Необязательно: прокси-сервер для обнар msgid "OPTIONAL: Use non-default DNS-Server to detect 'Registered IP'." msgstr "" -"Необязательно: использовать DNS сервер не используемый по умолчанию, " -"для обнаружения 'Зарегистрированного IP-адреса'." +"Необязательно: использовать DNS сервер не используемый по умолчанию, для " +"обнаружения 'Зарегистрированного IP-адреса'." msgid "On Error the script will retry the failed action after given time" msgstr "" @@ -496,8 +495,7 @@ msgid "Optional: Replaces [PARAMENC] in Update-URL (URL-encoded)" msgstr "Необязательно: заменяет [PARAMENC] в Update-URL (URL-encoded)" msgid "Optional: Replaces [PARAMOPT] in Update-URL (NOT URL-encoded)" -msgstr "" -"Необязательно: заменяет [PARAMOPT] в Update-URL (не URL-encoded)" +msgstr "Необязательно: заменяет [PARAMOPT] в Update-URL (не URL-encoded)" msgid "Overview" msgstr "Обзор" @@ -605,8 +603,8 @@ msgid "" "Update URL to be used for updating your DDNS Provider.<br />Follow " "instructions you will find on their WEB page." msgstr "" -"URL обновления используется для обновления вашего DDNS-провайдера.<br />Следуйте " -"инструкциям, которые вы найдете на их на веб-странице." +"URL обновления используется для обновления вашего DDNS-провайдера.<br /" +">Следуйте инструкциям, которые вы найдете на их на веб-странице." msgid "Update error" msgstr "Ошибка обновления" @@ -658,14 +656,15 @@ msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' or 'hostip' " "package, if you need to specify a DNS server to detect your registered IP." msgstr "" -"Установите пакет 'bind-host', 'knot-host', 'drill' или 'hostip' если " -"вам нужно указать DNS сервер для обнаружения вашего зарегистрированного IP-" +"Установите пакет 'bind-host', 'knot-host', 'drill' или 'hostip' если вам " +"нужно указать DNS сервер для обнаружения вашего зарегистрированного IP-" "адреса." msgid "" "You should install 'bind-host' or 'knot-host' or 'drill' package for DNS " "requests." -msgstr "Установите пакет 'bind-host', 'knot-host' или 'drill' для DNS запросов." +msgstr "" +"Установите пакет 'bind-host', 'knot-host' или 'drill' для DNS запросов." msgid "You should install 'wget' or 'curl' or 'uclient-fetch' package." msgstr "Установите пакет 'wget', 'curl' или 'uclient-fetch'." @@ -757,8 +756,7 @@ msgid "no data" msgstr "нет данных" msgid "not found or not executable - Sample: '/path/to/script.sh'" -msgstr "" -"Не найден или не является исполняемым — пример: '/path/to/script.sh'" +msgstr "Не найден или не является исполняемым — пример: '/path/to/script.sh'" msgid "nslookup can not resolve host" msgstr "Утилита nslookup не может разрешить хост" diff --git a/applications/luci-app-firewall/po/ru/firewall.po b/applications/luci-app-firewall/po/ru/firewall.po index 79c0f0b9a6..b73d963d8f 100644 --- a/applications/luci-app-firewall/po/ru/firewall.po +++ b/applications/luci-app-firewall/po/ru/firewall.po @@ -3,12 +3,12 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Project-Id-Version: LuCI: firewall\n" "POT-Creation-Date: 2013-09-05 16:02+0200\n" -"PO-Revision-Date: 2018-01-18 21:58+0300\n" +"PO-Revision-Date: 2018-09-06 09:29+0300\n" "Language-Team: http://cyber-place.ru\n" "MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Poedit 1.8.7.1\n" -"Last-Translator: Vladimir aka sunny <picfun@ya.ru>\n" +"Last-Translator: Anton Kikin <a.kikin@tano-systems.com>\n" "Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n" "%100<10 || n%100>=20) ? 1 : 2);\n" "Language: ru\n" @@ -43,13 +43,13 @@ msgid "<var>%s</var> and limit to %s" msgstr "<var>%s</var> с пределом в %s" msgid "Accept forward" -msgstr "Принять перенаправление" +msgstr "Принимать перенаправляемый трафик" msgid "Accept input" -msgstr "Принять входящий трафик" +msgstr "Принимать входящий трафик" msgid "Accept output" -msgstr "" +msgstr "Принимать исходящий трафик" msgid "Action" msgstr "Действие" @@ -64,7 +64,7 @@ msgid "Advanced Settings" msgstr "Дополнительные настройки" msgid "Allow forward from <em>source zones</em>:" -msgstr "Разрешить перенаправление из <em>'зон-источников'</em>:" +msgstr "Разрешить перенаправление из <em>'зон источников'</em>:" msgid "Allow forward to <em>destination zones</em>:" msgstr "Разрешить перенаправление в <em>'зоны назначения'</em>:" @@ -84,9 +84,9 @@ msgid "" "each firewall restart, right after the default ruleset has been loaded." msgstr "" "Пользовательские правила позволяют выполнять произвольные команды iptables, " -"которые не охвачены рамками межсетевого экрана.<br />Команды выполняются " -"после каждой перезагрузки межсетевого экрана, сразу после загрузки набора " -"правил по умолчанию." +"которые не охвачены рамками межсетевого экрана. Команды выполняются после " +"каждой перезагрузки межсетевого экрана, сразу после загрузки набора правил " +"по умолчанию." msgid "Destination IP address" msgstr "IP-адрес назначения" @@ -104,28 +104,28 @@ msgid "Disable" msgstr "Отключить" msgid "Discard forward" -msgstr "Отключить перенаправление" +msgstr "Отклонять перенаправляемый трафик" msgid "Discard input" -msgstr "Отключить входящий трафик" +msgstr "Отклонять входящий трафик" msgid "Discard output" -msgstr "" +msgstr "Отклонять исходящий трафик" msgid "Do not rewrite" msgstr "Не перезаписывать" msgid "Do not track forward" -msgstr "Не отслеживать перенаправление" +msgstr "Не отслеживать перенаправляемый трафик" msgid "Do not track input" msgstr "Не отслеживать входящий трафик" msgid "Do not track output" -msgstr "" +msgstr "Не отслеживать исходящий трафик" msgid "Drop invalid packets" -msgstr "Не пропускать<br />некорректные пакеты" +msgstr "Отбрасывать некорректные пакеты" msgid "Enable" msgstr "Включить" @@ -134,13 +134,13 @@ msgid "Enable NAT Loopback" msgstr "Включить NAT Loopback" msgid "Enable SYN-flood protection" -msgstr "Включить защиту<br />от SYN-flood атак" +msgstr "Включить защиту от SYN-flood атак" msgid "Enable logging on this zone" msgstr "Включить журналирование в этой зоне" msgid "Experimental feature. Not fully compatible with QoS/SQM." -msgstr "" +msgstr "Экспериментальный функционал. Не полностью совместим с QoS/SQM." msgid "External IP address" msgstr "Внешний IP-адрес" @@ -152,7 +152,7 @@ msgid "External zone" msgstr "Внешняя зона" msgid "Extra arguments" -msgstr "Дополнительные<br />аргументы" +msgstr "Дополнительные аргументы" msgid "Firewall" msgstr "Межсетевой экран" @@ -176,7 +176,7 @@ msgid "Forward" msgstr "Перенаправление" msgid "Forward to" -msgstr "Перенаправлять из" +msgstr "Перенаправлять на" msgid "Friday" msgstr "Пятница" @@ -191,19 +191,19 @@ msgid "From %s in %s with source %s and %s" msgstr "Из %s в %s с источниками %s и %s" msgid "From %s on <var>this device</var>" -msgstr "" +msgstr "Из %s в <var>это устройство</var>" msgid "From %s on <var>this device</var> with source %s" -msgstr "" +msgstr "Из %s в <var>это устройство</var> с источником %s" msgid "From %s on <var>this device</var> with source %s and %s" -msgstr "" +msgstr "Из %s в <var>это устройство</var> с источниками %s and %s" msgid "General Settings" msgstr "Основные настройки" msgid "Hardware flow offloading" -msgstr "" +msgstr "Аппаратный flow offloading" msgid "IP" msgstr "IP-адрес" @@ -260,22 +260,21 @@ msgid "Masquerading" msgstr "Маскарадинг" msgid "Match" -msgstr "Перенаправлять в" +msgstr "Входящий трафик" msgid "Match ICMP type" -msgstr "Соответствовать<br />ICMP типу" +msgstr "Соответствовать ICMP типу" msgid "Match forwarded traffic to the given destination port or port range." msgstr "" -"Перенаправить соответствующий трафик на определённый порт или диапазон " -"портов. " +"Перенаправлять соответствующий трафик на указанный порт или диапазон портов." msgid "" "Match incoming traffic directed at the given destination port or port range " "on this host" msgstr "" -"Порт который будет принимать входящий трафик из источника 'Внутренний " -"порт' (см.ниже)." +"Порт или диапазон портов, входящие подключения на который будут " +"перенаправляться на внутренний порт внутреннего IP-адреса (см. ниже)" msgid "" "Match incoming traffic originating from the given source port or port range " @@ -288,7 +287,7 @@ msgid "Monday" msgstr "Понедельник" msgid "Month Days" -msgstr "Дни Месяца" +msgstr "Дни месяца" msgid "Name" msgstr "Имя" @@ -310,22 +309,22 @@ msgstr "Новый SNAT" msgid "Only match incoming traffic directed at the given IP address." msgstr "" -"IP-адрес который будет принимать входящий трафик из источника 'Внутренний IP-" -"адрес' (см.ниже) ." +"Применять правило только для входящих подключений на указанный IP-адрес" msgid "Only match incoming traffic from these MACs." -msgstr "Выбирать только входящий трафик от этих MAC-адресов." +msgstr "Применять правило только для входящего трафика от этих MAC-адресов." msgid "Only match incoming traffic from this IP or range." msgstr "" -"Выбирать только входящий трафик от этого IP-адреса или диапазона адресов." +"Применять правило только для входящего трафика от этого IP-адреса или " +"диапазона адресов." msgid "" "Only match incoming traffic originating from the given source port or port " "range on the client host" msgstr "" -"Выбирать только входящий трафик, исходящий из указанного порта или диапазона " -"портов клиентского хоста" +"Применять правило только для входящего трафика от указанного порта или " +"диапазона портов клиентского хоста" msgid "Open ports on router" msgstr "Открыть порты на маршрутизаторе" @@ -337,7 +336,7 @@ msgid "Output" msgstr "Исходящий трафик" msgid "Output zone" -msgstr "" +msgstr "Исходящая зона" msgid "Passes additional arguments to iptables. Use with care!" msgstr "" @@ -360,24 +359,24 @@ msgstr "Протокол" msgid "" "Redirect matched incoming traffic to the given port on the internal host" msgstr "" -"Перенаправить исходящий трафик с данного порта на 'Внешний порт' (см.выше)." +"Перенаправлять трафик на указанный порт или диапазон портов внутреннего IP-" +"адреса" msgid "Redirect matched incoming traffic to the specified internal host" -msgstr "" -"Перенаправить исходящий трафик с данного IP-адреса на 'Внешний IP-адрес' (см." -"выше)." +msgstr "Перенаправлять трафик на указанный IP-адрес" msgid "Refuse forward" -msgstr "Сбрасывать перенаправление" +msgstr "Сбрасывать перенаправляемый трафик" msgid "Refuse input" msgstr "Сбрасывать входящий трафик" msgid "Refuse output" -msgstr "" +msgstr "Сбрасывать исходящий трафик" msgid "Requires hardware NAT support. Implemented at least for mt7621" msgstr "" +"Требуется аппаратная поддержка NAT. Реализовано, по крайней мере, для mt7621" msgid "Restart Firewall" msgstr "Перезапустить межсетевой экран" @@ -408,7 +407,7 @@ msgid "Rewrite to source %s, %s" msgstr "Перенаправлять к источнику %s, %s" msgid "Routing/NAT Offloading" -msgstr "" +msgstr "Маршрутизация/NAT offloading" msgid "Rule is disabled" msgstr "Правило отключено" @@ -426,10 +425,10 @@ msgid "Saturday" msgstr "Суббота" msgid "Software based offloading for routing/NAT" -msgstr "" +msgstr "Программная реализация offloading для маршрутизации/NAT" msgid "Software flow offloading" -msgstr "" +msgstr "Программный flow offloading" msgid "Source IP address" msgstr "IP-адрес источника" @@ -460,16 +459,16 @@ msgid "Source zone" msgstr "Зона источника" msgid "Start Date (yyyy-mm-dd)" -msgstr "Дата начала<br />(год-мес-день)" +msgstr "Дата начала (год-мес-день)" msgid "Start Time (hh:mm:ss)" -msgstr "Время начала<br />(чч:мм:сс)" +msgstr "Время начала (чч:мм:сс)" msgid "Stop Date (yyyy-mm-dd)" -msgstr "Дата остановки<br />(год-мес-день)" +msgstr "Дата окончания (год-мес-день)" msgid "Stop Time (hh:mm:ss)" -msgstr "Время остановки<br />(чч:мм:сс)" +msgstr "Время окончания (чч:мм:сс)" msgid "Sunday" msgstr "Воскресенье" @@ -487,26 +486,27 @@ msgid "" "rule is <em>unidirectional</em>, e.g. a forward from lan to wan does " "<em>not</em> imply a permission to forward from wan to lan as well." msgstr "" -"Данные настройки управляют политиками перенаправления между этой (%s) и " -"другими зонами. Трафиком <em>'зон-назначения'</em> является перенаправленный " -"трафик <strong>'исходящий из %q'</strong>. Трафиком <em>'зон-источников'</" -"em> является трафик <strong>'направленый в %q'</strong>. Перенаправление " -"является <em>'однонаправленным'</em>, то есть перенаправление из lan в wan " -"<em>'не'</em> допускает перенаправление трафика из wan в lan." +"Данные настройки управляют политиками перенаправления трафика между этой " +"(%s) и другими зонами. Трафиком <em>'зон-назначения'</em> является " +"перенаправленный трафик <strong>'исходящий из %q'</strong>. Трафиком " +"<em>'зон-источников'</em> является трафик <strong>'направленый в %q'</" +"strong>. Перенаправление является <em>'однонаправленным'</em>, то есть " +"перенаправление из lan в wan <em>'не'</em> допускает перенаправление трафика " +"из wan в lan." msgid "" "This page allows you to change advanced properties of the port forwarding " "entry. In most cases there is no need to modify those settings." msgstr "" "На этой странице можно изменить расширенные настройки перенаправления портов." -"<br />В большинстве случаев нет необходимости изменять эти параметры." +"В большинстве случаев нет необходимости изменять эти параметры." msgid "" "This page allows you to change advanced properties of the traffic rule " "entry, such as matched source and destination hosts." msgstr "" -"На этой странице можно изменить расширенные настройки правил для трафика." -"<br />В большинстве случаев нет необходимости изменять эти параметры." +"На этой странице можно изменить расширенные настройки правил для трафика.В " +"большинстве случаев нет необходимости изменять эти параметры." msgid "" "This section defines common properties of %q. The <em>input</em> and " @@ -518,7 +518,7 @@ msgstr "" "Страница содержит общие свойства %q. Режимы <em>'Входящий трафик'</em> и " "<em>'Исходящий трафик'</em> устанавливают политики по умолчанию для трафика, " "поступающего и покидающего эту зону, в то время как режим " -"<em>'Перенаправление'</em> описывает политику пересылки трафика между " +"<em>'Перенаправление'</em> описывает политику перенаправления трафика между " "различными сетями внутри зоны. <em>'Использовать сети'</em> указывает, какие " "доступные сети являются членами этой зоны." @@ -529,7 +529,7 @@ msgid "Time in UTC" msgstr "Время UTC" msgid "To %s at %s on <var>this device</var>" -msgstr "К %s, порту %s на <var>этом устройстве</var>" +msgstr "К %s, %s на <var>этом устройстве</var>" msgid "To %s in %s" msgstr "К %s в %s" @@ -562,19 +562,19 @@ msgid "Tuesday" msgstr "Вторник" msgid "Unnamed SNAT" -msgstr "" +msgstr "SNAT без имени" msgid "Unnamed forward" -msgstr "" +msgstr "Перенаправление без имени" msgid "Unnamed rule" -msgstr "" +msgstr "Правило без имени" msgid "Via %s" msgstr "Через %s" msgid "Via %s at %s" -msgstr "Через %s, порт %s" +msgstr "Через %s, %s" msgid "Wednesday" msgstr "Среда" diff --git a/applications/luci-app-https_dns_proxy/Makefile b/applications/luci-app-https_dns_proxy/Makefile new file mode 100644 index 0000000000..2ae2b80f2f --- /dev/null +++ b/applications/luci-app-https_dns_proxy/Makefile @@ -0,0 +1,17 @@ +# Copyright 2017-2018 Stan Grishin (stangri@melmac.net) +# This is free software, licensed under the GNU General Public License v3. + +include $(TOPDIR)/rules.mk + +PKG_LICENSE:=GPL-3.0+ +PKG_MAINTAINER:=Stan Grishin <stangri@melmac.net> + +LUCI_TITLE:=HTTPS DNS Proxy Web UI +LUCI_DESCRIPTION:=Provides Web UI for HTTPS DNS Proxy +LUCI_DEPENDS:=+luci-mod-admin-full +https_dns_proxy +LUCI_PKGARCH:=all +PKG_RELEASE:=2 + +include ../../luci.mk + +# call BuildPackage - OpenWrt buildroot signature diff --git a/applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua b/applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua new file mode 100644 index 0000000000..e1fd8fcb9b --- /dev/null +++ b/applications/luci-app-https_dns_proxy/luasrc/controller/https_dns_proxy.lua @@ -0,0 +1,7 @@ +module("luci.controller.https_dns_proxy", package.seeall) +function index() + if not nixio.fs.access("/etc/config/https_dns_proxy") then + return + end + entry({"admin", "services", "https_dns_proxy"}, cbi("https_dns_proxy"), _("HTTPS DNS Proxy")) +end diff --git a/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua new file mode 100644 index 0000000000..61511a4130 --- /dev/null +++ b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua @@ -0,0 +1,53 @@ +local uci = require("luci.model.uci").cursor() + +m = Map("https_dns_proxy", translate("HTTPS DNS Proxy Settings")) +m.template="cbi/map" + +s3 = m:section(TypedSection, "https_dns_proxy", translate("Instances")) +s3.template = "cbi/tblsection" +s3.sortable = false +s3.anonymous = true +s3.addremove = true + +prov = s3:option(ListValue, "url_prefix", translate("Provider")) +prov:value("https://cloudflare-dns.com/dns-query?ct=application/dns-json&","Cloudflare") +prov:value("https://dns.google.com/resolve?","Google") +prov.write = function(self, section, value) + if value and value:match("cloudflare") then + uci:set("https_dns_proxy", section, "bootstrap_dns", "1.1.1.1,1.0.0.1") + uci:set("https_dns_proxy", section, "url_prefix", "https://cloudflare-dns.com/dns-query?ct=application/dns-json&") + else + uci:set("https_dns_proxy", section, "bootstrap_dns", "8.8.8.8,8.8.4.4") + uci:set("https_dns_proxy", section, "url_prefix", "https://dns.google.com/resolve?") + end + uci:set("https_dns_proxy", section, "user", "nobody") + uci:set("https_dns_proxy", section, "group", "nogroup") + uci:save("https_dns_proxy") +end + +la = s3:option(Value, "listen_addr", translate("Listen address")) +la.value = "127.0.0.1" +la.rmempty = true + +lp = s3:option(Value, "listen_port", translate("Listen port")) +lp.datatype = "port" +lp.placeholder = "5053" +lp.rmempty = true + +-- user = s3:option(Value, "user", translate("User name")) +-- user.placeholder = "nobody" +-- user.rmempty = true + +-- group = s3:option(Value, "group", translate("Group name")) +-- group.placeholder = "nogroup" +-- group.rmempty = true + +sa = s3:option(Value, "subnet_addr", translate("Subnet address")) +sa.datatype = "ip4prefix" +sa.rmempty = true + +ps = s3:option(Value, "proxy_server", translate("Proxy server")) +-- ps.datatype = "or(ipaddr,hostname)" +ps.rmempty = true + +return m diff --git a/applications/luci-app-https_dns_proxy/po/templates/https_dns_proxy.pot b/applications/luci-app-https_dns_proxy/po/templates/https_dns_proxy.pot new file mode 100644 index 0000000000..c292e79325 --- /dev/null +++ b/applications/luci-app-https_dns_proxy/po/templates/https_dns_proxy.pot @@ -0,0 +1,32 @@ +msgid "" +msgstr "Content-Type: text/plain; charset=UTF-8" + +msgid "Group name" +msgstr "" + +msgid "HTTPS DNS Proxy" +msgstr "" + +msgid "HTTPS DNS Proxy Settings" +msgstr "" + +msgid "Instances" +msgstr "" + +msgid "Listen address" +msgstr "" + +msgid "Listen port" +msgstr "" + +msgid "Provider" +msgstr "" + +msgid "Proxy server" +msgstr "" + +msgid "Subnet address" +msgstr "" + +msgid "User name" +msgstr "" diff --git a/applications/luci-app-https_dns_proxy/root/etc/uci-defaults/40_luci-https_dns_proxy b/applications/luci-app-https_dns_proxy/root/etc/uci-defaults/40_luci-https_dns_proxy new file mode 100644 index 0000000000..7800af701e --- /dev/null +++ b/applications/luci-app-https_dns_proxy/root/etc/uci-defaults/40_luci-https_dns_proxy @@ -0,0 +1,10 @@ +#!/bin/sh +uci -q batch <<-EOF >/dev/null + delete ucitrack.@https_dns_proxy[-1] + add ucitrack https_dns_proxy + set ucitrack.@template[-1].init=https_dns_proxy + commit ucitrack +EOF + +rm -f /tmp/luci-indexcache +exit 0 diff --git a/applications/luci-app-minidlna/po/ca/minidlna.po b/applications/luci-app-minidlna/po/ca/minidlna.po index 2c0dbafb48..93ba90fad7 100644 --- a/applications/luci-app-minidlna/po/ca/minidlna.po +++ b/applications/luci-app-minidlna/po/ca/minidlna.po @@ -35,15 +35,15 @@ msgstr "" msgid "Database directory" msgstr "" +msgid "Enable" +msgstr "Habilita" + msgid "Enable TIVO" msgstr "Habilita TIVO" msgid "Enable inotify" msgstr "Habilita inotify" -msgid "Enable" -msgstr "Habilita" - msgid "Friendly name" msgstr "Nom amistós" @@ -75,21 +75,21 @@ msgstr "Música" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." -msgstr "Interval de notificació en segons." - msgid "Notify interval" msgstr "Interval de notificació" +msgid "Notify interval in seconds." +msgstr "Interval de notificació en segons." + msgid "Pictures" msgstr "Imatges" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port de tràfic HTTP (descripcions, SOAP, transferència de medis)" - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port de tràfic HTTP (descripcions, SOAP, transferència de medis)" + msgid "Presentation URL" msgstr "" diff --git a/applications/luci-app-minidlna/po/cs/minidlna.po b/applications/luci-app-minidlna/po/cs/minidlna.po index 1c20511884..ca07599200 100644 --- a/applications/luci-app-minidlna/po/cs/minidlna.po +++ b/applications/luci-app-minidlna/po/cs/minidlna.po @@ -35,15 +35,15 @@ msgstr "Shromažďování dat ..." msgid "Database directory" msgstr "Adresář databáze" +msgid "Enable" +msgstr "Povolit" + msgid "Enable TIVO" msgstr "Povolit TIVO" msgid "Enable inotify" msgstr "Povolit inotify" -msgid "Enable" -msgstr "Povolit" - msgid "Friendly name" msgstr "Popisek" @@ -77,21 +77,21 @@ msgstr "Hudba" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." -msgstr "Notifikační interval v sekundách." - msgid "Notify interval" msgstr "Notifikační interval" +msgid "Notify interval in seconds." +msgstr "Notifikační interval v sekundách." + msgid "Pictures" msgstr "Obrázky" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port pro HTTP (popisy, SOAP, přenos médií) provoz." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port pro HTTP (popisy, SOAP, přenos médií) provoz." + msgid "Presentation URL" msgstr "Prezentační URL" diff --git a/applications/luci-app-minidlna/po/de/minidlna.po b/applications/luci-app-minidlna/po/de/minidlna.po index 552651ead0..34914034dc 100644 --- a/applications/luci-app-minidlna/po/de/minidlna.po +++ b/applications/luci-app-minidlna/po/de/minidlna.po @@ -35,15 +35,15 @@ msgstr "Sammle Daten..." msgid "Database directory" msgstr "Datenbankverzeichnis" +msgid "Enable" +msgstr "Aktivieren" + msgid "Enable TIVO" msgstr "TIVO aktivieren" msgid "Enable inotify" msgstr "Inotify aktivieren" -msgid "Enable" -msgstr "Aktivieren" - msgid "Friendly name" msgstr "Spitzname" @@ -79,21 +79,21 @@ msgstr "Musik" msgid "Network interfaces to serve." msgstr "Zu bedienende Netzwerkschnittstellen." -msgid "Notify interval in seconds." -msgstr "Ankündigungsinterval in Sekunden." - msgid "Notify interval" msgstr "Ankündigunsintervall" +msgid "Notify interval in seconds." +msgstr "Ankündigungsinterval in Sekunden." + msgid "Pictures" msgstr "Bilder" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port für HTTP-Verkehr (Beschreibungen, SOAP, Mediendaten)." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port für HTTP-Verkehr (Beschreibungen, SOAP, Mediendaten)." + msgid "Presentation URL" msgstr "Präsentations-URL" diff --git a/applications/luci-app-minidlna/po/el/minidlna.po b/applications/luci-app-minidlna/po/el/minidlna.po index aeb6fb0883..f08917e5c5 100644 --- a/applications/luci-app-minidlna/po/el/minidlna.po +++ b/applications/luci-app-minidlna/po/el/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/en/minidlna.po b/applications/luci-app-minidlna/po/en/minidlna.po index 1ea7cb8b9e..7339fdcd6f 100644 --- a/applications/luci-app-minidlna/po/en/minidlna.po +++ b/applications/luci-app-minidlna/po/en/minidlna.po @@ -32,15 +32,15 @@ msgstr "" msgid "Database directory" msgstr "Database directory" +msgid "Enable" +msgstr "Enable" + msgid "Enable TIVO" msgstr "Enable TIVO" msgid "Enable inotify" msgstr "Enable inotify" -msgid "Enable" -msgstr "Enable" - msgid "Friendly name" msgstr "Friendly name" @@ -76,21 +76,21 @@ msgstr "Music" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." -msgstr "Notify interval in seconds." - msgid "Notify interval" msgstr "Notify interval" +msgid "Notify interval in seconds." +msgstr "Notify interval in seconds." + msgid "Pictures" msgstr "Pictures" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port for HTTP (descriptions, SOAP, media transfer) traffic." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port for HTTP (descriptions, SOAP, media transfer) traffic." + msgid "Presentation URL" msgstr "Presentation URL" diff --git a/applications/luci-app-minidlna/po/es/minidlna.po b/applications/luci-app-minidlna/po/es/minidlna.po index aa97674e76..44e7097cb5 100644 --- a/applications/luci-app-minidlna/po/es/minidlna.po +++ b/applications/luci-app-minidlna/po/es/minidlna.po @@ -35,15 +35,15 @@ msgstr "Recopilando información..." msgid "Database directory" msgstr "Directorio de la base de datos" +msgid "Enable" +msgstr "Activar" + msgid "Enable TIVO" msgstr "Activar TIVO" msgid "Enable inotify" msgstr "Activar inotify" -msgid "Enable" -msgstr "Activar" - msgid "Friendly name" msgstr "Nombre amigable" @@ -78,22 +78,22 @@ msgstr "Música" msgid "Network interfaces to serve." msgstr "Interfaces de red a usar." -msgid "Notify interval in seconds." -msgstr "Intervalo de notificación en segundos." - msgid "Notify interval" msgstr "Intervalo de notificación" +msgid "Notify interval in seconds." +msgstr "Intervalo de notificación en segundos." + msgid "Pictures" msgstr "Imágenes" +msgid "Port" +msgstr "Puerto" + msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" "Puerto para tráfico HTTP (descripciones, SOAP y transferencia de medios)." -msgid "Port" -msgstr "Puerto" - msgid "Presentation URL" msgstr "URL de presentación" diff --git a/applications/luci-app-minidlna/po/fr/minidlna.po b/applications/luci-app-minidlna/po/fr/minidlna.po index 4956da955d..4bb4e5ac91 100644 --- a/applications/luci-app-minidlna/po/fr/minidlna.po +++ b/applications/luci-app-minidlna/po/fr/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/he/minidlna.po b/applications/luci-app-minidlna/po/he/minidlna.po index aeb6fb0883..f08917e5c5 100644 --- a/applications/luci-app-minidlna/po/he/minidlna.po +++ b/applications/luci-app-minidlna/po/he/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/hu/minidlna.po b/applications/luci-app-minidlna/po/hu/minidlna.po index 91744f578c..cb86dfcf92 100644 --- a/applications/luci-app-minidlna/po/hu/minidlna.po +++ b/applications/luci-app-minidlna/po/hu/minidlna.po @@ -35,15 +35,15 @@ msgstr "Adatok gyűjtése..." msgid "Database directory" msgstr "Adatbázis könyvtár" +msgid "Enable" +msgstr "Engedélyezés" + msgid "Enable TIVO" msgstr "TIVO engedélyezése" msgid "Enable inotify" msgstr "Inotify engedélyezése" -msgid "Enable" -msgstr "Engedélyezés" - msgid "Friendly name" msgstr "Egyéni név" @@ -78,21 +78,21 @@ msgstr "Zene" msgid "Network interfaces to serve." msgstr "Kiszolgált hálózati interfészek." -msgid "Notify interval in seconds." -msgstr "Értesítés intervalluma másodpercben." - msgid "Notify interval" msgstr "Értesítési intervallum" +msgid "Notify interval in seconds." +msgstr "Értesítés intervalluma másodpercben." + msgid "Pictures" msgstr "Képek" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "HTTP forgalom (leírások, SOAP, média átvitel) portja." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "HTTP forgalom (leírások, SOAP, média átvitel) portja." + msgid "Presentation URL" msgstr "Szolgáltatott URL" diff --git a/applications/luci-app-minidlna/po/it/minidlna.po b/applications/luci-app-minidlna/po/it/minidlna.po index 452873466a..58eae32f70 100644 --- a/applications/luci-app-minidlna/po/it/minidlna.po +++ b/applications/luci-app-minidlna/po/it/minidlna.po @@ -35,15 +35,15 @@ msgstr "Recuperando i dati..." msgid "Database directory" msgstr "Directory database" +msgid "Enable" +msgstr "Abilita" + msgid "Enable TIVO" msgstr "Abilita TIVO" msgid "Enable inotify" msgstr "Abilita inotify" -msgid "Enable" -msgstr "Abilita" - msgid "Friendly name" msgstr "Nome Comune" @@ -79,21 +79,21 @@ msgstr "Musica" msgid "Network interfaces to serve." msgstr "Interfaccia di rete usata." -msgid "Notify interval in seconds." -msgstr "Intervallo di notifica in secondi." - msgid "Notify interval" msgstr "Intervallo di notifica" +msgid "Notify interval in seconds." +msgstr "Intervallo di notifica in secondi." + msgid "Pictures" msgstr "Immagini" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Porta per traffico (descrizione, SOAP, trasferimento supporto) HTTP" - msgid "Port" msgstr "Porta" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta per traffico (descrizione, SOAP, trasferimento supporto) HTTP" + msgid "Presentation URL" msgstr "URL di Presentazione" diff --git a/applications/luci-app-minidlna/po/ja/minidlna.po b/applications/luci-app-minidlna/po/ja/minidlna.po index e6d11c75ea..50dcfa5348 100644 --- a/applications/luci-app-minidlna/po/ja/minidlna.po +++ b/applications/luci-app-minidlna/po/ja/minidlna.po @@ -36,15 +36,15 @@ msgstr "データ収集中です..." msgid "Database directory" msgstr "データベース・ディレクトリ" +msgid "Enable" +msgstr "サービスを有効にする" + msgid "Enable TIVO" msgstr "TIVO を有効にする" msgid "Enable inotify" msgstr "inotify を有効にする" -msgid "Enable" -msgstr "サービスを有効にする" - msgid "Friendly name" msgstr "Friendly名" @@ -78,21 +78,21 @@ msgstr "ミュージック" msgid "Network interfaces to serve." msgstr "サービスが使用するネットワーク・インターフェースを設定します。" -msgid "Notify interval in seconds." -msgstr "通知間隔を秒単位で設定します。" - msgid "Notify interval" msgstr "通知間隔" +msgid "Notify interval in seconds." +msgstr "通知間隔を秒単位で設定します。" + msgid "Pictures" msgstr "ピクチャ" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "ステータス表示のためのHTTPポート番号を設定してください。" - msgid "Port" msgstr "ポート" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "ステータス表示のためのHTTPポート番号を設定してください。" + msgid "Presentation URL" msgstr "プレゼンテーションURL" diff --git a/applications/luci-app-minidlna/po/ms/minidlna.po b/applications/luci-app-minidlna/po/ms/minidlna.po index 078693e4eb..7ab7be4a7c 100644 --- a/applications/luci-app-minidlna/po/ms/minidlna.po +++ b/applications/luci-app-minidlna/po/ms/minidlna.po @@ -31,13 +31,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -71,19 +71,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/no/minidlna.po b/applications/luci-app-minidlna/po/no/minidlna.po index f409220bc2..efabe28d4a 100644 --- a/applications/luci-app-minidlna/po/no/minidlna.po +++ b/applications/luci-app-minidlna/po/no/minidlna.po @@ -35,15 +35,15 @@ msgstr "Samler inn data..." msgid "Database directory" msgstr "Database katalog" +msgid "Enable" +msgstr "Aktiver" + msgid "Enable TIVO" msgstr "Aktiver TIVO" msgid "Enable inotify" msgstr "Aktiver inotify" -msgid "Enable" -msgstr "Aktiver" - msgid "Friendly name" msgstr "Vennlig navn" @@ -79,21 +79,21 @@ msgstr "Musikk" msgid "Network interfaces to serve." msgstr "Nettverksgrensesnittene å tjene." -msgid "Notify interval in seconds." -msgstr "Notify intervall i sekunder." - msgid "Notify interval" msgstr "Notify intervall" +msgid "Notify interval in seconds." +msgstr "Notify intervall i sekunder." + msgid "Pictures" msgstr "Bilder" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port for HTTP (beskrivelser, SOAP, media overføring) trafikk." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port for HTTP (beskrivelser, SOAP, media overføring) trafikk." + msgid "Presentation URL" msgstr "Presentasjon URL" diff --git a/applications/luci-app-minidlna/po/pl/minidlna.po b/applications/luci-app-minidlna/po/pl/minidlna.po index bfbc871c14..122e9562b8 100644 --- a/applications/luci-app-minidlna/po/pl/minidlna.po +++ b/applications/luci-app-minidlna/po/pl/minidlna.po @@ -36,15 +36,15 @@ msgstr "Zbieranie informacji..." msgid "Database directory" msgstr "Katalog bazy danych" +msgid "Enable" +msgstr "Włącz" + msgid "Enable TIVO" msgstr "Włącz TIVO" msgid "Enable inotify" msgstr "Włącz inotify" -msgid "Enable" -msgstr "Włącz" - msgid "Friendly name" msgstr "Przyjazna nazwa" @@ -78,21 +78,21 @@ msgstr "Muzyka" msgid "Network interfaces to serve." msgstr "Interfejsy sieciowe do obsługiwania." -msgid "Notify interval in seconds." -msgstr "Interwał powiadamiania w sekundach." - msgid "Notify interval" msgstr "Interwał powiadamiania." +msgid "Notify interval in seconds." +msgstr "Interwał powiadamiania w sekundach." + msgid "Pictures" msgstr "Obrazy" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port dla ruchu HTTP (opisy, SOAP, transfer mediów)." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port dla ruchu HTTP (opisy, SOAP, transfer mediów)." + msgid "Presentation URL" msgstr "URL prezentacyjny" diff --git a/applications/luci-app-minidlna/po/pt-br/minidlna.po b/applications/luci-app-minidlna/po/pt-br/minidlna.po index 5739c6ff89..f5eb735789 100644 --- a/applications/luci-app-minidlna/po/pt-br/minidlna.po +++ b/applications/luci-app-minidlna/po/pt-br/minidlna.po @@ -32,15 +32,15 @@ msgstr "Coletando dados..." msgid "Database directory" msgstr "Banco de dados de diretório" +msgid "Enable" +msgstr "Ativado" + msgid "Enable TIVO" msgstr "Ativar TIVO" msgid "Enable inotify" msgstr "Ativar inotify" -msgid "Enable" -msgstr "Ativado" - msgid "Friendly name" msgstr "Nome amigável" @@ -76,21 +76,21 @@ msgstr "Musica" msgid "Network interfaces to serve." msgstr "As interfaces de rede para servir." -msgid "Notify interval in seconds." -msgstr "Notificação de intervalo em segundos." - msgid "Notify interval" msgstr "Intervalo de Notificação" +msgid "Notify interval in seconds." +msgstr "Notificação de intervalo em segundos." + msgid "Pictures" msgstr "Imagems" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Porta para HTTP (descrições, SOAP, transferência de mídia) de tráfego." - msgid "Port" msgstr "Porta" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta para HTTP (descrições, SOAP, transferência de mídia) de tráfego." + msgid "Presentation URL" msgstr "URL para Apresentação" diff --git a/applications/luci-app-minidlna/po/pt/minidlna.po b/applications/luci-app-minidlna/po/pt/minidlna.po index 5eff3034f8..f1b8ee4440 100644 --- a/applications/luci-app-minidlna/po/pt/minidlna.po +++ b/applications/luci-app-minidlna/po/pt/minidlna.po @@ -35,15 +35,15 @@ msgstr "A obter dados..." msgid "Database directory" msgstr "Directório da base de dados" +msgid "Enable" +msgstr "Ativar" + msgid "Enable TIVO" msgstr "Ativar TIVO" msgid "Enable inotify" msgstr "Ativar inotify" -msgid "Enable" -msgstr "Ativar" - msgid "Friendly name" msgstr "Nome amigável" @@ -79,21 +79,21 @@ msgstr "Música" msgid "Network interfaces to serve." msgstr "Interfaces de rede a serem seervidas." -msgid "Notify interval in seconds." -msgstr "Intervalo de notificação em segundos." - msgid "Notify interval" msgstr "Intervalo de Notificação" +msgid "Notify interval in seconds." +msgstr "Intervalo de notificação em segundos." + msgid "Pictures" msgstr "Imagens" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Porta para tráfego HTTP (descrições, SOAP, tranferencia de conteudos)." - msgid "Port" msgstr "Porta" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Porta para tráfego HTTP (descrições, SOAP, tranferencia de conteudos)." + msgid "Presentation URL" msgstr "" diff --git a/applications/luci-app-minidlna/po/ro/minidlna.po b/applications/luci-app-minidlna/po/ro/minidlna.po index f3714c2167..c129b06aa9 100644 --- a/applications/luci-app-minidlna/po/ro/minidlna.po +++ b/applications/luci-app-minidlna/po/ro/minidlna.po @@ -36,15 +36,15 @@ msgstr "Colectare date..." msgid "Database directory" msgstr "" +msgid "Enable" +msgstr "Activare" + msgid "Enable TIVO" msgstr "Activare TIVO" msgid "Enable inotify" msgstr "Activare inotify" -msgid "Enable" -msgstr "Activare" - msgid "Friendly name" msgstr "Nume prieten" @@ -76,21 +76,21 @@ msgstr "Muzică" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." -msgstr "Notificare interval în secunde." - msgid "Notify interval" msgstr "Notificare interval" +msgid "Notify interval in seconds." +msgstr "Notificare interval în secunde." + msgid "Pictures" msgstr "Fotografii" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Port pentru HTTP (descrieri, SOAP, transfer media) trafic." - msgid "Port" msgstr "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Port pentru HTTP (descrieri, SOAP, transfer media) trafic." + msgid "Presentation URL" msgstr "URL de prezentare" diff --git a/applications/luci-app-minidlna/po/ru/minidlna.po b/applications/luci-app-minidlna/po/ru/minidlna.po index ea28c56a49..04a2305588 100644 --- a/applications/luci-app-minidlna/po/ru/minidlna.po +++ b/applications/luci-app-minidlna/po/ru/minidlna.po @@ -39,15 +39,15 @@ msgstr "Сбор данных..." msgid "Database directory" msgstr "Папка базы данных" +msgid "Enable" +msgstr "Включить" + msgid "Enable TIVO" msgstr "Включить TiVo" msgid "Enable inotify" msgstr "Включить inotify" -msgid "Enable" -msgstr "Включить" - msgid "Friendly name" msgstr "Имя протокола" @@ -81,21 +81,21 @@ msgstr "Музыка" msgid "Network interfaces to serve." msgstr "Использовать сетевые интерфейсы." -msgid "Notify interval in seconds." -msgstr "Интервал уведомления в секундах." - msgid "Notify interval" msgstr "Интервал уведомления" +msgid "Notify interval in seconds." +msgstr "Интервал уведомления в секундах." + msgid "Pictures" msgstr "Картинки" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "Задайте порт для HTTP-трафика (описания, SOAP, передача мультимедиа)." - msgid "Port" msgstr "Порт" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "Задайте порт для HTTP-трафика (описания, SOAP, передача мультимедиа)." + msgid "Presentation URL" msgstr "Задать URL-адрес" diff --git a/applications/luci-app-minidlna/po/sk/minidlna.po b/applications/luci-app-minidlna/po/sk/minidlna.po index 2d72745803..df3b619889 100644 --- a/applications/luci-app-minidlna/po/sk/minidlna.po +++ b/applications/luci-app-minidlna/po/sk/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/sv/minidlna.po b/applications/luci-app-minidlna/po/sv/minidlna.po index 4d9cea96c6..d69cacd503 100644 --- a/applications/luci-app-minidlna/po/sv/minidlna.po +++ b/applications/luci-app-minidlna/po/sv/minidlna.po @@ -33,13 +33,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -73,19 +73,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/templates/minidlna.pot b/applications/luci-app-minidlna/po/templates/minidlna.pot index cef3374311..985def9c94 100644 --- a/applications/luci-app-minidlna/po/templates/minidlna.pot +++ b/applications/luci-app-minidlna/po/templates/minidlna.pot @@ -25,13 +25,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -65,19 +65,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/tr/minidlna.po b/applications/luci-app-minidlna/po/tr/minidlna.po index 95353845cf..1f4559f86b 100644 --- a/applications/luci-app-minidlna/po/tr/minidlna.po +++ b/applications/luci-app-minidlna/po/tr/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/uk/minidlna.po b/applications/luci-app-minidlna/po/uk/minidlna.po index 89b15ce26a..21312658e7 100644 --- a/applications/luci-app-minidlna/po/uk/minidlna.po +++ b/applications/luci-app-minidlna/po/uk/minidlna.po @@ -33,13 +33,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -73,19 +73,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/vi/minidlna.po b/applications/luci-app-minidlna/po/vi/minidlna.po index 95353845cf..1f4559f86b 100644 --- a/applications/luci-app-minidlna/po/vi/minidlna.po +++ b/applications/luci-app-minidlna/po/vi/minidlna.po @@ -32,13 +32,13 @@ msgstr "" msgid "Database directory" msgstr "" -msgid "Enable TIVO" +msgid "Enable" msgstr "" -msgid "Enable inotify" +msgid "Enable TIVO" msgstr "" -msgid "Enable" +msgid "Enable inotify" msgstr "" msgid "Friendly name" @@ -72,19 +72,19 @@ msgstr "" msgid "Network interfaces to serve." msgstr "" -msgid "Notify interval in seconds." +msgid "Notify interval" msgstr "" -msgid "Notify interval" +msgid "Notify interval in seconds." msgstr "" msgid "Pictures" msgstr "" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgid "Port" msgstr "" -msgid "Port" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." msgstr "" msgid "Presentation URL" diff --git a/applications/luci-app-minidlna/po/zh-cn/minidlna.po b/applications/luci-app-minidlna/po/zh-cn/minidlna.po index 243d57470d..49eeeb22d9 100644 --- a/applications/luci-app-minidlna/po/zh-cn/minidlna.po +++ b/applications/luci-app-minidlna/po/zh-cn/minidlna.po @@ -38,15 +38,15 @@ msgstr "正在收集数据…" msgid "Database directory" msgstr "数据库目录:" +msgid "Enable" +msgstr "启用:" + msgid "Enable TIVO" msgstr "启用 TIVO:" msgid "Enable inotify" msgstr "启用 inotify:" -msgid "Enable" -msgstr "启用:" - msgid "Friendly name" msgstr "友好名称:" @@ -78,21 +78,21 @@ msgstr "音乐" msgid "Network interfaces to serve." msgstr "服务的网络接口。" -msgid "Notify interval in seconds." -msgstr "通知的时间间隔(秒)。" - msgid "Notify interval" msgstr "通知的时间间隔:" +msgid "Notify interval in seconds." +msgstr "通知的时间间隔(秒)。" + msgid "Pictures" msgstr "图片" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "HTTP(描述,SOAP,媒体传输)流量的端口。" - msgid "Port" msgstr "端口:" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "HTTP(描述,SOAP,媒体传输)流量的端口。" + msgid "Presentation URL" msgstr "服务网址" diff --git a/applications/luci-app-minidlna/po/zh-tw/minidlna.po b/applications/luci-app-minidlna/po/zh-tw/minidlna.po index 3bdf86a088..76b8d48ab2 100644 --- a/applications/luci-app-minidlna/po/zh-tw/minidlna.po +++ b/applications/luci-app-minidlna/po/zh-tw/minidlna.po @@ -39,15 +39,15 @@ msgstr "正在收集資料…" msgid "Database directory" msgstr "資料庫目錄:" +msgid "Enable" +msgstr "啟用:" + msgid "Enable TIVO" msgstr "啟用 TIVO:" msgid "Enable inotify" msgstr "啟用 inotify:" -msgid "Enable" -msgstr "啟用:" - msgid "Friendly name" msgstr "友善名稱:" @@ -79,21 +79,21 @@ msgstr "音樂" msgid "Network interfaces to serve." msgstr "服務的網路介面。" -msgid "Notify interval in seconds." -msgstr "通知的時間間隔(秒)。" - msgid "Notify interval" msgstr "通知的時間間隔:" +msgid "Notify interval in seconds." +msgstr "通知的時間間隔(秒)。" + msgid "Pictures" msgstr "圖片" -msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." -msgstr "HTTP(描述,SOAP,媒體傳輸)流量的埠。" - msgid "Port" msgstr "埠:" +msgid "Port for HTTP (descriptions, SOAP, media transfer) traffic." +msgstr "HTTP(描述,SOAP,媒體傳輸)流量的埠。" + msgid "Presentation URL" msgstr "服務網址" diff --git a/applications/luci-app-mwan3/luasrc/controller/mwan3.lua b/applications/luci-app-mwan3/luasrc/controller/mwan3.lua index 2d46953e55..d2d7422a6b 100644 --- a/applications/luci-app-mwan3/luasrc/controller/mwan3.lua +++ b/applications/luci-app-mwan3/luasrc/controller/mwan3.lua @@ -101,6 +101,10 @@ function diagnosticsData(interface, task) if addr and addr:match("^[a-zA-Z0-9%-%.:_]+$") then local util = io.popen(cmd %{ut.shellquote(device), ut.shellquote(addr)}) if util then + luci.http.write("Command:\n") + luci.http.write(cmd %{ut.shellquote(device), + ut.shellquote(addr)} .. "\n\n") + luci.http.write("Result:\n") while true do local ln = util:read("*l") if not ln then break end @@ -140,7 +144,8 @@ function diagnosticsData(interface, task) local uci = require "luci.model.uci".cursor(nil, "/var/state") local nw = require "luci.model.network".init() local network = nw:get_network(interface) - local device = network and network:ifname() + local device = network and network:get_interface() + device = device:name() luci.http.prepare_content("text/plain") if device then @@ -150,7 +155,7 @@ function diagnosticsData(interface, task) diag_command("ping -I %s -c 5 -W 1 %s 2>&1", device, gateway) else luci.http.prepare_content("text/plain") - luci.http.write(string.format("No gateway for interface %s found.", interface)) + luci.http.write(translatef("No gateway for interface %s found.", interface)) end elseif task == "ping_trackips" then local trackips = uci:get("mwan3", interface, "track_ip") @@ -159,7 +164,7 @@ function diagnosticsData(interface, task) diag_command("ping -I %s -c 5 -W 1 %s 2>&1", device, trackips[i]) end else - luci.http.write(string.format("No tracking Hosts for interface %s defined.", interface)) + luci.http.write(translatef("No tracking Hosts for interface %s defined.", interface)) end elseif task == "check_rules" then local number = getInterfaceNumber(interface) @@ -168,30 +173,30 @@ function diagnosticsData(interface, task) local iif_rule = sys.exec(string.format("ip rule | grep %d", iif)) local fwmark_rule = sys.exec(string.format("ip rule | grep %d", fwmark)) if iif_rule ~= "" and fwmark_rule ~= "" then - luci.http.write(string.format("All required IP rules for interface %s found", interface)) + luci.http.write(translatef("All required IP rules for interface %s found", interface)) luci.http.write("\n") luci.http.write(fwmark_rule) luci.http.write(iif_rule) elseif iif_rule == "" and fwmark_rule ~= "" then - luci.http.write(string.format("Only one IP rules for interface %s found", interface)) + luci.http.write(translatef("Only one IP rules for interface %s found", interface)) luci.http.write("\n") luci.http.write(fwmark_rule) elseif iif_rule ~= "" and fwmark_rule == "" then - luci.http.write(string.format("Only one IP rules for interface %s found", interface)) + luci.http.write(translatef("Only one IP rules for interface %s found", interface)) luci.http.write("\n") luci.http.write(iif_rule) else - luci.http.write(string.format("Missing both IP rules for interface %s", interface)) + luci.http.write(translatef("Missing both IP rules for interface %s", interface)) end elseif task == "check_routes" then local number = getInterfaceNumber(interface) local routeTable = sys.exec(string.format("ip route list table %s", number)) if routeTable ~= "" then - luci.http.write(string.format("Routing table %s for interface %s found", number, interface)) + luci.http.write(translatef("Routing table %s for interface %s found", number, interface)) luci.http.write("\n") luci.http.write(routeTable) else - luci.http.write(string.format("Routing table %s for interface %s not found", number, interface)) + luci.http.write(translatef("Routing table %s for interface %s not found", number, interface)) end elseif task == "hotplug_ifup" then os.execute(string.format("/usr/sbin/mwan3 ifup %s", ut.shellquote(interface))) diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua index a6570e341c..d01945bf4a 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua @@ -13,10 +13,8 @@ mwan_interface = m5:section(NamedSection, arg[1], "interface", "") mwan_interface.addremove = false mwan_interface.dynamic = false -enabled = mwan_interface:option(ListValue, "enabled", translate("Enabled")) -enabled.default = "1" -enabled:value("1", translate("Yes")) -enabled:value("0", translate("No")) +enabled = mwan_interface:option(Flag, "enabled", translate("Enabled")) +enabled.default = false initial_state = mwan_interface:option(ListValue, "initial_state", translate("Initial state"), translate("Expect interface state on up event")) diff --git a/applications/luci-app-mwan3/po/ja/mwan3.po b/applications/luci-app-mwan3/po/ja/mwan3.po index a5826926dd..8a1cad2f6b 100644 --- a/applications/luci-app-mwan3/po/ja/mwan3.po +++ b/applications/luci-app-mwan3/po/ja/mwan3.po @@ -40,6 +40,9 @@ msgstr "利用可能な値: 1-1000。空欄の場合のデフォルトは1です msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "利用可能な値: 1-256。空欄の場合のデフォルトは1です。" +msgid "All required IP rules for interface %s found" +msgstr "" + msgid "Check IP rules" msgstr "IP ルールのチェック" @@ -263,6 +266,9 @@ msgstr "最小パケットレイテンシ [ms]" msgid "Min packet loss [%]" msgstr "最小パケットロス [%]" +msgid "Missing both IP rules for interface %s" +msgstr "" + msgid "" "Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" "youtube.com/youtube\")" @@ -276,6 +282,12 @@ msgstr "いいえ" msgid "No MWAN interfaces found" msgstr "MWAN インターフェースが見つかりません" +msgid "No gateway for interface %s found." +msgstr "" + +msgid "No tracking Hosts for interface %s defined." +msgstr "" + msgid "Notification" msgstr "通知" @@ -285,6 +297,9 @@ msgstr "オフライン" msgid "Online" msgstr "オンライン" +msgid "Only one IP rules for interface %s found" +msgstr "" + msgid "Ping count" msgstr "Ping 回数" @@ -342,6 +357,12 @@ msgstr "プロトコル" msgid "Recovery interval" msgstr "障害復旧 インターバル" +msgid "Routing table %s for interface %s found" +msgstr "" + +msgid "Routing table %s for interface %s not found" +msgstr "" + msgid "Rule" msgstr "ルール" diff --git a/applications/luci-app-mwan3/po/ru/mwan3.po b/applications/luci-app-mwan3/po/ru/mwan3.po index 140c537e73..4d52d7108c 100644 --- a/applications/luci-app-mwan3/po/ru/mwan3.po +++ b/applications/luci-app-mwan3/po/ru/mwan3.po @@ -43,6 +43,9 @@ msgstr "Допустимые значения: 1-1000. По умолчанию 1 msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "Допустимые значения: 1-256 По умолчанию 1, если значение не задано." +msgid "All required IP rules for interface %s found" +msgstr "" + msgid "Check IP rules" msgstr "Проверить правила IP" @@ -262,6 +265,9 @@ msgstr "" msgid "Min packet loss [%]" msgstr "" +msgid "Missing both IP rules for interface %s" +msgstr "" + msgid "" "Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" "youtube.com/youtube\")" @@ -275,6 +281,12 @@ msgstr "Нет" msgid "No MWAN interfaces found" msgstr "Интерфейсы MWAN не найдены" +msgid "No gateway for interface %s found." +msgstr "" + +msgid "No tracking Hosts for interface %s defined." +msgstr "" + msgid "Notification" msgstr "Уведомления" @@ -284,6 +296,9 @@ msgstr "Отключен" msgid "Online" msgstr "Онлайн" +msgid "Only one IP rules for interface %s found" +msgstr "" + msgid "Ping count" msgstr "Кол-во пинг-запросов" @@ -341,6 +356,12 @@ msgstr "Протокол" msgid "Recovery interval" msgstr "Интервал восстановления" +msgid "Routing table %s for interface %s found" +msgstr "" + +msgid "Routing table %s for interface %s not found" +msgstr "" + msgid "Rule" msgstr "Правило" diff --git a/applications/luci-app-mwan3/po/templates/mwan3.pot b/applications/luci-app-mwan3/po/templates/mwan3.pot index bcc5e977a5..e815afd1f0 100644 --- a/applications/luci-app-mwan3/po/templates/mwan3.pot +++ b/applications/luci-app-mwan3/po/templates/mwan3.pot @@ -27,6 +27,9 @@ msgstr "" msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "" +msgid "All required IP rules for interface %s found" +msgstr "" + msgid "Check IP rules" msgstr "" @@ -231,6 +234,9 @@ msgstr "" msgid "Min packet loss [%]" msgstr "" +msgid "Missing both IP rules for interface %s" +msgstr "" + msgid "" "Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" "youtube.com/youtube\")" @@ -242,6 +248,12 @@ msgstr "" msgid "No MWAN interfaces found" msgstr "" +msgid "No gateway for interface %s found." +msgstr "" + +msgid "No tracking Hosts for interface %s defined." +msgstr "" + msgid "Notification" msgstr "" @@ -251,6 +263,9 @@ msgstr "" msgid "Online" msgstr "" +msgid "Only one IP rules for interface %s found" +msgstr "" + msgid "Ping count" msgstr "" @@ -300,6 +315,12 @@ msgstr "" msgid "Recovery interval" msgstr "" +msgid "Routing table %s for interface %s found" +msgstr "" + +msgid "Routing table %s for interface %s not found" +msgstr "" + msgid "Rule" msgstr "" diff --git a/applications/luci-app-mwan3/po/zh-cn/mwan3.po b/applications/luci-app-mwan3/po/zh-cn/mwan3.po index a6d73159f5..4fd6817407 100644 --- a/applications/luci-app-mwan3/po/zh-cn/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-cn/mwan3.po @@ -38,6 +38,9 @@ msgstr "取值范围:1-1000。如果不填写,默认值为 1" msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "取值范围:1-256。如果不填写,默认值为 1" +msgid "All required IP rules for interface %s found" +msgstr "" + msgid "Check IP rules" msgstr "检查 IP 规则" @@ -251,6 +254,9 @@ msgstr "最小数据包延迟 [ms]" msgid "Min packet loss [%]" msgstr "最小数据包丢失率 [%]" +msgid "Missing both IP rules for interface %s" +msgstr "" + msgid "" "Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" "youtube.com/youtube\")" @@ -264,6 +270,12 @@ msgstr "否" msgid "No MWAN interfaces found" msgstr "没有找到 MWAN 接口" +msgid "No gateway for interface %s found." +msgstr "" + +msgid "No tracking Hosts for interface %s defined." +msgstr "" + msgid "Notification" msgstr "通知" @@ -273,6 +285,9 @@ msgstr "离线" msgid "Online" msgstr "在线" +msgid "Only one IP rules for interface %s found" +msgstr "" + msgid "Ping count" msgstr "Ping 计数" @@ -327,6 +342,12 @@ msgstr "通信协议" msgid "Recovery interval" msgstr "故障恢复间隔" +msgid "Routing table %s for interface %s found" +msgstr "" + +msgid "Routing table %s for interface %s not found" +msgstr "" + msgid "Rule" msgstr "规则" diff --git a/applications/luci-app-mwan3/po/zh-tw/mwan3.po b/applications/luci-app-mwan3/po/zh-tw/mwan3.po index 00baedf216..bb17b559d2 100644 --- a/applications/luci-app-mwan3/po/zh-tw/mwan3.po +++ b/applications/luci-app-mwan3/po/zh-tw/mwan3.po @@ -38,6 +38,9 @@ msgstr "取值範圍:1-1000。如果不填寫,預設值為 1" msgid "Acceptable values: 1-256. Defaults to 1 if not set" msgstr "取值範圍:1-256。如果不填寫,預設值為 1" +msgid "All required IP rules for interface %s found" +msgstr "" + msgid "Check IP rules" msgstr "檢查 IP 規則" @@ -251,6 +254,9 @@ msgstr "最小資料包延遲 [ms]" msgid "Min packet loss [%]" msgstr "最小資料包丟失率 [%]" +msgid "Missing both IP rules for interface %s" +msgstr "" + msgid "" "Name of IPset rule. Requires IPset rule in /etc/dnsmasq.conf (eg \"ipset=/" "youtube.com/youtube\")" @@ -264,6 +270,12 @@ msgstr "否" msgid "No MWAN interfaces found" msgstr "沒有找到 MWAN 介面" +msgid "No gateway for interface %s found." +msgstr "" + +msgid "No tracking Hosts for interface %s defined." +msgstr "" + msgid "Notification" msgstr "通知" @@ -273,6 +285,9 @@ msgstr "離線" msgid "Online" msgstr "在線" +msgid "Only one IP rules for interface %s found" +msgstr "" + msgid "Ping count" msgstr "Ping 計數" @@ -327,6 +342,12 @@ msgstr "通訊協議" msgid "Recovery interval" msgstr "故障恢復間隔" +msgid "Routing table %s for interface %s found" +msgstr "" + +msgid "Routing table %s for interface %s not found" +msgstr "" + msgid "Rule" msgstr "規則" diff --git a/applications/luci-app-nlbwmon/po/zh-tw/nlbwmon.po b/applications/luci-app-nlbwmon/po/zh-tw/nlbwmon.po index f713ec516f..e5a4b5a777 100644 --- a/applications/luci-app-nlbwmon/po/zh-tw/nlbwmon.po +++ b/applications/luci-app-nlbwmon/po/zh-tw/nlbwmon.po @@ -366,8 +366,8 @@ msgid "" "mainly useful for memory constrained systems which might not be able to " "satisfy memory allocation after longer uptime periods." msgstr "" -"是否預先分配資料庫最大可能佔用的記憶體大小。這主要適用於記憶體較小系統,這些系統" -"在長時間執行之後可能無法滿足資料庫的記憶體需求。" +"是否預先分配資料庫最大可能佔用的記憶體大小。這主要適用於記憶體較小系統,這些" +"系統在長時間執行之後可能無法滿足資料庫的記憶體需求。" msgid "no traffic" msgstr "無流量資料" diff --git a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua index dc7718217c..6dc43bec24 100644 --- a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua +++ b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-advanced.lua @@ -204,10 +204,6 @@ local knownParams = { "dev_node", "/dev/net/tun", translate("Use tun/tap device node") }, - { Flag, - "tun_ipv6", - 0, - translate("Make tun device IPv6 capable") }, { Value, "ifconfig", "10.200.200.3 10.200.200.1", @@ -248,15 +244,6 @@ local knownParams = { "mtu_test", 0, translate("Empirically measure MTU") }, - { ListValue, - "comp_lzo", - { "yes", "no", "adaptive" }, - translate("Use fast LZO compression") }, - { Flag, - "comp_noadapt", - 0, - translate("Don't use adaptive lzo compression"), - { comp_lzo=1 } }, { Value, "link_mtu", 1500, @@ -375,7 +362,7 @@ local knownParams = { { client="0" }, { client="" } }, { DynamicList, "push", - { "redirect-gateway", "comp-lzo" }, + { "redirect-gateway" }, translate("Push options to peer"), { client="0" }, { client="" } }, { Flag, @@ -398,12 +385,6 @@ local knownParams = { "/etc/openvpn/ipp.txt 600", translate("Persist/unpersist ifconfig-pool"), { client="0" }, { client="" } }, - -- deprecated and replaced by --topology p2p - -- { Flag, - -- "ifconfig_pool_linear", - -- 0, - -- translate("Use individual addresses rather than /30 subnets"), - -- { client="0" }, { client="" } }, { Value, "ifconfig_push", "10.200.200.1 255.255.255.255", @@ -470,11 +451,6 @@ local knownParams = { translate("Allowed maximum of new connections"), { client="0" }, { client="" } }, { Flag, - "client_cert_not_required", - 0, - translate("Don't require client certificate"), - { client="0" }, { client="" } }, - { Flag, "username_as_common_name", 0, translate("Use username as common name"), @@ -591,10 +567,6 @@ local knownParams = { "engine", "dynamic", translate("Enable OpenSSL hardware crypto engines") }, - { Flag, - "no_replay", - 0, - translate("Disable replay protection") }, { Value, "replay_window", "64 15", @@ -608,10 +580,6 @@ local knownParams = { "/var/run/openvpn-replay-state", translate("Persist replay-protection state") }, { Flag, - "no_iv", - 0, - translate("Disable cipher initialisation vector") }, - { Flag, "tls_server", 0, translate("Enable TLS and assume server role"), diff --git a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua index 3f651c0ada..483860c8e9 100644 --- a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua +++ b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn-basic.lua @@ -4,7 +4,6 @@ require("luci.ip") require("luci.model.uci") - local basicParams = { -- -- Widget, Name, Default(s), Description @@ -14,14 +13,12 @@ local basicParams = { { Value, "nice",0, translate("Change process priority") }, { Value,"port",1194, translate("TCP/UDP port # for both local and remote") }, { ListValue,"dev_type",{ "tun", "tap" }, translate("Type of used device") }, - { Flag,"tun_ipv6",0, translate("Make tun device IPv6 capable") }, { Value,"ifconfig","10.200.200.3 10.200.200.1", translate("Set tun/tap adapter parameters") }, { Value,"server","10.200.200.0 255.255.255.0", translate("Configure server mode") }, { Value,"server_bridge","192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254", translate("Configure server bridge") }, { Flag,"nobind",0, translate("Do not bind to local address and port") }, - { ListValue,"comp_lzo",{"yes","no","adaptive"}, translate("Use fast LZO compression") }, { Value,"keepalive","10 60", translate("Helper directive to simplify the expression of --ping and --ping-restart in server mode configurations") }, { ListValue,"proto",{ "udp", "tcp-client", "tcp-server" }, translate("Use protocol") }, diff --git a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua index a6b0e1dd90..e17aa4085b 100644 --- a/applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua +++ b/applications/luci-app-openvpn/luasrc/model/cbi/openvpn.lua @@ -52,21 +52,22 @@ function s.create(self, name) luci.cbi.CREATE_PREFIX .. self.config .. "." .. self.sectiontype .. ".select" ) - name = luci.http.formvalue( + local name = luci.http.formvalue( luci.cbi.CREATE_PREFIX .. self.config .. "." .. self.sectiontype .. ".text" ) if #name > 3 and not name:match("[^a-zA-Z0-9_]") then - uci:section( - "openvpn", "openvpn", name, - uci:get_all( "openvpn_recipes", recipe ) - ) - - uci:delete("openvpn", name, "_role") - uci:delete("openvpn", name, "_description") - uci:save("openvpn") - - luci.http.redirect( self.extedit:format(name) ) + local s = uci:section("openvpn", "openvpn", name) + if s then + local options = uci:get_all("openvpn_recipes", recipe) + for k, v in pairs(options) do + uci:set("openvpn", name, k, v) + end + uci:delete("openvpn", name, "_role") + uci:delete("openvpn", name, "_description") + uci:save("openvpn") + luci.http.redirect( self.extedit:format(name) ) + end elseif #name > 0 then self.invalid_cts = true end diff --git a/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm b/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm index f22cb68c7b..8cb019b461 100644 --- a/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm +++ b/applications/luci-app-openvpn/luasrc/view/openvpn/pageswitch.htm @@ -4,11 +4,11 @@ Licensed to the public under the Apache License 2.0. -%> -<fieldset class="cbi-section"> - <legend> +<div class="cbi-section"> + <h3> <a href="<%=url('admin/services/openvpn')%>"><%:Overview%></a> » <%=luci.i18n.translatef("Instance \"%s\"", self.instance)%> - </legend> + </h3> <% if self.mode == "basic" then %> <a href="<%=url('admin/services/openvpn/advanced', self.instance, "Service")%>"><%:Switch to advanced configuration »%></a> @@ -27,4 +27,4 @@ <% if next(self.categories, i) then %>|<% end %> <% end %> <% end %> -</fieldset> +</div> diff --git a/applications/luci-app-openvpn/root/etc/config/openvpn_recipes b/applications/luci-app-openvpn/root/etc/config/openvpn_recipes index 1b394dffbc..69270e48e1 100644 --- a/applications/luci-app-openvpn/root/etc/config/openvpn_recipes +++ b/applications/luci-app-openvpn/root/etc/config/openvpn_recipes @@ -2,101 +2,94 @@ # Routed point-to-point server # config openvpn_recipe server_tun_ptp - option _description "Simple server configuration for a routed point-to-point VPN" - option _role "server" - option dev "tun" - option ifconfig "10.0.0.1 10.0.0.2" - option secret "shared-secret.key" - option keepalive "10 60" - option comp_lzo "yes" - option verb "3" - option mssfix "1420" + option _description 'Simple server configuration for a routed point-to-point VPN' + option _role 'server' + option dev 'tun' + option ifconfig '10.0.0.1 10.0.0.2' + option secret 'shared-secret.key' + option keepalive '10 60' + option verb '3' + option mssfix '1420' # # Routed point-to-point client # config openvpn_recipe client_tun_ptp - option _description "Simple client configuration for a routed point-to-point VPN" - option _role "client" - option dev "tun" - list remote "vpnserver.example.org" - option ifconfig "10.0.0.2 10.0.0.1" - option secret "shared-secret.key" - option nobind "1" - option comp_lzo "yes" - option verb "3" + option _description 'Simple client configuration for a routed point-to-point VPN' + option _role 'client' + option dev 'tun' + list remote 'vpnserver.example.org' + option ifconfig '10.0.0.2 10.0.0.1' + option secret 'shared-secret.key' + option nobind '1' + option verb '3' # # Routed multi-client server # config openvpn_recipe server_tun - option _description "Server configuration for a routed multi-client VPN" - option _role "server" - option dev "tun" - option server "10.0.100.0 255.255.255.0" - option ca "ca.crt" - option cert "server.crt" - option key "server.key" - option dh "dh1024.pem" - option keepalive "10 60" - option comp_lzo "yes" - option verb "3" - option mssfix "1420" + option _description 'Server configuration for a routed multi-client VPN' + option _role 'server' + option dev 'tun' + option server '10.0.100.0 255.255.255.0' + option ca 'ca.crt' + option cert 'server.crt' + option key 'server.key' + option dh 'dh1024.pem' + option keepalive '10 60' + option verb '3' + option mssfix '1420' # # Routed client # config openvpn_recipe client_tun - option _description "Client configuration for a routed multi-client VPN" - option _role "client" - option client "1" - option dev "tun" - list remote "vpnserver.example.org" - option pkcs12 "my_client.p12" - option remote_cert_tls "server" - option comp_lzo "yes" - option nobind "1" - option persist_key "1" - option persist_tun "1" - option verb "3" - option reneg_sec "0" - option float "1" + option _description 'Client configuration for a routed multi-client VPN' + option _role 'client' + option client '1' + option dev 'tun' + list remote 'vpnserver.example.org' + option pkcs12 'my_client.p12' + option remote_cert_tls 'server' + option nobind '1' + option persist_key '1' + option persist_tun '1' + option verb '3' + option reneg_sec '0' + option float '1' # # Multi-client ethernet bridge server # config openvpn_recipe server_tap_bridge - option _description "Server configuration for an ethernet bridge VPN" - option _role "server" - option dev "tap" - option server_bridge "192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254" - option ca "ca.crt" - option cert "server.crt" - option key "server.key" - option dh "dh1024.pem" - option keepalive "10 60" - option comp_lzo "yes" - option verb "3" - option mssfix "1420" + option _description 'Server configuration for an ethernet bridge VPN' + option _role 'server' + option dev 'tap' + option server_bridge '192.168.1.1 255.255.255.0 192.168.1.128 192.168.1.254' + option ca 'ca.crt' + option cert 'server.crt' + option key 'server.key' + option dh 'dh1024.pem' + option keepalive '10 60' + option verb '3' + option mssfix '1420' # # Ethernet bridge client # config openvpn_recipe client_tap_bridge - option _description "Client configuration for an ethernet bridge VPN" - option _role "client" - option client "1" - option dev "tap" - list remote "vpnserver.example.org" - option ca "ca.crt" - option cert "my_client.crt" - option key "my_client.key" - option dh "dh1024.pem" - option remote_cert_tls "server" - option comp_lzo "yes" - option nobind "1" - option persist_key "1" - option verb "3" - option reneg_sec "0" - option float "1" - + option _description 'Client configuration for an ethernet bridge VPN' + option _role 'client' + option client '1' + option dev 'tap' + list remote 'vpnserver.example.org' + option ca 'ca.crt' + option cert 'my_client.crt' + option key 'my_client.key' + option dh 'dh1024.pem' + option remote_cert_tls 'server' + option nobind '1' + option persist_key '1' + option verb '3' + option reneg_sec '0' + option float '1' diff --git a/applications/luci-app-samba4/luasrc/model/cbi/samba4.lua b/applications/luci-app-samba4/luasrc/model/cbi/samba4.lua index e5c0a1bed0..2a1399b96b 100644 --- a/applications/luci-app-samba4/luasrc/model/cbi/samba4.lua +++ b/applications/luci-app-samba4/luasrc/model/cbi/samba4.lua @@ -15,9 +15,20 @@ h = s:taboption("general", Flag, "homes", translate("Share home-directories"), translate("Allow system users to reach their home directories via " .. "network shares")) h.rmempty = false -s:taboption("general", Flag, "disable_netbios", translate("Disable Netbios")) -s:taboption("general", Flag, "disable_ad_dc", translate("Disable Active Directory Domain Controller")) -s:taboption("general", Flag, "disable_winbind", translate("Disable Winbind")) + +macos = s:taboption("general", Flag, "macos", translate("Enable macOS compatible shares"), + translate("Enables Apple's AAPL extension globally and adds macOS compatibility options to all shares.")) +macos.rmempty = false + +if nixio.fs.access("/usr/sbin/nmbd") then + s:taboption("general", Flag, "disable_netbios", translate("Disable Netbios")) +end +if nixio.fs.access("/usr/sbin/samba") then + s:taboption("general", Flag, "disable_ad_dc", translate("Disable Active Directory Domain Controller")) +end +if nixio.fs.access("/usr/sbin/winbindd") then + s:taboption("general", Flag, "disable_winbind", translate("Disable Winbind")) +end tmpl = s:taboption("template", Value, "_tmpl", translate("Edit the template that is used for generating the samba configuration."), @@ -49,42 +60,53 @@ if nixio.fs.access("/etc/config/fstab") then pth.titleref = luci.dispatcher.build_url("admin", "system", "fstab") end -s:option(Value, "users", translate("Allowed users")).rmempty = true +br = s:option(Flag, "browseable", translate("Browse-able")) +br.enabled = "yes" +br.disabled = "no" +br.default = "yes" ro = s:option(Flag, "read_only", translate("Read-only")) -ro.rmempty = false ro.enabled = "yes" ro.disabled = "no" +ro.default = "yes" -br = s:option(Flag, "browseable", translate("Browseable")) -br.rmempty = false -br.default = "yes" -br.enabled = "yes" -br.disabled = "no" +s:option(Flag, "force_root", translate("Force Root")) + +au = s:option(Value, "users", translate("Allowed users")) +au.rmempty = true go = s:option(Flag, "guest_ok", translate("Allow guests")) -go.rmempty = false go.enabled = "yes" go.disabled = "no" +go.default = "no" gon = s:option(Flag, "guest_only", translate("Guests only")) -gon.rmempty = false gon.enabled = "yes" gon.disabled = "no" +gon.default = "no" -io = s:option(Flag, "inherit_owner", translate("Inherit owner")) -io.rmempty = false -io.enabled = "yes" -io.disabled = "no" +iown = s:option(Flag, "inherit_owner", translate("Inherit owner")) +iown.enabled = "yes" +iown.disabled = "no" +iown.default = "no" cm = s:option(Value, "create_mask", translate("Create mask")) cm.rmempty = true -cm.size = 4 +cm.maxlength = 4 +cm.placeholder = "0666" dm = s:option(Value, "dir_mask", translate("Directory mask")) dm.rmempty = true -dm.size = 4 +dm.maxlength = 4 +dm.placeholder = "0777" + +vfs = s:option(Value, "vfs_objects", translate("Vfs objects")) +vfs.rmempty = true + +s:option(Flag, "timemachine", translate("Apple Time-machine share")) -s:option(Value, "vfs_objects", translate("Vfs objects")).rmempty = true +tms = s:option(Value, "timemachine_maxsize", translate("Time-machine size in GB")) +tms.rmempty = true +tms.maxlength = 5 return m diff --git a/applications/luci-app-samba4/po/ca/samba4.po b/applications/luci-app-samba4/po/ca/samba4.po index ddd306d07a..0183f56b70 100644 --- a/applications/luci-app-samba4/po/ca/samba4.po +++ b/applications/luci-app-samba4/po/ca/samba4.po @@ -26,7 +26,10 @@ msgstr "" msgid "Allowed users" msgstr "Usuaris permesos" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -53,6 +56,17 @@ msgstr "Edita plantilla" msgid "Edit the template that is used for generating the samba configuration." msgstr "Edita la plantilla que s'usa per generar la configuració de samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Ajusts generals" @@ -99,6 +113,9 @@ msgstr "" "barra ('|') no es deuen canviar. Reben els seus valors de la pestanya " "'Ajusts generals'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/cs/samba4.po b/applications/luci-app-samba4/po/cs/samba4.po index a013bcc13e..88cd178367 100644 --- a/applications/luci-app-samba4/po/cs/samba4.po +++ b/applications/luci-app-samba4/po/cs/samba4.po @@ -22,7 +22,10 @@ msgstr "" msgid "Allowed users" msgstr "Povolení uživatelé" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "" "Editovat šablonu, která je použita pro generování konfiguračního souboru pro " "sambu." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Obecné nastavení" @@ -96,6 +110,9 @@ msgstr "" "konfigurace samby generována. Hodnoty uzavřené rourou (\"|\"), by se neměly " "měnit. Tyto hodnoty jsou brány ze záložky \"Obecná nastavení\"." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/de/samba4.po b/applications/luci-app-samba4/po/de/samba4.po index b9caa61d1c..35a4815284 100644 --- a/applications/luci-app-samba4/po/de/samba4.po +++ b/applications/luci-app-samba4/po/de/samba4.po @@ -24,17 +24,20 @@ msgstr "" msgid "Allowed users" msgstr "Legitimierte Benutzer" -msgid "Browseable" -msgstr "Suchbar" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" +msgstr "Durchsuchbar" msgid "Create mask" -msgstr "Berechtigungsmaske für neue Dateien" +msgstr "Berechtigungs-maske für neue Dateien" msgid "Description" msgstr "Beschreibung" msgid "Directory mask" -msgstr "Verzeichnismaske" +msgstr "Verzeichnis-maske" msgid "Disable Active Directory Domain Controller" msgstr "Deaktiviere Active Directory Domain Controller" @@ -53,6 +56,17 @@ msgstr "" "Hier kann das Template bearbeitet werden, das zur Erstellung der Samba-" "Konfigurationsdateien verwendet wird." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Allgemeine Einstellungen" @@ -69,7 +83,7 @@ msgid "Name" msgstr "Name" msgid "Network Shares" -msgstr "Netzwerkfreigaben" +msgstr "Netzwerk-freigaben" msgid "Path" msgstr "Pfad" @@ -83,7 +97,7 @@ msgid "Read-only" msgstr "Nur Lesen" msgid "Share home-directories" -msgstr "Heimatverzeichnisse freigeben" +msgstr "Heimat-verzeichnisse freigeben" msgid "Shared Directories" msgstr "Freigegebene Verzeichnisse" @@ -100,12 +114,18 @@ msgstr "" "werden, da diese beim Erstellen der Konfiguration mit den Werten aus dem Tab " "'Allgemeine Einstellungen' ersetzt werden." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" -msgstr "Virtuelle Filesystem Module" +msgstr "" msgid "Workgroup" msgstr "Arbeitsgruppe" +#~ msgid "Browseable" +#~ msgstr "Suchbar" + #~ msgid "Mask for new directories" #~ msgstr "Maske für neue Verzeichnisse" diff --git a/applications/luci-app-samba4/po/el/samba4.po b/applications/luci-app-samba4/po/el/samba4.po index 946915f74d..88999d4071 100644 --- a/applications/luci-app-samba4/po/el/samba4.po +++ b/applications/luci-app-samba4/po/el/samba4.po @@ -22,7 +22,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -49,6 +52,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -91,6 +105,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/en/samba4.po b/applications/luci-app-samba4/po/en/samba4.po index 75ef0f96e9..35ecc99e25 100644 --- a/applications/luci-app-samba4/po/en/samba4.po +++ b/applications/luci-app-samba4/po/en/samba4.po @@ -22,7 +22,10 @@ msgstr "Allow system users to reach their home directories via network shares" msgid "Allowed users" msgstr "Allowed users" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -49,6 +52,17 @@ msgstr "Edit template" msgid "Edit the template that is used for generating the samba configuration." msgstr "Edit the template that is used for generating the Samba configuration." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "General settings" @@ -95,6 +109,9 @@ msgstr "" "('|') should not be changed. They get their values from the 'General " "settings' tab." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/es/samba4.po b/applications/luci-app-samba4/po/es/samba4.po index 1e6b8fd368..99d64f970b 100644 --- a/applications/luci-app-samba4/po/es/samba4.po +++ b/applications/luci-app-samba4/po/es/samba4.po @@ -24,7 +24,10 @@ msgstr "" msgid "Allowed users" msgstr "Usuarios permitidos" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "Editar plantilla" msgid "Edit the template that is used for generating the samba configuration." msgstr "Editar la plantilla usada para generar la configuración de samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Configuración general" @@ -96,6 +110,9 @@ msgstr "" "generará la configuración de samba. Los valores entre tuberías ('|') no " "deben cambiarse. Su valor se toma desde la pestaña 'Configuración General'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/fr/samba4.po b/applications/luci-app-samba4/po/fr/samba4.po index 53212311cf..a5b7dc7935 100644 --- a/applications/luci-app-samba4/po/fr/samba4.po +++ b/applications/luci-app-samba4/po/fr/samba4.po @@ -24,7 +24,10 @@ msgstr "" msgid "Allowed users" msgstr "Utilisateurs autorisés" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "Éditer le modèle" msgid "Edit the template that is used for generating the samba configuration." msgstr "Éditer le modèle utilisé pour générer la configuration Samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Paramètres généraux" @@ -97,6 +111,9 @@ msgstr "" " (« | ») ne doivent pas être modifiées, elles proviennent de l'onglet " "« Paramètres généraux »." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/he/samba4.po b/applications/luci-app-samba4/po/he/samba4.po index 3f670e6c2d..859dd8d896 100644 --- a/applications/luci-app-samba4/po/he/samba4.po +++ b/applications/luci-app-samba4/po/he/samba4.po @@ -17,7 +17,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -44,6 +47,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -86,6 +100,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/hu/samba4.po b/applications/luci-app-samba4/po/hu/samba4.po index 08ff729f4b..8dbe91558d 100644 --- a/applications/luci-app-samba4/po/hu/samba4.po +++ b/applications/luci-app-samba4/po/hu/samba4.po @@ -22,7 +22,10 @@ msgstr "" msgid "Allowed users" msgstr "Engedélyezett felhasználók" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "" "Itt szerkesztheti a sablont, ami a végleges samba konfiguráció " "elkészítéséhez kerül felhasználásra." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Általános beállítások" @@ -97,6 +111,9 @@ msgstr "" "közé zárt értékek módosítása nem szükséges, az értéküket az általános " "beállítások fülről kapják." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/it/samba4.po b/applications/luci-app-samba4/po/it/samba4.po index 93359d7ba7..d7f5631965 100644 --- a/applications/luci-app-samba4/po/it/samba4.po +++ b/applications/luci-app-samba4/po/it/samba4.po @@ -24,8 +24,11 @@ msgstr "" msgid "Allowed users" msgstr "Utenti ammessi" -msgid "Browseable" -msgstr "Sfogliabile" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" +msgstr "" msgid "Create mask" msgstr "Crea maschera" @@ -52,6 +55,17 @@ msgid "Edit the template that is used for generating the samba configuration." msgstr "" "Modifica il template utilizzato per generare la configurazione di samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Opzioni Generali" @@ -100,12 +114,18 @@ msgstr "" "('|') non dovrebbero essere toccati. Essi vengono generati dalla schermata " "'Opzioni Generali'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" msgid "Workgroup" msgstr "Gruppo di lavoro" +#~ msgid "Browseable" +#~ msgstr "Sfogliabile" + #~ msgid "Mask for new directories" #~ msgstr "Maschera per le nuove cartelle" diff --git a/applications/luci-app-samba4/po/ja/samba4.po b/applications/luci-app-samba4/po/ja/samba4.po index 3e82cbca2c..1358c2bd0e 100644 --- a/applications/luci-app-samba4/po/ja/samba4.po +++ b/applications/luci-app-samba4/po/ja/samba4.po @@ -22,7 +22,10 @@ msgstr "sambaを介してユーザーのホームディレクトリへのアク msgid "Allowed users" msgstr "許可されたユーザー" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -49,6 +52,17 @@ msgstr "テンプレートの編集" msgid "Edit the template that is used for generating the samba configuration." msgstr "samba設定を生成するテンプレートを編集します。" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "一般設定" @@ -96,6 +110,9 @@ msgstr "" "容です。パイプ('|')で閉じられた値は変更しないでください。これらの値は'一般設" "定'タブ内の値によって置き換えられます。" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/ms/samba4.po b/applications/luci-app-samba4/po/ms/samba4.po index 9e138471d0..c6ca22fba0 100644 --- a/applications/luci-app-samba4/po/ms/samba4.po +++ b/applications/luci-app-samba4/po/ms/samba4.po @@ -16,7 +16,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -43,6 +46,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -85,6 +99,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/no/samba4.po b/applications/luci-app-samba4/po/no/samba4.po index 6e84259337..8742cbb0a5 100644 --- a/applications/luci-app-samba4/po/no/samba4.po +++ b/applications/luci-app-samba4/po/no/samba4.po @@ -13,7 +13,10 @@ msgstr "Tillat systembrukere å nå sine hjemmekataloger via nettverks mapper." msgid "Allowed users" msgstr "Tillatte brukere" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -40,6 +43,17 @@ msgstr "Rediger Mal" msgid "Edit the template that is used for generating the samba configuration." msgstr "Rediger malen som brukes til å generere samba konfigurasjonen." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Generelle Innstillinger" @@ -85,6 +99,9 @@ msgstr "" "konfigurasjon vil bli generert fra. Verdier omsluttet av ('|') bør ikke " "endres. De får sine verdier fra 'Generelle Innstillinger' fanen." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/pl/samba4.po b/applications/luci-app-samba4/po/pl/samba4.po index aec7082d53..faad499c46 100644 --- a/applications/luci-app-samba4/po/pl/samba4.po +++ b/applications/luci-app-samba4/po/pl/samba4.po @@ -23,7 +23,10 @@ msgstr "" msgid "Allowed users" msgstr "Użytkownicy z prawem dostępu" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -50,6 +53,17 @@ msgstr "Edytuj szablon" msgid "Edit the template that is used for generating the samba configuration." msgstr "Edytuj szablon, który jest używany do generowania konfiguracji samby." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Ustawienia ogólne" @@ -96,6 +110,9 @@ msgstr "" "kreski pionowej ('|') nie powinny być zmieniane. Wartości ich zostaną " "pobrane z zakładki \"Ustawienia ogólne\"." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/pt-br/samba4.po b/applications/luci-app-samba4/po/pt-br/samba4.po index 8f6dbb6c99..5383aa32de 100644 --- a/applications/luci-app-samba4/po/pt-br/samba4.po +++ b/applications/luci-app-samba4/po/pt-br/samba4.po @@ -24,7 +24,10 @@ msgstr "" msgid "Allowed users" msgstr "Usuários permitidos" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "Editar modelo" msgid "Edit the template that is used for generating the samba configuration." msgstr "Edita o modelo que é usado para gerar a configuração do samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Configurações Gerais" @@ -97,6 +111,9 @@ msgstr "" "não devem ser alterados. Estes valores serão obtidos a partir da aba " "'Configurações Gerais'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/pt/samba4.po b/applications/luci-app-samba4/po/pt/samba4.po index 2f8f2dafc0..50c1645f0c 100644 --- a/applications/luci-app-samba4/po/pt/samba4.po +++ b/applications/luci-app-samba4/po/pt/samba4.po @@ -24,7 +24,10 @@ msgstr "" msgid "Allowed users" msgstr "Utilizadores Permitidos" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgstr "Editar Template" msgid "Edit the template that is used for generating the samba configuration." msgstr "Editar a template que é utilizada para gerar a configuração samba" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Definições Gerais" @@ -97,6 +111,9 @@ msgstr "" "| não devem ser alterados. Eles recebem os valores do separador 'Definições " "Gerais'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/ro/samba4.po b/applications/luci-app-samba4/po/ro/samba4.po index d9f698971e..b481b1f952 100644 --- a/applications/luci-app-samba4/po/ro/samba4.po +++ b/applications/luci-app-samba4/po/ro/samba4.po @@ -23,7 +23,10 @@ msgstr "" msgid "Allowed users" msgstr "Utilizatori acceptati" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -50,6 +53,17 @@ msgstr "Editeaza sablon" msgid "Edit the template that is used for generating the samba configuration." msgstr "Editeaza sablonul care e folosit pentru generarea configuratiei samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Setari generale" @@ -95,6 +109,9 @@ msgstr "" "genereaza configuratia samba. Valorile dintre liniuta verticala ('|') n-ar " "trebui schimbate, ele iau valorile direct din tab-ul de \"Setari generale\"." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/ru/samba4.po b/applications/luci-app-samba4/po/ru/samba4.po index f588424d95..f7ec3269eb 100644 --- a/applications/luci-app-samba4/po/ru/samba4.po +++ b/applications/luci-app-samba4/po/ru/samba4.po @@ -26,8 +26,11 @@ msgstr "" msgid "Allowed users" msgstr "Разрешенные пользователи" -msgid "Browseable" -msgstr "Виден в списке доступных ресурсов" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" +msgstr "" msgid "Create mask" msgstr "Создать маску" @@ -53,6 +56,17 @@ msgstr "Настройка config файла" msgid "Edit the template that is used for generating the samba configuration." msgstr "Настройка config<br />файла samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Основные настройки" @@ -101,12 +115,18 @@ msgstr "" "('|'), не должны быть изменены.<br />Они будут автоматически заменены на " "значения со страницы 'Основные настройки'." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" msgid "Workgroup" msgstr "Рабочая группа" +#~ msgid "Browseable" +#~ msgstr "Виден в списке доступных ресурсов" + #~ msgid "Mask for new directories" #~ msgstr "Маска для новых папок" diff --git a/applications/luci-app-samba4/po/sk/samba4.po b/applications/luci-app-samba4/po/sk/samba4.po index 53e8e214ea..44299ac1aa 100644 --- a/applications/luci-app-samba4/po/sk/samba4.po +++ b/applications/luci-app-samba4/po/sk/samba4.po @@ -17,7 +17,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -44,6 +47,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -86,6 +100,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/sv/samba4.po b/applications/luci-app-samba4/po/sv/samba4.po index d9c0cc0df9..39695eb0b7 100644 --- a/applications/luci-app-samba4/po/sv/samba4.po +++ b/applications/luci-app-samba4/po/sv/samba4.po @@ -18,7 +18,10 @@ msgstr "Tillåt systemanvändare att nå deras hem-mappar via nätverksdelningar msgid "Allowed users" msgstr "Tillåtna användare" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -46,6 +49,17 @@ msgid "Edit the template that is used for generating the samba configuration." msgstr "" "Redigera mallen som används för att generera konfigurationen för samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Generella inställningar" @@ -88,6 +102,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/templates/samba4.pot b/applications/luci-app-samba4/po/templates/samba4.pot index 3041807b14..33142d047c 100644 --- a/applications/luci-app-samba4/po/templates/samba4.pot +++ b/applications/luci-app-samba4/po/templates/samba4.pot @@ -10,7 +10,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -37,6 +40,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -79,6 +93,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/tr/samba4.po b/applications/luci-app-samba4/po/tr/samba4.po index 1c233f1ec3..4368fb2710 100644 --- a/applications/luci-app-samba4/po/tr/samba4.po +++ b/applications/luci-app-samba4/po/tr/samba4.po @@ -17,7 +17,10 @@ msgstr "" msgid "Allowed users" msgstr "" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -44,6 +47,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -86,6 +100,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/uk/samba4.po b/applications/luci-app-samba4/po/uk/samba4.po index e228baec2e..a4f7e5a02b 100644 --- a/applications/luci-app-samba4/po/uk/samba4.po +++ b/applications/luci-app-samba4/po/uk/samba4.po @@ -23,7 +23,10 @@ msgstr "" msgid "Allowed users" msgstr "Дозволені користувачі" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" msgid "Create mask" @@ -51,6 +54,17 @@ msgid "Edit the template that is used for generating the samba configuration." msgstr "" "Редагувати шаблон, який використовується для створення конфігурації samba." +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "Загальні настройки" @@ -97,6 +111,9 @@ msgstr "" "\" (\"|\") не повинні змінюватися. Вони отримують свої значення з вкладки " "\"Загальні налаштування\"." +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/vi/samba4.po b/applications/luci-app-samba4/po/vi/samba4.po index b176471b0d..d597628229 100644 --- a/applications/luci-app-samba4/po/vi/samba4.po +++ b/applications/luci-app-samba4/po/vi/samba4.po @@ -28,7 +28,10 @@ msgstr "" msgid "Allowed users" msgstr "Người sử dụng được cho phép" -msgid "Browseable" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" msgstr "" #, fuzzy @@ -57,6 +60,17 @@ msgstr "" msgid "Edit the template that is used for generating the samba configuration." msgstr "" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "" @@ -100,6 +114,9 @@ msgid "" "Settings' tab." msgstr "" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "" diff --git a/applications/luci-app-samba4/po/zh-cn/samba4.po b/applications/luci-app-samba4/po/zh-cn/samba4.po index bab5f9b9cb..f49abac4e9 100644 --- a/applications/luci-app-samba4/po/zh-cn/samba4.po +++ b/applications/luci-app-samba4/po/zh-cn/samba4.po @@ -25,8 +25,11 @@ msgstr "允许系统用户通过网络共享访问他们的家目录" msgid "Allowed users" msgstr "允许用户" -msgid "Browseable" -msgstr "可浏览" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" +msgstr "" msgid "Create mask" msgstr "创建权限掩码" @@ -52,6 +55,17 @@ msgstr "编辑模板" msgid "Edit the template that is used for generating the samba configuration." msgstr "编辑用来生成 samba 设置的模板" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "基本设置" @@ -96,12 +110,18 @@ msgstr "" "这是将从其上生成 samba 配置的文件“/etc/samba/smb.conf.template”的内容。由管道" "符(“|”)包围的值不应更改。它们将从“常规设置”标签中获取其值。" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "VFS 对象" msgid "Workgroup" msgstr "工作组" +#~ msgid "Browseable" +#~ msgstr "可浏览" + #~ msgid "Mask for new directories" #~ msgstr "新目录权限掩码" diff --git a/applications/luci-app-samba4/po/zh-tw/samba4.po b/applications/luci-app-samba4/po/zh-tw/samba4.po index 17d18e6200..ae962f9e82 100644 --- a/applications/luci-app-samba4/po/zh-tw/samba4.po +++ b/applications/luci-app-samba4/po/zh-tw/samba4.po @@ -25,8 +25,11 @@ msgstr "允許系統使用者通過網路共享訪問他們的家目錄" msgid "Allowed users" msgstr "允許使用者" -msgid "Browseable" -msgstr "可瀏覽" +msgid "Apple Time-machine share" +msgstr "" + +msgid "Browse-able" +msgstr "" msgid "Create mask" msgstr "建立權限掩碼" @@ -52,6 +55,17 @@ msgstr "編輯模板" msgid "Edit the template that is used for generating the samba configuration." msgstr "編輯用來生成 samba 設定的模板" +msgid "Enable macOS compatible shares" +msgstr "" + +msgid "" +"Enables Apple's AAPL extension globally and adds macOS compatibility options " +"to all shares." +msgstr "" + +msgid "Force Root" +msgstr "" + msgid "General Settings" msgstr "基本設定" @@ -96,12 +110,18 @@ msgstr "" "這是將從其上生成 samba 配置的檔案“/etc/samba/smb.conf.template”的內容。由管道" "符(“|”)包圍的值不應更改。它們將從“常規設定”標籤中獲取其值。" +msgid "Time-machine size in GB" +msgstr "" + msgid "Vfs objects" msgstr "VFS 物件" msgid "Workgroup" msgstr "工作組" +#~ msgid "Browseable" +#~ msgstr "可瀏覽" + #~ msgid "Mask for new directories" #~ msgstr "新目錄權限掩碼" diff --git a/applications/luci-app-simple-adblock/po/templates/simple-adblock.pot b/applications/luci-app-simple-adblock/po/templates/simple-adblock.pot index 38baf58a44..f5c11ac7b7 100644 --- a/applications/luci-app-simple-adblock/po/templates/simple-adblock.pot +++ b/applications/luci-app-simple-adblock/po/templates/simple-adblock.pot @@ -94,6 +94,9 @@ msgstr "" msgid "Some output" msgstr "" +msgid "Start Simple Adblock service" +msgstr "" + msgid "Stop the download if it is stalled for set number of seconds" msgstr "" diff --git a/applications/luci-app-transmission/po/ca/transmission.po b/applications/luci-app-transmission/po/ca/transmission.po index 2498393a9c..43f092d55a 100644 --- a/applications/luci-app-transmission/po/ca/transmission.po +++ b/applications/luci-app-transmission/po/ca/transmission.po @@ -61,6 +61,9 @@ msgstr "" msgid "Config file directory" msgstr "Directori de fitxer de configuració" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT habilitat" diff --git a/applications/luci-app-transmission/po/cs/transmission.po b/applications/luci-app-transmission/po/cs/transmission.po index b6166ec03c..f29e8acc5d 100644 --- a/applications/luci-app-transmission/po/cs/transmission.po +++ b/applications/luci-app-transmission/po/cs/transmission.po @@ -59,6 +59,9 @@ msgstr "Velikost mezipaměti v MB" msgid "Config file directory" msgstr "Složka pro uložení konfiguračního souboru" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "Povolit DHT" diff --git a/applications/luci-app-transmission/po/de/transmission.po b/applications/luci-app-transmission/po/de/transmission.po index 4b665ff656..ae405b59b8 100644 --- a/applications/luci-app-transmission/po/de/transmission.po +++ b/applications/luci-app-transmission/po/de/transmission.po @@ -61,6 +61,9 @@ msgstr "Cache-Größe in MB" msgid "Config file directory" msgstr "Verzeichnis für Konfigurationsdatei" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT eingeschaltet" @@ -142,8 +145,8 @@ msgid "" "8, Thursday - 16, Friday - 32, Saturday - 64" msgstr "" "Zahl/Bitfeld. Starte mit 0, für jeden Tag, an dem die Zeitplanung aktiv sein " -"soll, füge einen Wert hinzu. Sonntag - 1, Montag - 2, Dienstag - 4, " -"Mittwoch - 8, Donnerstag - 16, Freitag - 32, Samstag - 64" +"soll, füge einen Wert hinzu. Sonntag - 1, Montag - 2, Dienstag - 4, Mittwoch " +"- 8, Donnerstag - 16, Freitag - 32, Samstag - 64" msgid "Off" msgstr "Aus" diff --git a/applications/luci-app-transmission/po/el/transmission.po b/applications/luci-app-transmission/po/el/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/el/transmission.po +++ b/applications/luci-app-transmission/po/el/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/en/transmission.po b/applications/luci-app-transmission/po/en/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/en/transmission.po +++ b/applications/luci-app-transmission/po/en/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/es/transmission.po b/applications/luci-app-transmission/po/es/transmission.po index 9eeb2fb6bc..ab2fbf8db3 100644 --- a/applications/luci-app-transmission/po/es/transmission.po +++ b/applications/luci-app-transmission/po/es/transmission.po @@ -61,6 +61,9 @@ msgstr "Tamaño de la caché en MB" msgid "Config file directory" msgstr "Directorio del fichero de configuración" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT activado" diff --git a/applications/luci-app-transmission/po/fr/transmission.po b/applications/luci-app-transmission/po/fr/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/fr/transmission.po +++ b/applications/luci-app-transmission/po/fr/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/he/transmission.po b/applications/luci-app-transmission/po/he/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/he/transmission.po +++ b/applications/luci-app-transmission/po/he/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/hu/transmission.po b/applications/luci-app-transmission/po/hu/transmission.po index 040f83802e..3cab990a65 100644 --- a/applications/luci-app-transmission/po/hu/transmission.po +++ b/applications/luci-app-transmission/po/hu/transmission.po @@ -61,6 +61,9 @@ msgstr "Puffer méret (MB)" msgid "Config file directory" msgstr "Beállítási fájl könyvtára" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT engedélyezve" diff --git a/applications/luci-app-transmission/po/it/transmission.po b/applications/luci-app-transmission/po/it/transmission.po index 1008fad277..52dce23b84 100644 --- a/applications/luci-app-transmission/po/it/transmission.po +++ b/applications/luci-app-transmission/po/it/transmission.po @@ -61,6 +61,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/ja/transmission.po b/applications/luci-app-transmission/po/ja/transmission.po index dded65038a..502740bd05 100644 --- a/applications/luci-app-transmission/po/ja/transmission.po +++ b/applications/luci-app-transmission/po/ja/transmission.po @@ -61,6 +61,9 @@ msgstr "キャッシュサイズ (MB)" msgid "Config file directory" msgstr "コンフィグファイル・ディレクトリ" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHTを有効にする" diff --git a/applications/luci-app-transmission/po/ms/transmission.po b/applications/luci-app-transmission/po/ms/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/ms/transmission.po +++ b/applications/luci-app-transmission/po/ms/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/no/transmission.po b/applications/luci-app-transmission/po/no/transmission.po index cb8684181c..5031ae312d 100644 --- a/applications/luci-app-transmission/po/no/transmission.po +++ b/applications/luci-app-transmission/po/no/transmission.po @@ -61,6 +61,9 @@ msgstr "Bufferstørrelse i MB" msgid "Config file directory" msgstr "Mappe for konfigurasjonsfil" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT aktivert" diff --git a/applications/luci-app-transmission/po/pl/transmission.po b/applications/luci-app-transmission/po/pl/transmission.po index f010d56da8..f0f19dc514 100644 --- a/applications/luci-app-transmission/po/pl/transmission.po +++ b/applications/luci-app-transmission/po/pl/transmission.po @@ -62,6 +62,9 @@ msgstr "Wielkość cache w MB" msgid "Config file directory" msgstr "Katalog z plikiem konfiguracyjnym" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT włączone" diff --git a/applications/luci-app-transmission/po/pt-br/transmission.po b/applications/luci-app-transmission/po/pt-br/transmission.po index 82ba6a46e4..8fe5073c63 100644 --- a/applications/luci-app-transmission/po/pt-br/transmission.po +++ b/applications/luci-app-transmission/po/pt-br/transmission.po @@ -61,6 +61,9 @@ msgstr "Tamanho em MB do cache" msgid "Config file directory" msgstr "Diretório dos arquivos de configuração" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT habilitado" diff --git a/applications/luci-app-transmission/po/pt/transmission.po b/applications/luci-app-transmission/po/pt/transmission.po index 512ca970dc..00604e2153 100644 --- a/applications/luci-app-transmission/po/pt/transmission.po +++ b/applications/luci-app-transmission/po/pt/transmission.po @@ -61,6 +61,9 @@ msgstr "" msgid "Config file directory" msgstr "Directório do ficheiro de configuração" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/ro/transmission.po b/applications/luci-app-transmission/po/ro/transmission.po index 8e0fc7dcce..c99f64f36c 100644 --- a/applications/luci-app-transmission/po/ro/transmission.po +++ b/applications/luci-app-transmission/po/ro/transmission.po @@ -62,6 +62,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/ru/transmission.po b/applications/luci-app-transmission/po/ru/transmission.po index 32edc4f51a..449177e1d9 100644 --- a/applications/luci-app-transmission/po/ru/transmission.po +++ b/applications/luci-app-transmission/po/ru/transmission.po @@ -63,6 +63,9 @@ msgstr "Размер кэша в МБ" msgid "Config file directory" msgstr "Папка расположения<br />сonfig файла" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT включен" diff --git a/applications/luci-app-transmission/po/sk/transmission.po b/applications/luci-app-transmission/po/sk/transmission.po index 4b4c3afd9a..787083ee1e 100644 --- a/applications/luci-app-transmission/po/sk/transmission.po +++ b/applications/luci-app-transmission/po/sk/transmission.po @@ -56,6 +56,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/sv/transmission.po b/applications/luci-app-transmission/po/sv/transmission.po index 324bdab033..7cad76a542 100644 --- a/applications/luci-app-transmission/po/sv/transmission.po +++ b/applications/luci-app-transmission/po/sv/transmission.po @@ -57,6 +57,9 @@ msgstr "Storlek på cache i MB" msgid "Config file directory" msgstr "Ställ in fil-mapp" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "DHT aktiverat" diff --git a/applications/luci-app-transmission/po/templates/transmission.pot b/applications/luci-app-transmission/po/templates/transmission.pot index 5892abcad1..54658683f7 100644 --- a/applications/luci-app-transmission/po/templates/transmission.pot +++ b/applications/luci-app-transmission/po/templates/transmission.pot @@ -49,6 +49,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/tr/transmission.po b/applications/luci-app-transmission/po/tr/transmission.po index 5a4df01496..e6f9fd5d63 100644 --- a/applications/luci-app-transmission/po/tr/transmission.po +++ b/applications/luci-app-transmission/po/tr/transmission.po @@ -56,6 +56,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/uk/transmission.po b/applications/luci-app-transmission/po/uk/transmission.po index 1736934420..f3c01697f0 100644 --- a/applications/luci-app-transmission/po/uk/transmission.po +++ b/applications/luci-app-transmission/po/uk/transmission.po @@ -62,6 +62,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/vi/transmission.po b/applications/luci-app-transmission/po/vi/transmission.po index 3125fc2751..2b6f6247e0 100644 --- a/applications/luci-app-transmission/po/vi/transmission.po +++ b/applications/luci-app-transmission/po/vi/transmission.po @@ -46,6 +46,9 @@ msgstr "" msgid "Config file directory" msgstr "" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "" diff --git a/applications/luci-app-transmission/po/zh-cn/transmission.po b/applications/luci-app-transmission/po/zh-cn/transmission.po index f4dba62591..81280cdcda 100644 --- a/applications/luci-app-transmission/po/zh-cn/transmission.po +++ b/applications/luci-app-transmission/po/zh-cn/transmission.po @@ -64,6 +64,9 @@ msgstr "缓存大小(MB)" msgid "Config file directory" msgstr "配置文件的目录" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "启用 DHT" diff --git a/applications/luci-app-transmission/po/zh-tw/transmission.po b/applications/luci-app-transmission/po/zh-tw/transmission.po index 304bfdad1e..6edf3b6d22 100644 --- a/applications/luci-app-transmission/po/zh-tw/transmission.po +++ b/applications/luci-app-transmission/po/zh-tw/transmission.po @@ -64,6 +64,9 @@ msgstr "快取大小(MB)" msgid "Config file directory" msgstr "配置檔案的目錄" +msgid "Custom WEB UI directory" +msgstr "" + msgid "DHT enabled" msgstr "啟用 DHT" diff --git a/applications/luci-app-travelmate/po/ja/travelmate.po b/applications/luci-app-travelmate/po/ja/travelmate.po index f1d1220b7c..f608a2aa9a 100644 --- a/applications/luci-app-travelmate/po/ja/travelmate.po +++ b/applications/luci-app-travelmate/po/ja/travelmate.po @@ -12,6 +12,9 @@ msgstr "" "Plural-Forms: nplurals=1; plural=0;\n" "Language: ja\n" +msgid "Action" +msgstr "" + msgid "Add Uplink" msgstr "アップリンクの追加" @@ -122,6 +125,9 @@ msgstr "暗号化" msgid "Extra options" msgstr "拡張オプション" +msgid "Faulty Stations" +msgstr "" + msgid "Find and join network on" msgstr "ネットワークの検索と参加:" @@ -169,8 +175,11 @@ msgstr "インターフェース タイムアウト" msgid "Interface Wizard" msgstr "インターフェース ウィザード" -msgid "Last rundate" -msgstr "最終実行日時" +msgid "Last Run" +msgstr "" + +msgid "Loading" +msgstr "" msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -225,12 +234,8 @@ msgstr "秘密鍵へのパス" msgid "" "Provides an overview of all configured uplinks for the travelmate interface " "(%s). You can edit, delete or re-order existing uplinks or scan for a new " -"one. The currently used uplink is emphasized in blue." +"one. The currently used uplink is emphasized in blue, faulty stations in red." msgstr "" -"Travelmate 用インターフェース(%s)に設定済みの全アップリンクの一覧です。既存" -"のアップリンクの編集や削除、並べ替えを行ったり、スキャンを行って新規アップリ" -"ンクを追加することができます。現在使用されているアップリンクは、青色で強調さ" -"れます。" msgid "QR-Codes" msgstr "QR-コード" @@ -241,6 +246,12 @@ msgstr "無線の選択" msgid "Repeat scan" msgstr "再スキャン" +msgid "Restart" +msgstr "" + +msgid "Restart Travelmate" +msgstr "" + msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." msgstr "Travelmate が指定された無線に接続するよう制御します。(例: 'radio0')" @@ -268,21 +279,21 @@ msgstr "シグナル品質閾値" msgid "Signal strength" msgstr "信号強度" -msgid "Station ID (SSID/BSSID)" -msgstr "ステーション ID (SSID / BSSID)" +msgid "Station ID (RADIO/SSID/BSSID)" +msgstr "" msgid "Station Interface" msgstr "ステーション インターフェース" -msgid "Station Radio" -msgstr "ステーション電波" - msgid "" "The BSSID information '%s' is optional and only required for hidden networks" msgstr "" "BSSID 情報 '%s' はオプションであり、ステルス化されたネットワークにのみ必要で" "す。" +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" + msgid "" "This form allows you to modify the content of the main firewall " "configuration file (/etc/config/firewall)." @@ -311,22 +322,12 @@ msgstr "" "このフォームでは、無線 設定ファイル (/etc/config/wireless) の内容を変更するこ" "とができます。" -msgid "" -"This form shows the syslog output, pre-filtered for travelmate related " -"messages only." -msgstr "" -"このフォームには、システムログ内の Travelmate に関するメッセージのみが表示さ" -"れます。" - msgid "This step has only to be done once." msgstr "この手順は、一度だけ実行される必要があります。" msgid "Travelmate" msgstr "Travelmate" -msgid "Travelmate Logfile" -msgstr "Travelmate ログファイル" - msgid "Travelmate Status (Quality)" msgstr "Travelmate ステータス(品質)" @@ -381,14 +382,46 @@ msgstr "無線スキャン" msgid "Wireless Stations" msgstr "無線ステーション" -msgid "add it to the wan zone of the firewall.<br />" -msgstr "ファイアウォールの wan ゾーンに追加します。<br />" +msgid "add it to the wan zone of the firewall." +msgstr "" msgid "hidden" msgstr "(ステルス)" -msgid "n/a" -msgstr "利用不可" +#~ msgid "Last rundate" +#~ msgstr "最終実行日時" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, delete or re-order existing uplinks or scan " +#~ "for a new one. The currently used uplink is emphasized in blue." +#~ msgstr "" +#~ "Travelmate 用インターフェース(%s)に設定済みの全アップリンクの一覧です。" +#~ "既存のアップリンクの編集や削除、並べ替えを行ったり、スキャンを行って新規" +#~ "アップリンクを追加することができます。現在使用されているアップリンクは、青" +#~ "色で強調されます。" + +#~ msgid "Station ID (SSID/BSSID)" +#~ msgstr "ステーション ID (SSID / BSSID)" + +#~ msgid "Station Radio" +#~ msgstr "ステーション電波" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for travelmate related " +#~ "messages only." +#~ msgstr "" +#~ "このフォームには、システムログ内の Travelmate に関するメッセージのみが表示" +#~ "されます。" + +#~ msgid "Travelmate Logfile" +#~ msgstr "Travelmate ログファイル" + +#~ msgid "add it to the wan zone of the firewall.<br />" +#~ msgstr "ファイアウォールの wan ゾーンに追加します。<br />" + +#~ msgid "n/a" +#~ msgstr "利用不可" #~ msgid "Actions" #~ msgstr "操作" diff --git a/applications/luci-app-travelmate/po/pt-br/travelmate.po b/applications/luci-app-travelmate/po/pt-br/travelmate.po index 2bed677d35..2655b7ca11 100644 --- a/applications/luci-app-travelmate/po/pt-br/travelmate.po +++ b/applications/luci-app-travelmate/po/pt-br/travelmate.po @@ -12,6 +12,9 @@ msgstr "" "Plural-Forms: nplurals=2; plural=(n > 1);\n" "Language: pt_BR\n" +msgid "Action" +msgstr "" + msgid "Add Uplink" msgstr "" @@ -116,6 +119,9 @@ msgstr "" msgid "Extra options" msgstr "Opções adicionais" +msgid "Faulty Stations" +msgstr "" + msgid "Find and join network on" msgstr "" @@ -158,7 +164,10 @@ msgstr "" msgid "Interface Wizard" msgstr "" -msgid "Last rundate" +msgid "Last Run" +msgstr "" + +msgid "Loading" msgstr "" msgid "" @@ -212,7 +221,7 @@ msgstr "" msgid "" "Provides an overview of all configured uplinks for the travelmate interface " "(%s). You can edit, delete or re-order existing uplinks or scan for a new " -"one. The currently used uplink is emphasized in blue." +"one. The currently used uplink is emphasized in blue, faulty stations in red." msgstr "" msgid "QR-Codes" @@ -224,6 +233,12 @@ msgstr "" msgid "Repeat scan" msgstr "" +msgid "Restart" +msgstr "" + +msgid "Restart Travelmate" +msgstr "" + msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." msgstr "" @@ -251,19 +266,19 @@ msgstr "" msgid "Signal strength" msgstr "" -msgid "Station ID (SSID/BSSID)" +msgid "Station ID (RADIO/SSID/BSSID)" msgstr "" msgid "Station Interface" msgstr "" -msgid "Station Radio" -msgstr "" - msgid "" "The BSSID information '%s' is optional and only required for hidden networks" msgstr "" +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" + msgid "" "This form allows you to modify the content of the main firewall " "configuration file (/etc/config/firewall)." @@ -284,20 +299,12 @@ msgid "" "configuration file (/etc/config/wireless)." msgstr "" -msgid "" -"This form shows the syslog output, pre-filtered for travelmate related " -"messages only." -msgstr "" - msgid "This step has only to be done once." msgstr "" msgid "Travelmate" msgstr "Travelmate" -msgid "Travelmate Logfile" -msgstr "" - msgid "Travelmate Status (Quality)" msgstr "" @@ -352,15 +359,12 @@ msgstr "" msgid "Wireless Stations" msgstr "" -msgid "add it to the wan zone of the firewall.<br />" +msgid "add it to the wan zone of the firewall." msgstr "" msgid "hidden" msgstr "" -msgid "n/a" -msgstr "" - #~ msgid "" #~ "Brief advice: Create a wwan interface, configure it to use dhcp and add " #~ "it to the wan zone in firewall. Create the wifi interfaces to be used " diff --git a/applications/luci-app-travelmate/po/ru/travelmate.po b/applications/luci-app-travelmate/po/ru/travelmate.po index d3dbd24752..b97e76dd05 100644 --- a/applications/luci-app-travelmate/po/ru/travelmate.po +++ b/applications/luci-app-travelmate/po/ru/travelmate.po @@ -15,6 +15,9 @@ msgstr "" "Project-Info: Это технический перевод, не дословный. Главное-удобный русский " "интерфейс, все проверялось в графическом режиме, совместим с другими apps\n" +msgid "Action" +msgstr "" + msgid "Add Uplink" msgstr "Подключение к сети" @@ -121,6 +124,9 @@ msgstr "Шифрование" msgid "Extra options" msgstr "Дополнительные настройки" +msgid "Faulty Stations" +msgstr "" + msgid "Find and join network on" msgstr "Найти сеть для подключения используя" @@ -165,8 +171,11 @@ msgstr "Временная задержка интерфейса" msgid "Interface Wizard" msgstr "Помощник настройки интерфейса" -msgid "Last rundate" -msgstr "Дата последнего запуска" +msgid "Last Run" +msgstr "" + +msgid "Loading" +msgstr "" msgid "" "Minimum signal quality threshold as percent for conditional uplink (dis-) " @@ -221,12 +230,8 @@ msgstr "Путь к Приватному ключу" msgid "" "Provides an overview of all configured uplinks for the travelmate interface " "(%s). You can edit, delete or re-order existing uplinks or scan for a new " -"one. The currently used uplink is emphasized in blue." +"one. The currently used uplink is emphasized in blue, faulty stations in red." msgstr "" -"Общие сведения обо всех настроенных внешних сетевых соединениях интерфейса " -"TravelMate (%s).<br />Вы можете редактировать, удалять или пере " -"упорядочивать существующий список внешних сетей или выполнять их поиск.<br /" -">Используемое сетевое соединение выделено синим цветом." msgid "QR-Codes" msgstr "" @@ -237,6 +242,12 @@ msgstr "Выбор Wi-Fi устройства" msgid "Repeat scan" msgstr "Повторить поиск" +msgid "Restart" +msgstr "" + +msgid "Restart Travelmate" +msgstr "" + msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." msgstr "Выделить TravelMate-у конкретное Wi-Fi устройство, например 'radio0'." @@ -264,19 +275,19 @@ msgstr "" msgid "Signal strength" msgstr "Мощность сигнала" -msgid "Station ID (SSID/BSSID)" -msgstr "ID (SSID/BSSID) клиента" +msgid "Station ID (RADIO/SSID/BSSID)" +msgstr "" msgid "Station Interface" msgstr "Интерфейс клиента" -msgid "Station Radio" -msgstr "Wi-Fi устройство клиента" - msgid "" "The BSSID information '%s' is optional and only required for hidden networks" msgstr "" +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" + msgid "" "This form allows you to modify the content of the main firewall " "configuration file (/etc/config/firewall)." @@ -305,22 +316,12 @@ msgstr "" "Страница настройки беспроводных соединений, изменение содержимого config " "файла wireless настройки беспроводных сетей (/etc/config/wireless)." -msgid "" -"This form shows the syslog output, pre-filtered for travelmate related " -"messages only." -msgstr "" -"Страница просмотра системного журнала, показаны только события связанные с " -"работой утилиты TravelMate." - msgid "This step has only to be done once." msgstr "" msgid "Travelmate" msgstr "TravelMate" -msgid "Travelmate Logfile" -msgstr "Системный журнал TravelMate" - msgid "Travelmate Status (Quality)" msgstr "" @@ -375,14 +376,43 @@ msgstr "Найденные точки доступа Wi-Fi" msgid "Wireless Stations" msgstr "Клиенты беспроводной сети" -msgid "add it to the wan zone of the firewall.<br />" +msgid "add it to the wan zone of the firewall." msgstr "" msgid "hidden" msgstr "скрытый" -msgid "n/a" -msgstr "нет данных" +#~ msgid "Last rundate" +#~ msgstr "Дата последнего запуска" + +#~ msgid "" +#~ "Provides an overview of all configured uplinks for the travelmate " +#~ "interface (%s). You can edit, delete or re-order existing uplinks or scan " +#~ "for a new one. The currently used uplink is emphasized in blue." +#~ msgstr "" +#~ "Общие сведения обо всех настроенных внешних сетевых соединениях " +#~ "интерфейса TravelMate (%s).<br />Вы можете редактировать, удалять или " +#~ "пере упорядочивать существующий список внешних сетей или выполнять их " +#~ "поиск.<br />Используемое сетевое соединение выделено синим цветом." + +#~ msgid "Station ID (SSID/BSSID)" +#~ msgstr "ID (SSID/BSSID) клиента" + +#~ msgid "Station Radio" +#~ msgstr "Wi-Fi устройство клиента" + +#~ msgid "" +#~ "This form shows the syslog output, pre-filtered for travelmate related " +#~ "messages only." +#~ msgstr "" +#~ "Страница просмотра системного журнала, показаны только события связанные " +#~ "с работой утилиты TravelMate." + +#~ msgid "Travelmate Logfile" +#~ msgstr "Системный журнал TravelMate" + +#~ msgid "n/a" +#~ msgstr "нет данных" #~ msgid "Actions" #~ msgstr "Действия" diff --git a/applications/luci-app-travelmate/po/templates/travelmate.pot b/applications/luci-app-travelmate/po/templates/travelmate.pot index b3e80e3c96..b8c235ff48 100644 --- a/applications/luci-app-travelmate/po/templates/travelmate.pot +++ b/applications/luci-app-travelmate/po/templates/travelmate.pot @@ -1,6 +1,9 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" +msgid "Action" +msgstr "" + msgid "Add Uplink" msgstr "" @@ -105,6 +108,9 @@ msgstr "" msgid "Extra options" msgstr "" +msgid "Faulty Stations" +msgstr "" + msgid "Find and join network on" msgstr "" @@ -147,7 +153,10 @@ msgstr "" msgid "Interface Wizard" msgstr "" -msgid "Last rundate" +msgid "Last Run" +msgstr "" + +msgid "Loading" msgstr "" msgid "" @@ -201,7 +210,7 @@ msgstr "" msgid "" "Provides an overview of all configured uplinks for the travelmate interface " "(%s). You can edit, delete or re-order existing uplinks or scan for a new " -"one. The currently used uplink is emphasized in blue." +"one. The currently used uplink is emphasized in blue, faulty stations in red." msgstr "" msgid "QR-Codes" @@ -213,6 +222,12 @@ msgstr "" msgid "Repeat scan" msgstr "" +msgid "Restart" +msgstr "" + +msgid "Restart Travelmate" +msgstr "" + msgid "Restrict travelmate to a dedicated radio, e.g. 'radio0'." msgstr "" @@ -240,19 +255,19 @@ msgstr "" msgid "Signal strength" msgstr "" -msgid "Station ID (SSID/BSSID)" +msgid "Station ID (RADIO/SSID/BSSID)" msgstr "" msgid "Station Interface" msgstr "" -msgid "Station Radio" -msgstr "" - msgid "" "The BSSID information '%s' is optional and only required for hidden networks" msgstr "" +msgid "The syslog output, pre-filtered for travelmate related messages only." +msgstr "" + msgid "" "This form allows you to modify the content of the main firewall " "configuration file (/etc/config/firewall)." @@ -273,20 +288,12 @@ msgid "" "configuration file (/etc/config/wireless)." msgstr "" -msgid "" -"This form shows the syslog output, pre-filtered for travelmate related " -"messages only." -msgstr "" - msgid "This step has only to be done once." msgstr "" msgid "Travelmate" msgstr "" -msgid "Travelmate Logfile" -msgstr "" - msgid "Travelmate Status (Quality)" msgstr "" @@ -341,11 +348,8 @@ msgstr "" msgid "Wireless Stations" msgstr "" -msgid "add it to the wan zone of the firewall.<br />" +msgid "add it to the wan zone of the firewall." msgstr "" msgid "hidden" msgstr "" - -msgid "n/a" -msgstr "" diff --git a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua index df2164f8a6..60d0477d53 100644 --- a/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua +++ b/applications/luci-app-unbound/luasrc/model/cbi/unbound/configure.lua @@ -210,10 +210,11 @@ if (valman == "0") then pro = s1:taboption("resource", ListValue, "protocol", translate("Recursion Protocol"), - translate("Chose the protocol recursion queries leave on")) + translate("Chose the IP versions used upstream and downstream")) pro:value("default", translate("Default")) pro:value("ip4_only", translate("IP4 Only")) - pro:value("ip6_only", translate("IP6 Only")) + pro:value("ip6_local", translate("IP4 All and IP6 Local")) + pro:value("ip6_only", translate("IP6 Only*")) pro:value("ip6_prefer", translate("IP6 Preferred")) pro:value("mixed", translate("IP4 and IP6")) pro.rmempty = false |