├── root └── usr │ ├── share │ ├── luci │ │ └── menu.d │ │ │ └── luci-app-smartdns.json │ └── rpcd │ │ └── acl.d │ │ └── luci-app-smartdns.json │ └── libexec │ └── smartdns-call ├── Makefile ├── ReadMe.md ├── htdocs └── luci-static │ └── resources │ └── view │ └── smartdns │ └── log.js └── po ├── templates └── smartdns.pot ├── zh_Hans └── smartdns.po ├── zh_Hant └── smartdns.po ├── de └── smartdns.po └── pt-BR └── smartdns.po /root/usr/share/luci/menu.d/luci-app-smartdns.json: -------------------------------------------------------------------------------- 1 | { 2 | "admin/services/smartdns": { 3 | "title": "SmartDNS", 4 | "order": 60, 5 | "action": { 6 | "type": "view", 7 | "path": "smartdns/smartdns" 8 | }, 9 | "depends": { 10 | "acl": [ "luci-app-smartdns" ], 11 | "uci": { "smartdns": true } 12 | } 13 | }, 14 | 15 | "admin/services/smartdns/log": { 16 | "action": { 17 | "type": "view", 18 | "path": "smartdns/log" 19 | } 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /root/usr/libexec/smartdns-call: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | # 3 | # Copyright 2018-2025 Nick Peng 4 | # Licensed to the public under the GPL V3 License. 5 | 6 | action=$1 7 | shift 8 | 9 | log_file="$(uci -q get smartdns.@smartdns[0].log_file)" 10 | list_file="${log_file:-/var/log/smartdns/smartdns.log}" 11 | 12 | case "$action" in 13 | tail) 14 | if [ ! -e "$list_file" ]; then 15 | echo "Log file does not exist." 16 | fi 17 | # read log 18 | tail -n 5000 "$list_file" 19 | ;; 20 | clear_log) 21 | # clear log 22 | > $list_file 23 | ;; 24 | esac 25 | -------------------------------------------------------------------------------- /root/usr/share/rpcd/acl.d/luci-app-smartdns.json: -------------------------------------------------------------------------------- 1 | { 2 | "luci-app-smartdns": { 3 | "description": "Grant access to LuCI app smartdns", 4 | "read": { 5 | "cgi-io": [ "exec" ], 6 | "file": { 7 | "/etc/smartdns/*": [ "read" ], 8 | "/usr/libexec/smartdns-call tail": [ "exec" ], 9 | "/usr/libexec/smartdns-call clear_log": [ "exec" ] 10 | }, 11 | "ubus": { 12 | "service": [ "list" ] 13 | }, 14 | "uci": [ "smartdns" ] 15 | }, 16 | "write": { 17 | "file": { 18 | "/etc/smartdns/*": [ "write" ], 19 | "/etc/init.d/smartdns restart": [ "exec" ], 20 | "/etc/init.d/smartdns updatefiles": [ "exec" ] 21 | }, 22 | "uci": [ "smartdns" ] 23 | } 24 | } 25 | } 26 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | # 2 | # Copyright 2018-2025 Nick Peng 3 | # Licensed to the public under the GPL V3 License. 4 | 5 | include $(TOPDIR)/rules.mk 6 | 7 | PKG_NAME:=luci-app-smartdns 8 | PKG_VERSION:=1.2025.47.2 9 | PKG_RELEASE:=2 10 | 11 | PKG_LICENSE:=GPL-3.0-or-later 12 | PKG_MAINTAINER:=Nick Peng 13 | 14 | LUCI_TITLE:=LuCI for smartdns 15 | LUCI_DESCRIPTION:=Provides Luci for smartdns 16 | LUCI_PKGARCH:=all 17 | LUCI_DEPENDS:=+luci-base +smartdns \ 18 | +PACKAGE_$(PKG_NAME)_INCLUDE_smartdns_ui:smartdns-ui 19 | 20 | include $(INCLUDE_DIR)/package.mk 21 | 22 | define Package/$(PKG_NAME)/config 23 | # shown in make menuconfig 24 | help 25 | $(LUCI_TITLE) 26 | Version: $(PKG_VERSION)-$(PKG_RELEASE) 27 | 28 | config PACKAGE_$(PKG_NAME)_INCLUDE_smartdns_ui 29 | bool "Include smartdns-ui" 30 | default n 31 | endef 32 | 33 | include $(TOPDIR)/feeds/luci/luci.mk 34 | 35 | # call BuildPackage - OpenWrt buildroot signature 36 | -------------------------------------------------------------------------------- /ReadMe.md: -------------------------------------------------------------------------------- 1 | # luci-app-smartdns 2 | 3 | 此仓库为smartdns独立仓库,为单独编译使用, 在安装此界面前,需要先安装smartdns进程编译脚本。 4 | 请先安装[openwrt-smartdns](https://github.com/pymumu/openwrt-smartdns) 5 | 6 | 仓库分为两个分支 7 | 8 | 1. master分支为openwrt 19.07之后版本使用,此版本基于javascript。 9 | 2. lede分支为lede分支使用, 此版本基于lua。 10 | 11 | 使用时,请使用配套的版本。 12 | 13 | ## 使用方式 14 | 15 | 如下命令操作路径为openwrt源代码所在目录。 16 | 17 | ### 复制仓库中的文件到如下目录,并执行安装 18 | 19 | ```shell 20 | feeds/luci/applications/luci-app-smartdns/ 21 | ./scripts/feeds install luci -a 22 | ``` 23 | 24 | > lede请下载lede分支 25 | 26 | ### 执行openwrt配置, 选中luci-app-smartdns 27 | 28 | * 选择路径: 29 | 30 | LuCI > 3. Applications > luci-app-smartdns 31 | 32 | ```shell 33 | make menuconfig 34 | ``` 35 | 36 | * 编译模式: 37 | 38 | 1. 若编译独立软件包,选择编译模式为`M` 39 | 1. 若编译到固件中,选择编译模式为`*` 40 | 41 | ### 执行openwrt编译 42 | 43 | 仅编译软件包: 44 | 45 | ```shell 46 | make package/feeds/luci/applications/luci-app-smartdns/compile 47 | ``` 48 | 49 | 编译固件以及软件包。 50 | 51 | ```shell 52 | make -j8 53 | ``` 54 | 55 | ## 懒人脚本 56 | 57 | 可执行如下命令,一次性下载smartdns以及luci-app-smartdns。 58 | 下列命令可采用复制粘贴的方式执行。 59 | 60 | 注意事项: 61 | 62 | 1. 执行下列命令时,需要确保当前路径为openwrt代码路径。 63 | 1. 确保执行过./scripts/feeds进行更新。 64 | 1. 若是LEDE,请更换`LUCIBRANCH`变量为 65 | 66 | ```shell 67 | LUCIBRANCH="lede" 68 | ``` 69 | 70 | 批量命令: 71 | 72 | ```shell 73 | WORKINGDIR="`pwd`/feeds/packages/net/smartdns" 74 | mkdir $WORKINGDIR -p 75 | rm $WORKINGDIR/* -fr 76 | wget https://github.com/pymumu/openwrt-smartdns/archive/master.zip -O $WORKINGDIR/master.zip 77 | unzip $WORKINGDIR/master.zip -d $WORKINGDIR 78 | mv $WORKINGDIR/openwrt-smartdns-master/* $WORKINGDIR/ 79 | rmdir $WORKINGDIR/openwrt-smartdns-master 80 | rm $WORKINGDIR/master.zip 81 | 82 | LUCIBRANCH="master" #更换此变量 83 | WORKINGDIR="`pwd`/feeds/luci/applications/luci-app-smartdns" 84 | mkdir $WORKINGDIR -p 85 | rm $WORKINGDIR/* -fr 86 | wget https://github.com/pymumu/luci-app-smartdns/archive/${LUCIBRANCH}.zip -O $WORKINGDIR/${LUCIBRANCH}.zip 87 | unzip $WORKINGDIR/${LUCIBRANCH}.zip -d $WORKINGDIR 88 | mv $WORKINGDIR/luci-app-smartdns-${LUCIBRANCH}/* $WORKINGDIR/ 89 | rmdir $WORKINGDIR/luci-app-smartdns-${LUCIBRANCH} 90 | rm $WORKINGDIR/${LUCIBRANCH}.zip 91 | 92 | ./scripts/feeds install -a 93 | make menuconfig 94 | 95 | ``` 96 | 97 | 下载完成后,执行配置编译。 98 | 99 | ## 注意事项 100 | 101 | 如果安装完成后,未生效,可以重启设备,清空浏览器缓存,或用安全模式浏览。 -------------------------------------------------------------------------------- /htdocs/luci-static/resources/view/smartdns/log.js: -------------------------------------------------------------------------------- 1 | /************************************************************************* 2 | * 3 | * Copyright (C) 2018-2025 Ruilin Peng (Nick) . 4 | * 5 | * smartdns is free software: you can redistribute it and/or modify 6 | * it under the terms of the GNU General Public License as published by 7 | * the Free Software Foundation, either version 3 of the License, or 8 | * (at your option) any later version. 9 | * 10 | * smartdns is distributed in the hope that it will be useful, 11 | * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 | * GNU General Public License for more details. 14 | * 15 | * You should have received a copy of the GNU General Public License 16 | * along with this program. If not, see . 17 | */ 18 | 19 | 'use strict'; 20 | 'require dom'; 21 | 'require fs'; 22 | 'require poll'; 23 | 'require uci'; 24 | 'require view'; 25 | 'require form'; 26 | 'require ui'; 27 | 28 | return view.extend({ 29 | render: function () { 30 | var css = ` 31 | #log_textarea { 32 | margin-top: 10px; 33 | } 34 | #log_textarea pre { 35 | background-color: #f7f7f7; 36 | color: #333; 37 | padding: 10px; 38 | border: 1px solid #ccc; 39 | border-radius: 4px; 40 | font-family: Consolas, Menlo, Monaco, monospace; 41 | font-size: 14px; 42 | line-height: 1.5; 43 | white-space: pre-wrap; 44 | word-wrap: break-word; 45 | overflow-y: auto; 46 | max-height: 650px; 47 | } 48 | #.description { 49 | background-color: #33ccff; 50 | } 51 | .cbi-button-danger { 52 | background-color: #fff; 53 | color: #f00; 54 | border: 1px solid #f00; 55 | border-radius: 4px; 56 | padding: 4px 8px; 57 | font-size: 14px; 58 | cursor: pointer; 59 | margin-top: 10px; 60 | } 61 | .cbi-button-danger:hover { 62 | background-color: #f00; 63 | color: #fff; 64 | } 65 | .cbi-section small { 66 | margin-left: 10px; 67 | } 68 | .cbi-section .cbi-section-actions { 69 | margin-top: 10px; 70 | } 71 | .cbi-section .cbi-section-actions-right { 72 | text-align: right; 73 | } 74 | `; 75 | 76 | 77 | var log_textarea = E('div', { 'id': 'log_textarea' }, 78 | E('img', { 79 | 'src': L.resource(['icons/loading.gif']), 80 | 'alt': _('Loading...'), 81 | 'style': 'vertical-align:middle' 82 | }, _('Collecting data ...')) 83 | ); 84 | 85 | var clear_log_button = E('th', {}, [ 86 | E('button', { 87 | 'class': 'cbi-button cbi-button-remove', 88 | 'click': function (ev) { 89 | ev.preventDefault(); 90 | var button = ev.target; 91 | button.disabled = true; 92 | button.textContent = _('Clear Logs...'); 93 | fs.exec('/usr/libexec/smartdns-call', ['clear_log']) 94 | .then(function () { 95 | button.textContent = _('Logs cleared successfully!'); 96 | setTimeout(function () { 97 | button.disabled = false; 98 | button.textContent = _('Clear Logs'); 99 | }, 5000); 100 | // Immediately refresh log display box 101 | var log = E('pre', { 'wrap': 'pre' }, [_('Log is clean.')]); 102 | dom.content(log_textarea, log); 103 | }) 104 | .catch(function () { 105 | button.textContent = _('Failed to clear log.'); 106 | setTimeout(function () { 107 | button.disabled = false; 108 | button.textContent = _('Clear Logs'); 109 | }, 5000); 110 | }); 111 | } 112 | }, _('Clear Logs')) 113 | ]); 114 | 115 | 116 | poll.add(L.bind(function () { 117 | return fs.exec('/usr/libexec/smartdns-call', ['tail']) 118 | .then(function (res) { 119 | var log = E('pre', { 'wrap': 'pre' }, [res.stdout.trim() || _('Log is clean.')]); 120 | 121 | dom.content(log_textarea, log); 122 | log.scrollTop = log.scrollHeight; 123 | }).catch(function (err) { 124 | var log; 125 | 126 | if (err.toString().includes('NotFoundError')) { 127 | log = E('pre', { 'wrap': 'pre' }, [_('Log file does not exist.')]); 128 | } else { 129 | log = E('pre', { 'wrap': 'pre' }, [_('Unknown error: %s').format(err)]); 130 | } 131 | 132 | dom.content(log_textarea, log); 133 | }); 134 | })); 135 | 136 | var back_smartdns_button = E('th', {}, [ 137 | E('button', { 138 | 'class': 'cbi-button cbi-button-apply', 139 | 'click': ui.createHandlerFn(this, function () { 140 | window.location.href = "/cgi-bin/luci/admin/services/smartdns" 141 | }) 142 | }, _('Back SmartDNS')) 143 | ]); 144 | 145 | return E('div', { 'class': 'cbi-map' }, [ 146 | E('style', [css]), 147 | E('div', { 'class': 'cbi-section' }, [ 148 | clear_log_button, 149 | back_smartdns_button, 150 | log_textarea, 151 | E('small', {}, _('Refresh every %s seconds.').format(L.env.pollinterval)), 152 | E('div', { 'class': 'cbi-section-actions cbi-section-actions-right' }) 153 | ]) 154 | ]); 155 | }, 156 | 157 | handleSaveApply: null, 158 | handleSave: null, 159 | handleReset: null 160 | }); 161 | -------------------------------------------------------------------------------- /po/templates/smartdns.pot: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "Content-Type: text/plain; charset=UTF-8" 3 | 4 | #: log.js:80 5 | msgid "Loading..." 6 | msgstr "" 7 | 8 | #: log.js:82 smartdns.js:146 9 | msgid "Collecting data ..." 10 | msgstr "" 11 | 12 | #: log.js:92 13 | msgid "Clear Logs..." 14 | msgstr "" 15 | 16 | #: log.js:95 17 | msgid "Logs cleared successfully!" 18 | msgstr "" 19 | 20 | #: log.js:98 log.js:108 log.js:112 21 | msgid "Clear Logs" 22 | msgstr "" 23 | 24 | #: log.js:101 log.js:119 25 | msgid "Log is clean." 26 | msgstr "" 27 | 28 | #: log.js:105 29 | msgid "Failed to clear log." 30 | msgstr "" 31 | 32 | #: log.js:127 33 | msgid "Log file does not exist." 34 | msgstr "" 35 | 36 | #: log.js:129 37 | #, javascript-format 38 | msgid "Unknown error: %s" 39 | msgstr "" 40 | 41 | #: log.js:142 42 | msgid "Back SmartDNS" 43 | msgstr "" 44 | 45 | #: log.js:151 46 | #, javascript-format 47 | msgid "Refresh every %s seconds." 48 | msgstr "" 49 | 50 | #: smartdns.js:68 51 | msgid "RUNNING" 52 | msgstr "" 53 | 54 | #: smartdns.js:74 55 | msgid "Open the WebUI" 56 | msgstr "" 57 | 58 | #: smartdns.js:77 59 | msgid "NOT RUNNING" 60 | msgstr "" 61 | 62 | #: smartdns.js:79 63 | msgid "Please check the system logs and check if the configuration is valid." 64 | msgstr "" 65 | 66 | #: smartdns.js:91 67 | msgid "Dnsmasq Forwarded To Smartdns Failure" 68 | msgstr "" 69 | 70 | #: smartdns.js:120 71 | msgid "SmartDNS" 72 | msgstr "" 73 | 74 | #: smartdns.js:121 75 | msgid "SmartDNS Server" 76 | msgstr "" 77 | 78 | #: smartdns.js:122 79 | msgid "" 80 | "SmartDNS is a local high-performance DNS server, supports finding fastest " 81 | "IP, supports ad filtering, and supports avoiding DNS poisoning." 82 | msgstr "" 83 | 84 | #: smartdns.js:153 85 | msgid "Settings" 86 | msgstr "" 87 | 88 | #: smartdns.js:153 smartdns.js:156 smartdns.js:888 89 | msgid "General Settings" 90 | msgstr "" 91 | 92 | #: smartdns.js:157 smartdns.js:889 smartdns.js:1074 93 | msgid "Advanced Settings" 94 | msgstr "" 95 | 96 | #: smartdns.js:158 97 | msgid "Second Server Settings" 98 | msgstr "" 99 | 100 | #: smartdns.js:159 101 | msgid "DNS64 Server Settings" 102 | msgstr "" 103 | 104 | #: smartdns.js:160 105 | msgid "Download Files Setting" 106 | msgstr "" 107 | 108 | #: smartdns.js:160 109 | msgid "" 110 | "Download domain list files for domain-rule and include config files, please " 111 | "refresh the page after download to take effect." 112 | msgstr "" 113 | 114 | #: smartdns.js:161 115 | msgid "Proxy Server Settings" 116 | msgstr "" 117 | 118 | #: smartdns.js:162 119 | msgid "Custom Settings" 120 | msgstr "" 121 | 122 | #: smartdns.js:167 smartdns.js:535 smartdns.js:892 smartdns.js:1077 smartdns.js:1486 smartdns.js:1677 123 | msgid "Enable" 124 | msgstr "" 125 | 126 | #: smartdns.js:167 127 | msgid "Enable or disable smartdns server" 128 | msgstr "" 129 | 130 | #: smartdns.js:172 131 | msgid "Server Name" 132 | msgstr "" 133 | 134 | #: smartdns.js:172 135 | msgid "Smartdns server name" 136 | msgstr "" 137 | 138 | #: smartdns.js:178 smartdns.js:541 139 | msgid "Local Port" 140 | msgstr "" 141 | 142 | #: smartdns.js:179 143 | msgid "" 144 | "Smartdns local server port, smartdns will be automatically set as main dns " 145 | "when the port is 53." 146 | msgstr "" 147 | 148 | #: smartdns.js:186 149 | msgid "Automatically Set Dnsmasq" 150 | msgstr "" 151 | 152 | #: smartdns.js:186 153 | msgid "Automatically set as upstream of dnsmasq when port changes." 154 | msgstr "" 155 | 156 | #: smartdns.js:192 157 | msgid "Enable WebUI" 158 | msgstr "" 159 | 160 | #: smartdns.js:192 161 | msgid "Enable or disable smartdns webui plugin." 162 | msgstr "" 163 | 164 | #: smartdns.js:196 165 | msgid "WebUI Port" 166 | msgstr "" 167 | 168 | #: smartdns.js:196 169 | msgid "WebUI server port." 170 | msgstr "" 171 | 172 | #: smartdns.js:202 173 | msgid "WebUI Data Dir" 174 | msgstr "" 175 | 176 | #: smartdns.js:202 177 | msgid "Directory for storing the webui database." 178 | msgstr "" 179 | 180 | #: smartdns.js:208 181 | msgid "WebUI Log Retention" 182 | msgstr "" 183 | 184 | #: smartdns.js:208 185 | msgid "Number of days to retain webui logs." 186 | msgstr "" 187 | 188 | #: smartdns.js:219 smartdns.js:1139 smartdns.js:1309 smartdns.js:1543 189 | msgid "Speed Check Mode" 190 | msgstr "" 191 | 192 | #: smartdns.js:219 smartdns.js:1139 smartdns.js:1309 smartdns.js:1543 193 | msgid "Smartdns speed check mode." 194 | msgstr "" 195 | 196 | #: smartdns.js:222 smartdns.js:274 smartdns.js:806 smartdns.js:1142 smartdns.js:1312 smartdns.js:1365 smartdns.js:1539 smartdns.js:1547 197 | msgid "default" 198 | msgstr "" 199 | 200 | #: smartdns.js:229 smartdns.js:1149 smartdns.js:1319 smartdns.js:1527 smartdns.js:1554 201 | msgid "None" 202 | msgstr "" 203 | 204 | #: smartdns.js:250 smartdns.js:1170 smartdns.js:1340 smartdns.js:1575 205 | msgid "TCP port is empty" 206 | msgstr "" 207 | 208 | #: smartdns.js:258 smartdns.js:1178 smartdns.js:1348 smartdns.js:1583 209 | msgid "TCP SYN port is empty" 210 | msgstr "" 211 | 212 | #: smartdns.js:263 smartdns.js:1183 smartdns.js:1353 smartdns.js:1588 213 | msgid "Speed check mode is invalid." 214 | msgstr "" 215 | 216 | #: smartdns.js:270 217 | msgid "Response Mode" 218 | msgstr "" 219 | 220 | #: smartdns.js:271 221 | msgid "" 222 | "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " 223 | "return the fastest IP, Fastest Response: return the fastest DNS response." 224 | msgstr "" 225 | 226 | #: smartdns.js:275 227 | msgid "First Ping" 228 | msgstr "" 229 | 230 | #: smartdns.js:276 231 | msgid "Fastest IP" 232 | msgstr "" 233 | 234 | #: smartdns.js:277 235 | msgid "Fastest Response" 236 | msgstr "" 237 | 238 | #: smartdns.js:280 smartdns.js:548 239 | msgid "TCP Server" 240 | msgstr "" 241 | 242 | #: smartdns.js:280 smartdns.js:548 243 | msgid "Enable TCP DNS Server" 244 | msgstr "" 245 | 246 | #: smartdns.js:285 247 | msgid "DOT Server" 248 | msgstr "" 249 | 250 | #: smartdns.js:285 251 | msgid "Enable DOT DNS Server" 252 | msgstr "" 253 | 254 | #: smartdns.js:289 255 | msgid "DOT Server Port" 256 | msgstr "" 257 | 258 | #: smartdns.js:289 259 | msgid "Smartdns DOT server port." 260 | msgstr "" 261 | 262 | #: smartdns.js:297 263 | msgid "DOH Server" 264 | msgstr "" 265 | 266 | #: smartdns.js:297 267 | msgid "Enable DOH DNS Server" 268 | msgstr "" 269 | 270 | #: smartdns.js:301 271 | msgid "DOH Server Port" 272 | msgstr "" 273 | 274 | #: smartdns.js:301 275 | msgid "Smartdns DOH server port." 276 | msgstr "" 277 | 278 | #: smartdns.js:308 279 | msgid "Server Cert" 280 | msgstr "" 281 | 282 | #: smartdns.js:308 283 | msgid "Server certificate file path." 284 | msgstr "" 285 | 286 | #: smartdns.js:315 287 | msgid "Server Cert Key" 288 | msgstr "" 289 | 290 | #: smartdns.js:315 291 | msgid "Server certificate key file path." 292 | msgstr "" 293 | 294 | #: smartdns.js:322 295 | msgid "Server Cert Key Pass" 296 | msgstr "" 297 | 298 | #: smartdns.js:322 299 | msgid "Server certificate key file password." 300 | msgstr "" 301 | 302 | #: smartdns.js:329 303 | msgid "IPv6 Server" 304 | msgstr "" 305 | 306 | #: smartdns.js:329 307 | msgid "Enable IPv6 DNS Server" 308 | msgstr "" 309 | 310 | #: smartdns.js:334 311 | msgid "Bind Device" 312 | msgstr "" 313 | 314 | #: smartdns.js:334 315 | msgid "Listen only on the specified interfaces." 316 | msgstr "" 317 | 318 | #: smartdns.js:339 319 | msgid "Bind Device Name" 320 | msgstr "" 321 | 322 | #: smartdns.js:339 323 | msgid "Name of device name listen on." 324 | msgstr "" 325 | 326 | #: smartdns.js:345 smartdns.js:1190 smartdns.js:1360 smartdns.js:1534 327 | msgid "Dual-stack IP Selection" 328 | msgstr "" 329 | 330 | #: smartdns.js:346 smartdns.js:1191 smartdns.js:1361 smartdns.js:1535 331 | msgid "Enable IP selection between IPv4 and IPv6" 332 | msgstr "" 333 | 334 | #: smartdns.js:351 335 | msgid "Domain prefetch" 336 | msgstr "" 337 | 338 | #: smartdns.js:352 339 | msgid "Enable domain prefetch, accelerate domain response speed." 340 | msgstr "" 341 | 342 | #: smartdns.js:357 343 | msgid "Serve expired" 344 | msgstr "" 345 | 346 | #: smartdns.js:358 347 | msgid "" 348 | "Attempts to serve old responses from cache with a TTL of 0 in the response " 349 | "without waiting for the actual resolution to finish." 350 | msgstr "" 351 | 352 | #: smartdns.js:363 353 | msgid "Cache Size" 354 | msgstr "" 355 | 356 | #: smartdns.js:363 357 | msgid "DNS domain result cache size" 358 | msgstr "" 359 | 360 | #: smartdns.js:367 361 | msgid "Cache Persist" 362 | msgstr "" 363 | 364 | #: smartdns.js:367 365 | msgid "Write cache to disk on exit and load on startup." 366 | msgstr "" 367 | 368 | #: smartdns.js:372 369 | msgid "Resolve Local Hostnames" 370 | msgstr "" 371 | 372 | #: smartdns.js:372 373 | msgid "Resolve local hostnames by reading Dnsmasq lease file." 374 | msgstr "" 375 | 376 | #: smartdns.js:377 377 | msgid "mDNS Lookup" 378 | msgstr "" 379 | 380 | #: smartdns.js:377 381 | msgid "Resolve local network hostname via mDNS protocol." 382 | msgstr "" 383 | 384 | #: smartdns.js:382 smartdns.js:600 smartdns.js:1196 smartdns.js:1369 smartdns.js:1594 385 | msgid "Force AAAA SOA" 386 | msgstr "" 387 | 388 | #: smartdns.js:382 smartdns.js:600 smartdns.js:1196 smartdns.js:1369 smartdns.js:1594 389 | msgid "Force AAAA SOA." 390 | msgstr "" 391 | 392 | #: smartdns.js:387 smartdns.js:605 smartdns.js:1201 393 | msgid "Force HTTPS SOA" 394 | msgstr "" 395 | 396 | #: smartdns.js:387 smartdns.js:605 smartdns.js:1201 397 | msgid "Force HTTPS SOA." 398 | msgstr "" 399 | 400 | #: smartdns.js:392 smartdns.js:613 smartdns.js:1206 smartdns.js:1373 smartdns.js:1600 401 | msgid "IPset Name" 402 | msgstr "" 403 | 404 | #: smartdns.js:392 smartdns.js:613 smartdns.js:1206 smartdns.js:1373 smartdns.js:1600 405 | msgid "IPset name." 406 | msgstr "" 407 | 408 | #: smartdns.js:404 smartdns.js:425 smartdns.js:625 smartdns.js:1218 smartdns.js:1385 409 | msgid "ipset name format error, format: [#[4|6]:]ipsetname" 410 | msgstr "" 411 | 412 | #: smartdns.js:412 413 | msgid "No Speed IPset Name" 414 | msgstr "" 415 | 416 | #: smartdns.js:413 417 | msgid "Ipset name, Add domain result to ipset when speed check fails." 418 | msgstr "" 419 | 420 | #: smartdns.js:433 smartdns.js:632 smartdns.js:1226 smartdns.js:1392 smartdns.js:1606 421 | msgid "NFTset Name" 422 | msgstr "" 423 | 424 | #: smartdns.js:433 smartdns.js:632 smartdns.js:1226 smartdns.js:1392 smartdns.js:1606 425 | msgid "NFTset name, format: [#[4|6]:[family#table#set]]" 426 | msgstr "" 427 | 428 | #: smartdns.js:445 smartdns.js:466 smartdns.js:644 smartdns.js:1238 smartdns.js:1404 smartdns.js:1619 429 | msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" 430 | msgstr "" 431 | 432 | #: smartdns.js:453 433 | msgid "No Speed NFTset Name" 434 | msgstr "" 435 | 436 | #: smartdns.js:454 437 | msgid "" 438 | "Nftset name, Add domain result to nftset when speed check fails, format: " 439 | "[#[4|6]:[family#table#set]]" 440 | msgstr "" 441 | 442 | #: smartdns.js:474 443 | msgid "Domain TTL" 444 | msgstr "" 445 | 446 | #: smartdns.js:474 447 | msgid "TTL for all domain result." 448 | msgstr "" 449 | 450 | #: smartdns.js:478 451 | msgid "Domain TTL Min" 452 | msgstr "" 453 | 454 | #: smartdns.js:479 455 | msgid "Minimum TTL for all domain result." 456 | msgstr "" 457 | 458 | #: smartdns.js:486 459 | msgid "Domain TTL Max" 460 | msgstr "" 461 | 462 | #: smartdns.js:487 463 | msgid "Maximum TTL for all domain result." 464 | msgstr "" 465 | 466 | #: smartdns.js:491 467 | msgid "Reply Domain TTL Max" 468 | msgstr "" 469 | 470 | #: smartdns.js:492 471 | msgid "Reply maximum TTL for all domain result." 472 | msgstr "" 473 | 474 | #: smartdns.js:496 smartdns.js:652 smartdns.js:1060 475 | msgid "Additional Server Args" 476 | msgstr "" 477 | 478 | #: smartdns.js:497 smartdns.js:653 479 | msgid "" 480 | "Additional server args, refer to the help description of the bind option." 481 | msgstr "" 482 | 483 | #: smartdns.js:503 smartdns.js:1247 484 | msgid "Include Config Files
/etc/smartdns/conf.d" 485 | msgstr "" 486 | 487 | #: smartdns.js:504 smartdns.js:1248 488 | msgid "" 489 | "Include other config files from /etc/smartdns/conf.d or custom path, can be " 490 | "downloaded from the download page." 491 | msgstr "" 492 | 493 | #: smartdns.js:517 494 | msgid "Hosts File" 495 | msgstr "" 496 | 497 | #: smartdns.js:517 498 | msgid "Include hosts file." 499 | msgstr "" 500 | 501 | #: smartdns.js:536 502 | msgid "Enable or disable second DNS server." 503 | msgstr "" 504 | 505 | #: smartdns.js:541 506 | msgid "Smartdns local server port" 507 | msgstr "" 508 | 509 | #: smartdns.js:553 smartdns.js:928 smartdns.js:1114 smartdns.js:1284 smartdns.js:1494 510 | msgid "Server Group" 511 | msgstr "" 512 | 513 | #: smartdns.js:554 514 | msgid "Query DNS through specific dns server group, such as office, home." 515 | msgstr "" 516 | 517 | #: smartdns.js:560 518 | msgid "Skip Speed Check" 519 | msgstr "" 520 | 521 | #: smartdns.js:561 522 | msgid "Do not check speed." 523 | msgstr "" 524 | 525 | #: smartdns.js:566 526 | msgid "Skip Address Rules" 527 | msgstr "" 528 | 529 | #: smartdns.js:567 530 | msgid "Skip address rules." 531 | msgstr "" 532 | 533 | #: smartdns.js:572 534 | msgid "Skip Nameserver Rule" 535 | msgstr "" 536 | 537 | #: smartdns.js:573 538 | msgid "Skip nameserver rules." 539 | msgstr "" 540 | 541 | #: smartdns.js:578 542 | msgid "Skip Ipset Rule" 543 | msgstr "" 544 | 545 | #: smartdns.js:579 546 | msgid "Skip ipset rules." 547 | msgstr "" 548 | 549 | #: smartdns.js:584 550 | msgid "Skip SOA Address Rule" 551 | msgstr "" 552 | 553 | #: smartdns.js:585 554 | msgid "Skip SOA address rules." 555 | msgstr "" 556 | 557 | #: smartdns.js:589 558 | msgid "Skip Dualstack Selection" 559 | msgstr "" 560 | 561 | #: smartdns.js:590 562 | msgid "Skip Dualstack Selection." 563 | msgstr "" 564 | 565 | #: smartdns.js:595 566 | msgid "Skip Cache" 567 | msgstr "" 568 | 569 | #: smartdns.js:595 570 | msgid "Skip Cache." 571 | msgstr "" 572 | 573 | #: smartdns.js:609 574 | msgid "Skip IP Alias" 575 | msgstr "" 576 | 577 | #: smartdns.js:660 578 | msgid "DNS64" 579 | msgstr "" 580 | 581 | #: smartdns.js:668 582 | msgid "Enable Auto Update" 583 | msgstr "" 584 | 585 | #: smartdns.js:668 586 | msgid "Enable daily (weekly) auto update." 587 | msgstr "" 588 | 589 | #: smartdns.js:673 590 | msgid "Update Time (Every Week)" 591 | msgstr "" 592 | 593 | #: smartdns.js:674 594 | msgid "Every Day" 595 | msgstr "" 596 | 597 | #: smartdns.js:675 598 | msgid "Every Monday" 599 | msgstr "" 600 | 601 | #: smartdns.js:676 602 | msgid "Every Tuesday" 603 | msgstr "" 604 | 605 | #: smartdns.js:677 606 | msgid "Every Wednesday" 607 | msgstr "" 608 | 609 | #: smartdns.js:678 610 | msgid "Every Thursday" 611 | msgstr "" 612 | 613 | #: smartdns.js:679 614 | msgid "Every Friday" 615 | msgstr "" 616 | 617 | #: smartdns.js:680 618 | msgid "Every Saturday" 619 | msgstr "" 620 | 621 | #: smartdns.js:681 622 | msgid "Every Sunday" 623 | msgstr "" 624 | 625 | #: smartdns.js:685 626 | msgid "Update time (every day)" 627 | msgstr "" 628 | 629 | #: smartdns.js:691 630 | msgid "Upload Config File" 631 | msgstr "" 632 | 633 | #: smartdns.js:692 634 | msgid "Upload smartdns config file to /etc/smartdns/conf.d" 635 | msgstr "" 636 | 637 | #: smartdns.js:698 638 | msgid "Upload Domain List File" 639 | msgstr "" 640 | 641 | #: smartdns.js:699 642 | msgid "Upload domain list file to /etc/smartdns/domain-set" 643 | msgstr "" 644 | 645 | #: smartdns.js:705 646 | msgid "Upload File" 647 | msgstr "" 648 | 649 | #: smartdns.js:711 650 | msgid "Update Files" 651 | msgstr "" 652 | 653 | #: smartdns.js:720 654 | msgid "Update" 655 | msgstr "" 656 | 657 | #: smartdns.js:723 658 | msgid "Download Files" 659 | msgstr "" 660 | 661 | #: smartdns.js:724 662 | msgid "List of files to download." 663 | msgstr "" 664 | 665 | #: smartdns.js:732 666 | msgid "File Name" 667 | msgstr "" 668 | 669 | #: smartdns.js:736 670 | msgid "URL" 671 | msgstr "" 672 | 673 | #: smartdns.js:745 674 | msgid "URL format error, format: http:// or https://" 675 | msgstr "" 676 | 677 | #: smartdns.js:751 smartdns.js:916 678 | msgid "type" 679 | msgstr "" 680 | 681 | #: smartdns.js:751 682 | msgid "File Type" 683 | msgstr "" 684 | 685 | #: smartdns.js:752 686 | msgid "domain list (/etc/smartdns/domain-set)" 687 | msgstr "" 688 | 689 | #: smartdns.js:753 690 | msgid "smartdns config (/etc/smartdns/conf.d)" 691 | msgstr "" 692 | 693 | #: smartdns.js:754 694 | msgid "ip-set file (/etc/smartdns/ip-set)" 695 | msgstr "" 696 | 697 | #: smartdns.js:755 698 | msgid "other file (/etc/smartdns/download)" 699 | msgstr "" 700 | 701 | #: smartdns.js:759 702 | msgid "Description" 703 | msgstr "" 704 | 705 | #: smartdns.js:766 706 | msgid "Proxy Server" 707 | msgstr "" 708 | 709 | #: smartdns.js:766 710 | msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." 711 | msgstr "" 712 | 713 | #: smartdns.js:774 714 | msgid "" 715 | "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." 716 | msgstr "" 717 | 718 | #: smartdns.js:784 719 | msgid "smartdns custom settings" 720 | msgstr "" 721 | 722 | #: smartdns.js:798 723 | msgid "Generate Coredump" 724 | msgstr "" 725 | 726 | #: smartdns.js:799 727 | msgid "" 728 | "Generate Coredump file when smartdns crash, coredump file is located at /tmp/" 729 | "smartdns.xxx.core." 730 | msgstr "" 731 | 732 | #: smartdns.js:803 733 | msgid "Log Level" 734 | msgstr "" 735 | 736 | #: smartdns.js:815 737 | msgid "Log Output Mode" 738 | msgstr "" 739 | 740 | #: smartdns.js:818 smartdns.js:859 741 | msgid "file" 742 | msgstr "" 743 | 744 | #: smartdns.js:819 smartdns.js:860 745 | msgid "syslog" 746 | msgstr "" 747 | 748 | #: smartdns.js:821 749 | msgid "Log Size" 750 | msgstr "" 751 | 752 | #: smartdns.js:826 753 | msgid "Log Number" 754 | msgstr "" 755 | 756 | #: smartdns.js:831 757 | msgid "Log File" 758 | msgstr "" 759 | 760 | #: smartdns.js:836 smartdns.js:844 761 | msgid "View Log" 762 | msgstr "" 763 | 764 | #: smartdns.js:851 765 | msgid "Enable Audit Log" 766 | msgstr "" 767 | 768 | #: smartdns.js:856 769 | msgid "Audit Log Output Mode" 770 | msgstr "" 771 | 772 | #: smartdns.js:863 773 | msgid "Audit Log Size" 774 | msgstr "" 775 | 776 | #: smartdns.js:868 777 | msgid "Audit Log Number" 778 | msgstr "" 779 | 780 | #: smartdns.js:873 781 | msgid "Audit Log File" 782 | msgstr "" 783 | 784 | #: smartdns.js:881 785 | msgid "Upstream Servers" 786 | msgstr "" 787 | 788 | #: smartdns.js:882 789 | msgid "" 790 | "Upstream Servers, support UDP, TCP, DoT, DoH, DoQ, DoH3 protocol. Please " 791 | "configure multiple DNS servers, including multiple foreign DNS servers." 792 | msgstr "" 793 | 794 | #: smartdns.js:898 795 | msgid "DNS Server Name" 796 | msgstr "" 797 | 798 | #: smartdns.js:901 799 | msgid "ip" 800 | msgstr "" 801 | 802 | #: smartdns.js:901 803 | msgid "DNS Server ip" 804 | msgstr "" 805 | 806 | #: smartdns.js:906 807 | msgid "port" 808 | msgstr "" 809 | 810 | #: smartdns.js:906 811 | msgid "DNS Server port" 812 | msgstr "" 813 | 814 | #: smartdns.js:916 815 | msgid "DNS Server type" 816 | msgstr "" 817 | 818 | #: smartdns.js:918 819 | msgid "udp" 820 | msgstr "" 821 | 822 | #: smartdns.js:919 823 | msgid "tcp" 824 | msgstr "" 825 | 826 | #: smartdns.js:920 827 | msgid "tls" 828 | msgstr "" 829 | 830 | #: smartdns.js:921 831 | msgid "https" 832 | msgstr "" 833 | 834 | #: smartdns.js:922 835 | msgid "quic" 836 | msgstr "" 837 | 838 | #: smartdns.js:923 839 | msgid "h3" 840 | msgstr "" 841 | 842 | #: smartdns.js:928 843 | msgid "DNS Server group" 844 | msgstr "" 845 | 846 | #: smartdns.js:947 847 | msgid "Exclude Default Group" 848 | msgstr "" 849 | 850 | #: smartdns.js:947 851 | msgid "Exclude DNS Server from default group." 852 | msgstr "" 853 | 854 | #: smartdns.js:954 855 | msgid "IP Blacklist Filtering" 856 | msgstr "" 857 | 858 | #: smartdns.js:955 859 | msgid "Filtering IP with blacklist" 860 | msgstr "" 861 | 862 | #: smartdns.js:961 863 | msgid "TLS Hostname Verify" 864 | msgstr "" 865 | 866 | #: smartdns.js:962 867 | msgid "Set TLS hostname to verify." 868 | msgstr "" 869 | 870 | #: smartdns.js:973 871 | msgid "No check certificate" 872 | msgstr "" 873 | 874 | #: smartdns.js:974 875 | msgid "Do not check certificate." 876 | msgstr "" 877 | 878 | #: smartdns.js:984 879 | msgid "TLS SNI name" 880 | msgstr "" 881 | 882 | #: smartdns.js:985 883 | msgid "Sets the server name indication for query. '-' for disable SNI name." 884 | msgstr "" 885 | 886 | #: smartdns.js:996 887 | msgid "HTTP Host" 888 | msgstr "" 889 | 890 | #: smartdns.js:997 891 | msgid "" 892 | "Set the HTTP host used for the query. Use this parameter when the host of " 893 | "the URL address is an IP address." 894 | msgstr "" 895 | 896 | #: smartdns.js:1006 897 | msgid "TLS SPKI Pinning" 898 | msgstr "" 899 | 900 | #: smartdns.js:1007 901 | msgid "" 902 | "Used to verify the validity of the TLS server, The value is Base64 encoded " 903 | "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " 904 | "verified." 905 | msgstr "" 906 | 907 | #: smartdns.js:1019 908 | msgid "Marking Packets" 909 | msgstr "" 910 | 911 | #: smartdns.js:1020 912 | msgid "Set mark on packets." 913 | msgstr "" 914 | 915 | #: smartdns.js:1027 916 | msgid "Use Proxy" 917 | msgstr "" 918 | 919 | #: smartdns.js:1028 920 | msgid "Use proxy to connect to upstream DNS server." 921 | msgstr "" 922 | 923 | #: smartdns.js:1042 924 | msgid "Please set proxy server first." 925 | msgstr "" 926 | 927 | #: smartdns.js:1046 928 | msgid "Only socks5 proxy support udp server." 929 | msgstr "" 930 | 931 | #: smartdns.js:1053 932 | msgid "Fallback" 933 | msgstr "" 934 | 935 | #: smartdns.js:1054 936 | msgid "" 937 | "Mark this server as a fallback server, use it only when default servers fail." 938 | msgstr "" 939 | 940 | #: smartdns.js:1061 941 | msgid "Additional Args for upstream dns servers" 942 | msgstr "" 943 | 944 | #: smartdns.js:1069 945 | msgid "Client Rules" 946 | msgstr "" 947 | 948 | #: smartdns.js:1069 949 | msgid "Client Rules Settings, can achieve parental control functionality." 950 | msgstr "" 951 | 952 | #: smartdns.js:1073 953 | msgid "Basic Settings" 954 | msgstr "" 955 | 956 | #: smartdns.js:1075 smartdns.js:1277 957 | msgid "DNS Block Setting" 958 | msgstr "" 959 | 960 | #: smartdns.js:1081 961 | msgid "Client Address" 962 | msgstr "" 963 | 964 | #: smartdns.js:1082 965 | msgid "" 966 | "If a client address is specified, only that client will apply this rule. You " 967 | "can enter an IP address, such as 1.2.3.4, or a MAC address, such as aa:bb:cc:" 968 | "dd:ee:ff." 969 | msgstr "" 970 | 971 | #: smartdns.js:1103 972 | msgid "Client address format error, please input ip adress or mac address." 973 | msgstr "" 974 | 975 | #: smartdns.js:1106 976 | msgid "Client Address File" 977 | msgstr "" 978 | 979 | #: smartdns.js:1107 980 | msgid "Upload client address file, same as Client Address function." 981 | msgstr "" 982 | 983 | #: smartdns.js:1114 smartdns.js:1284 smartdns.js:1494 984 | msgid "DNS Server group belongs to, such as office, home." 985 | msgstr "" 986 | 987 | #: smartdns.js:1134 smartdns.js:1304 smartdns.js:1514 988 | #, javascript-format 989 | msgid "Server Group %s not exists" 990 | msgstr "" 991 | 992 | #: smartdns.js:1261 smartdns.js:1418 smartdns.js:1448 smartdns.js:1518 993 | msgid "Domain List File" 994 | msgstr "" 995 | 996 | #: smartdns.js:1261 smartdns.js:1448 997 | msgid "Upload domain list file." 998 | msgstr "" 999 | 1000 | #: smartdns.js:1272 1001 | msgid "Domain Rules" 1002 | msgstr "" 1003 | 1004 | #: smartdns.js:1272 1005 | msgid "Domain Rules Settings" 1006 | msgstr "" 1007 | 1008 | #: smartdns.js:1276 1009 | msgid "DNS Forwarding Setting" 1010 | msgstr "" 1011 | 1012 | #: smartdns.js:1278 smartdns.js:1476 1013 | msgid "Domain Rule List" 1014 | msgstr "" 1015 | 1016 | #: smartdns.js:1278 1017 | msgid "Set Specific domain rule list." 1018 | msgstr "" 1019 | 1020 | #: smartdns.js:1279 1021 | msgid "Domain Address" 1022 | msgstr "" 1023 | 1024 | #: smartdns.js:1279 1025 | msgid "Set Specific domain ip address." 1026 | msgstr "" 1027 | 1028 | #: smartdns.js:1366 smartdns.js:1540 1029 | msgid "Yes" 1030 | msgstr "" 1031 | 1032 | #: smartdns.js:1367 smartdns.js:1541 1033 | msgid "No" 1034 | msgstr "" 1035 | 1036 | #: smartdns.js:1412 smartdns.js:1627 smartdns.js:1724 1037 | msgid "Additional Rule Flag" 1038 | msgstr "" 1039 | 1040 | #: smartdns.js:1413 smartdns.js:1628 1041 | msgid "" 1042 | "Additional Flags for rules, read help on domain-rule for more information." 1043 | msgstr "" 1044 | 1045 | #: smartdns.js:1419 smartdns.js:1519 1046 | msgid "" 1047 | "Upload domain list file, or configure auto download from Download File " 1048 | "Setting page." 1049 | msgstr "" 1050 | 1051 | #: smartdns.js:1427 smartdns.js:1456 1052 | msgid "Domain List" 1053 | msgstr "" 1054 | 1055 | #: smartdns.js:1427 1056 | msgid "Configure forwarding domain name list." 1057 | msgstr "" 1058 | 1059 | #: smartdns.js:1456 1060 | msgid "Configure block domain list." 1061 | msgstr "" 1062 | 1063 | #: smartdns.js:1477 1064 | msgid "Configure domain rule list." 1065 | msgstr "" 1066 | 1067 | #: smartdns.js:1492 1068 | msgid "Domain Rule Name" 1069 | msgstr "" 1070 | 1071 | #: smartdns.js:1525 1072 | msgid "Block domain" 1073 | msgstr "" 1074 | 1075 | #: smartdns.js:1525 1076 | msgid "Block domain." 1077 | msgstr "" 1078 | 1079 | #: smartdns.js:1638 1080 | msgid "" 1081 | "Specify an IP address to return for any host in the given domains, Queries " 1082 | "in the domains are never forwarded and always replied to with the specified " 1083 | "IP address which may be IPv4 or IPv6." 1084 | msgstr "" 1085 | 1086 | #: smartdns.js:1657 1087 | msgid "IP Rules" 1088 | msgstr "" 1089 | 1090 | #: smartdns.js:1657 1091 | msgid "IP Rules Settings" 1092 | msgstr "" 1093 | 1094 | #: smartdns.js:1661 smartdns.js:1667 1095 | msgid "IP Rule List" 1096 | msgstr "" 1097 | 1098 | #: smartdns.js:1661 1099 | msgid "Set Specific ip rule list." 1100 | msgstr "" 1101 | 1102 | #: smartdns.js:1662 1103 | msgid "IP Blacklist" 1104 | msgstr "" 1105 | 1106 | #: smartdns.js:1662 1107 | msgid "Set Specific ip blacklist." 1108 | msgstr "" 1109 | 1110 | #: smartdns.js:1668 1111 | msgid "Configure ip rule list." 1112 | msgstr "" 1113 | 1114 | #: smartdns.js:1683 1115 | msgid "IP Rule Name" 1116 | msgstr "" 1117 | 1118 | #: smartdns.js:1687 1119 | msgid "IP Set File" 1120 | msgstr "" 1121 | 1122 | #: smartdns.js:1687 1123 | msgid "Upload IP set file." 1124 | msgstr "" 1125 | 1126 | #: smartdns.js:1693 1127 | msgid "IP Addresses" 1128 | msgstr "" 1129 | 1130 | #: smartdns.js:1693 1131 | msgid "IP addresses, CIDR format." 1132 | msgstr "" 1133 | 1134 | #: smartdns.js:1698 1135 | msgid "Whitelist IP" 1136 | msgstr "" 1137 | 1138 | #: smartdns.js:1698 1139 | msgid "Whitelist IP Rule, Accept IP addresses within the range." 1140 | msgstr "" 1141 | 1142 | #: smartdns.js:1703 1143 | msgid "Blacklist IP" 1144 | msgstr "" 1145 | 1146 | #: smartdns.js:1703 1147 | msgid "Blacklist IP Rule, Decline IP addresses within the range." 1148 | msgstr "" 1149 | 1150 | #: smartdns.js:1708 1151 | msgid "Ignore IP" 1152 | msgstr "" 1153 | 1154 | #: smartdns.js:1708 1155 | msgid "Do not use these IP addresses." 1156 | msgstr "" 1157 | 1158 | #: smartdns.js:1713 1159 | msgid "Bogus nxdomain" 1160 | msgstr "" 1161 | 1162 | #: smartdns.js:1713 1163 | msgid "Return SOA when the requested result contains a specified IP address." 1164 | msgstr "" 1165 | 1166 | #: smartdns.js:1718 1167 | msgid "IP alias" 1168 | msgstr "" 1169 | 1170 | #: smartdns.js:1718 1171 | msgid "" 1172 | "IP Address Mapping, Can be used for CDN acceleration with Anycast IP, such " 1173 | "as Cloudflare's CDN." 1174 | msgstr "" 1175 | 1176 | #: smartdns.js:1725 1177 | msgid "Additional Flags for rules, read help on ip-rule for more information." 1178 | msgstr "" 1179 | 1180 | #: smartdns.js:1734 1181 | msgid "" 1182 | "Configure IP blacklists that will be filtered from the results of specific " 1183 | "DNS server." 1184 | msgstr "" 1185 | 1186 | #: smartdns.js:1751 1187 | msgid "Technical Support" 1188 | msgstr "" 1189 | 1190 | #: smartdns.js:1752 1191 | msgid "If you like this software, please buy me a cup of coffee." 1192 | msgstr "" 1193 | 1194 | #: smartdns.js:1756 1195 | msgid "SmartDNS official website" 1196 | msgstr "" 1197 | 1198 | #: smartdns.js:1757 1199 | msgid "open website" 1200 | msgstr "" 1201 | 1202 | #: smartdns.js:1764 smartdns.js:1765 1203 | msgid "Report bugs" 1204 | msgstr "" 1205 | 1206 | #: smartdns.js:1772 1207 | msgid "Donate to smartdns" 1208 | msgstr "" 1209 | 1210 | #: smartdns.js:1773 1211 | msgid "Donate" 1212 | msgstr "" 1213 | 1214 | #: smartdns.js:1779 1215 | msgid "Restart Service" 1216 | msgstr "" 1217 | 1218 | #: smartdns.js:1788 1219 | msgid "Restart" 1220 | msgstr "" -------------------------------------------------------------------------------- /po/zh_Hans/smartdns.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: luci-app-smartdns\n" 4 | "POT-Creation-Date: 2025-11-13 01:05+0000\n" 5 | "PO-Revision-Date: \n" 6 | "Last-Translator: Automatically generated\n" 7 | "Language-Team: none\n" 8 | "Language: zh\n" 9 | "MIME-Version: 1.0\n" 10 | "Content-Type: text/plain; charset=UTF-8\n" 11 | "Content-Transfer-Encoding: 8bit\n" 12 | "X-Generator: Poedit 2.2\n" 13 | "X-Poedit-Basepath: ../../htdocs/luci-static/resources/view/smartdns\n" 14 | "X-Poedit-SearchPath-0: .\n" 15 | 16 | #: log.js:80 17 | msgid "Loading..." 18 | msgstr "加载中..." 19 | 20 | #: log.js:82 smartdns.js:146 21 | msgid "Collecting data ..." 22 | msgstr "正在收集数据..." 23 | 24 | #: log.js:92 25 | msgid "Clear Logs..." 26 | msgstr "清除日志..." 27 | 28 | #: log.js:95 29 | msgid "Logs cleared successfully!" 30 | msgstr "日志清除成功!" 31 | 32 | #: log.js:98 log.js:108 log.js:112 33 | msgid "Clear Logs" 34 | msgstr "清除日志" 35 | 36 | #: log.js:101 log.js:119 37 | msgid "Log is clean." 38 | msgstr "日志已清除。" 39 | 40 | #: log.js:105 41 | msgid "Failed to clear log." 42 | msgstr "清除日志失败。" 43 | 44 | #: log.js:127 45 | msgid "Log file does not exist." 46 | msgstr "日志文件不存在。" 47 | 48 | #: log.js:129 49 | #, javascript-format 50 | msgid "Unknown error: %s" 51 | msgstr "未知错误:%s" 52 | 53 | #: log.js:142 54 | msgid "Back SmartDNS" 55 | msgstr "返回 SmartDNS" 56 | 57 | #: log.js:151 58 | #, javascript-format 59 | msgid "Refresh every %s seconds." 60 | msgstr "每 %s 秒刷新。" 61 | 62 | #: smartdns.js:68 63 | msgid "RUNNING" 64 | msgstr "运行中" 65 | 66 | #: smartdns.js:74 67 | msgid "Open the WebUI" 68 | msgstr "打开 WebUI" 69 | 70 | #: smartdns.js:77 71 | msgid "NOT RUNNING" 72 | msgstr "未运行" 73 | 74 | #: smartdns.js:79 75 | msgid "Please check the system logs and check if the configuration is valid." 76 | msgstr "请检查系统日志,并检查配置是否合法。" 77 | 78 | #: smartdns.js:91 79 | msgid "Dnsmasq Forwarded To Smartdns Failure" 80 | msgstr "重定向 Dnsmasq 到 SmartDNS 失败" 81 | 82 | #: smartdns.js:120 83 | msgid "SmartDNS" 84 | msgstr "SmartDNS" 85 | 86 | #: smartdns.js:121 87 | msgid "SmartDNS Server" 88 | msgstr "SmartDNS 服务器" 89 | 90 | #: smartdns.js:122 91 | msgid "" 92 | "SmartDNS is a local high-performance DNS server, supports finding fastest " 93 | "IP, supports ad filtering, and supports avoiding DNS poisoning." 94 | msgstr "SmartDNS 是一个本地高性能 DNS 服务器,支持返回最快 IP,支持广告过滤。" 95 | 96 | #: smartdns.js:153 97 | msgid "Settings" 98 | msgstr "设置" 99 | 100 | #: smartdns.js:153 smartdns.js:156 smartdns.js:888 101 | msgid "General Settings" 102 | msgstr "常规设置" 103 | 104 | #: smartdns.js:157 smartdns.js:889 smartdns.js:1074 105 | msgid "Advanced Settings" 106 | msgstr "高级设置" 107 | 108 | #: smartdns.js:158 109 | msgid "Second Server Settings" 110 | msgstr "第二 DNS 服务器" 111 | 112 | #: smartdns.js:159 113 | msgid "DNS64 Server Settings" 114 | msgstr "DNS64 服务器配置" 115 | 116 | #: smartdns.js:160 117 | msgid "Download Files Setting" 118 | msgstr "下载文件设置" 119 | 120 | #: smartdns.js:160 121 | msgid "" 122 | "Download domain list files for domain-rule and include config files, please " 123 | "refresh the page after download to take effect." 124 | msgstr "" 125 | "下载域名规则所需要的域名列表文件和 SmartDNS 配置文件,下载完成后刷新页面。" 126 | 127 | #: smartdns.js:161 128 | msgid "Proxy Server Settings" 129 | msgstr "代理服务器设置" 130 | 131 | #: smartdns.js:162 132 | msgid "Custom Settings" 133 | msgstr "自定义设置" 134 | 135 | #: smartdns.js:167 smartdns.js:535 smartdns.js:892 smartdns.js:1077 136 | #: smartdns.js:1486 smartdns.js:1677 137 | msgid "Enable" 138 | msgstr "启用" 139 | 140 | #: smartdns.js:167 141 | msgid "Enable or disable smartdns server" 142 | msgstr "启用或禁用 SmartDNS 服务" 143 | 144 | #: smartdns.js:172 145 | msgid "Server Name" 146 | msgstr "服务器名称" 147 | 148 | #: smartdns.js:172 149 | msgid "Smartdns server name" 150 | msgstr "SmartDNS 的服务器名称,默认为 smartdns,留空为主机名" 151 | 152 | #: smartdns.js:178 smartdns.js:541 153 | msgid "Local Port" 154 | msgstr "本地端口" 155 | 156 | #: smartdns.js:179 157 | msgid "" 158 | "Smartdns local server port, smartdns will be automatically set as main dns " 159 | "when the port is 53." 160 | msgstr "" 161 | "SmartDNS 本地服务端口,当端口号设置为 53 时,SmartDNS 将会自动配置为主 DNS。" 162 | 163 | #: smartdns.js:186 164 | msgid "Automatically Set Dnsmasq" 165 | msgstr "自动设置 Dnsmasq" 166 | 167 | #: smartdns.js:186 168 | msgid "Automatically set as upstream of dnsmasq when port changes." 169 | msgstr "端口更改时自动设为 Dnsmasq 的上游。" 170 | 171 | #: smartdns.js:192 172 | msgid "Enable WebUI" 173 | msgstr "启用 WebUI" 174 | 175 | #: smartdns.js:192 176 | msgid "Enable or disable smartdns webui plugin." 177 | msgstr "启用或禁用 SmartDNS WebUI 插件。" 178 | 179 | #: smartdns.js:196 180 | msgid "WebUI Port" 181 | msgstr "WebUI 端口" 182 | 183 | #: smartdns.js:196 184 | msgid "WebUI server port." 185 | msgstr "WebUI 服务端口。" 186 | 187 | #: smartdns.js:202 188 | msgid "WebUI Data Dir" 189 | msgstr "WebUI 数据库目录" 190 | 191 | #: smartdns.js:202 192 | msgid "Directory for storing the webui database." 193 | msgstr "用于存储 WebUI 数据库的目录。" 194 | 195 | #: smartdns.js:208 196 | msgid "WebUI Log Retention" 197 | msgstr "WebUI 日志保存天数" 198 | 199 | #: smartdns.js:208 200 | msgid "Number of days to retain webui logs." 201 | msgstr "保留 WebUI 日志的天数。" 202 | 203 | #: smartdns.js:219 smartdns.js:1139 smartdns.js:1309 smartdns.js:1543 204 | msgid "Speed Check Mode" 205 | msgstr "测速模式" 206 | 207 | #: smartdns.js:219 smartdns.js:1139 smartdns.js:1309 smartdns.js:1543 208 | msgid "Smartdns speed check mode." 209 | msgstr "SmartDNS 测速模式。" 210 | 211 | #: smartdns.js:222 smartdns.js:274 smartdns.js:806 smartdns.js:1142 212 | #: smartdns.js:1312 smartdns.js:1365 smartdns.js:1539 smartdns.js:1547 213 | msgid "default" 214 | msgstr "默认" 215 | 216 | #: smartdns.js:229 smartdns.js:1149 smartdns.js:1319 smartdns.js:1527 217 | #: smartdns.js:1554 218 | msgid "None" 219 | msgstr "无" 220 | 221 | #: smartdns.js:250 smartdns.js:1170 smartdns.js:1340 smartdns.js:1575 222 | msgid "TCP port is empty" 223 | msgstr "TCP 端口号为空" 224 | 225 | #: smartdns.js:258 smartdns.js:1178 smartdns.js:1348 smartdns.js:1583 226 | msgid "TCP SYN port is empty" 227 | msgstr "TCP SYN端口号为空" 228 | 229 | #: smartdns.js:263 smartdns.js:1183 smartdns.js:1353 smartdns.js:1588 230 | msgid "Speed check mode is invalid." 231 | msgstr "测速模式无效。" 232 | 233 | #: smartdns.js:270 234 | msgid "Response Mode" 235 | msgstr "响应模式" 236 | 237 | #: smartdns.js:271 238 | msgid "" 239 | "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " 240 | "return the fastest IP, Fastest Response: return the fastest DNS response." 241 | msgstr "" 242 | "SmartDNS 响应模式,最快 Ping:返回最早有 ping 结果的 IP,速度适中;最快 IP:返回" 243 | "最快 IP,查询请求可能延长;最快响应:返回最快响应的结果,查询请求时间短。" 244 | 245 | #: smartdns.js:275 246 | msgid "First Ping" 247 | msgstr "最快 Ping" 248 | 249 | #: smartdns.js:276 250 | msgid "Fastest IP" 251 | msgstr "最快 IP" 252 | 253 | #: smartdns.js:277 254 | msgid "Fastest Response" 255 | msgstr "最快响应" 256 | 257 | #: smartdns.js:280 smartdns.js:548 258 | msgid "TCP Server" 259 | msgstr "TCP 服务器" 260 | 261 | #: smartdns.js:280 smartdns.js:548 262 | msgid "Enable TCP DNS Server" 263 | msgstr "启用 TCP 服务器。" 264 | 265 | #: smartdns.js:285 266 | msgid "DOT Server" 267 | msgstr "DOT 服务器" 268 | 269 | #: smartdns.js:285 270 | msgid "Enable DOT DNS Server" 271 | msgstr "启用 DOT 服务器" 272 | 273 | #: smartdns.js:289 274 | msgid "DOT Server Port" 275 | msgstr "DOT 服务器端口" 276 | 277 | #: smartdns.js:289 278 | msgid "Smartdns DOT server port." 279 | msgstr "SmartDNS DOT 服务器端口号。" 280 | 281 | #: smartdns.js:297 282 | msgid "DOH Server" 283 | msgstr "DOH 服务器" 284 | 285 | #: smartdns.js:297 286 | msgid "Enable DOH DNS Server" 287 | msgstr "启用 DOH 服务器" 288 | 289 | #: smartdns.js:301 290 | msgid "DOH Server Port" 291 | msgstr "DOH 服务器端口" 292 | 293 | #: smartdns.js:301 294 | msgid "Smartdns DOH server port." 295 | msgstr "SmartDNS DOH 服务器端口号" 296 | 297 | #: smartdns.js:308 298 | msgid "Server Cert" 299 | msgstr "服务器证书" 300 | 301 | #: smartdns.js:308 302 | msgid "Server certificate file path." 303 | msgstr "服务器证书文件路径。" 304 | 305 | #: smartdns.js:315 306 | msgid "Server Cert Key" 307 | msgstr "服务器证书私钥" 308 | 309 | #: smartdns.js:315 310 | msgid "Server certificate key file path." 311 | msgstr "服务器证书私钥文件路径。" 312 | 313 | #: smartdns.js:322 314 | msgid "Server Cert Key Pass" 315 | msgstr "服务器证书私钥密码" 316 | 317 | #: smartdns.js:322 318 | msgid "Server certificate key file password." 319 | msgstr "服务器证书私钥文件密码。" 320 | 321 | #: smartdns.js:329 322 | msgid "IPv6 Server" 323 | msgstr "IPv6 服务器" 324 | 325 | #: smartdns.js:329 326 | msgid "Enable IPv6 DNS Server" 327 | msgstr "启用 IPv6 服务器。" 328 | 329 | #: smartdns.js:334 330 | msgid "Bind Device" 331 | msgstr "绑定到设备" 332 | 333 | #: smartdns.js:334 334 | msgid "Listen only on the specified interfaces." 335 | msgstr "监听在指定的设备上,避免非本地网络的 DNS 查询请求。" 336 | 337 | #: smartdns.js:339 338 | msgid "Bind Device Name" 339 | msgstr "绑定的设备名称" 340 | 341 | #: smartdns.js:339 342 | msgid "Name of device name listen on." 343 | msgstr "绑定的设备名称。" 344 | 345 | #: smartdns.js:345 smartdns.js:1190 smartdns.js:1360 smartdns.js:1534 346 | msgid "Dual-stack IP Selection" 347 | msgstr "双栈 IP 优选" 348 | 349 | #: smartdns.js:346 smartdns.js:1191 smartdns.js:1361 smartdns.js:1535 350 | msgid "Enable IP selection between IPv4 and IPv6" 351 | msgstr "启用 IPv4 和 IPv6 间的 IP 优选策略。" 352 | 353 | #: smartdns.js:351 354 | msgid "Domain prefetch" 355 | msgstr "域名预加载" 356 | 357 | #: smartdns.js:352 358 | msgid "Enable domain prefetch, accelerate domain response speed." 359 | msgstr "启用域名预加载,加速域名响应速度。" 360 | 361 | #: smartdns.js:357 362 | msgid "Serve expired" 363 | msgstr "缓存过期服务" 364 | 365 | #: smartdns.js:358 366 | msgid "" 367 | "Attempts to serve old responses from cache with a TTL of 0 in the response " 368 | "without waiting for the actual resolution to finish." 369 | msgstr "查询性能优化,有请求时尝试回应 TTL 为 0 的过期记录,以避免查询等待。" 370 | 371 | #: smartdns.js:363 372 | msgid "Cache Size" 373 | msgstr "缓存大小" 374 | 375 | #: smartdns.js:363 376 | msgid "DNS domain result cache size" 377 | msgstr "缓存 DNS 的结果,缓存大小,配置零则不缓存。" 378 | 379 | #: smartdns.js:367 380 | msgid "Cache Persist" 381 | msgstr "持久化缓存" 382 | 383 | #: smartdns.js:367 384 | msgid "Write cache to disk on exit and load on startup." 385 | msgstr "退出时保存 Cache 到磁盘,启动时加载。" 386 | 387 | #: smartdns.js:372 388 | msgid "Resolve Local Hostnames" 389 | msgstr "解析本地主机名" 390 | 391 | #: smartdns.js:372 392 | msgid "Resolve local hostnames by reading Dnsmasq lease file." 393 | msgstr "读取 Dnsmasq 的租约文件解析本地主机名。" 394 | 395 | #: smartdns.js:377 396 | msgid "mDNS Lookup" 397 | msgstr "mDNS 查询" 398 | 399 | #: smartdns.js:377 400 | msgid "Resolve local network hostname via mDNS protocol." 401 | msgstr "使用 mDNS 协议解析本地网络主机名。" 402 | 403 | #: smartdns.js:382 smartdns.js:600 smartdns.js:1196 smartdns.js:1369 404 | #: smartdns.js:1594 405 | msgid "Force AAAA SOA" 406 | msgstr "停用 IPv6 地址解析" 407 | 408 | #: smartdns.js:382 smartdns.js:600 smartdns.js:1196 smartdns.js:1369 409 | #: smartdns.js:1594 410 | msgid "Force AAAA SOA." 411 | msgstr "停用 IPv6 地址解析。" 412 | 413 | #: smartdns.js:387 smartdns.js:605 smartdns.js:1201 414 | msgid "Force HTTPS SOA" 415 | msgstr "停用 HTTPS 记录解析" 416 | 417 | #: smartdns.js:387 smartdns.js:605 smartdns.js:1201 418 | msgid "Force HTTPS SOA." 419 | msgstr "停用 HTTPS 记录解析。" 420 | 421 | #: smartdns.js:392 smartdns.js:613 smartdns.js:1206 smartdns.js:1373 422 | #: smartdns.js:1600 423 | msgid "IPset Name" 424 | msgstr "IPset 名称" 425 | 426 | #: smartdns.js:392 smartdns.js:613 smartdns.js:1206 smartdns.js:1373 427 | #: smartdns.js:1600 428 | msgid "IPset name." 429 | msgstr "IPset 名称。" 430 | 431 | #: smartdns.js:404 smartdns.js:425 smartdns.js:625 smartdns.js:1218 432 | #: smartdns.js:1385 433 | msgid "ipset name format error, format: [#[4|6]:]ipsetname" 434 | msgstr "IPset 名称格式错误,格式:[#[4|6]:]ipsetname" 435 | 436 | #: smartdns.js:412 437 | msgid "No Speed IPset Name" 438 | msgstr "无速度时 IPset 名称" 439 | 440 | #: smartdns.js:413 441 | msgid "Ipset name, Add domain result to ipset when speed check fails." 442 | msgstr "IPset 名称,当测速失败时,将查询到的结果添加到对应的 IPset 集合中。" 443 | 444 | #: smartdns.js:433 smartdns.js:632 smartdns.js:1226 smartdns.js:1392 445 | #: smartdns.js:1606 446 | msgid "NFTset Name" 447 | msgstr "NFTset 名称" 448 | 449 | #: smartdns.js:433 smartdns.js:632 smartdns.js:1226 smartdns.js:1392 450 | #: smartdns.js:1606 451 | msgid "NFTset name, format: [#[4|6]:[family#table#set]]" 452 | msgstr "NFTset 名称,格式:[#[4|6]:[family#table#set]]" 453 | 454 | #: smartdns.js:445 smartdns.js:466 smartdns.js:644 smartdns.js:1238 455 | #: smartdns.js:1404 smartdns.js:1619 456 | msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" 457 | msgstr "NFTset 名称格式错误,格式:[#[4|6]:[family#table#set]]" 458 | 459 | #: smartdns.js:453 460 | msgid "No Speed NFTset Name" 461 | msgstr "无速度时 NFTset 名称" 462 | 463 | #: smartdns.js:454 464 | msgid "" 465 | "Nftset name, Add domain result to nftset when speed check fails, format: " 466 | "[#[4|6]:[family#table#set]]" 467 | msgstr "NFTset 名称,当测速失败时,将查询到的结果添加到对应的 NFTset 集合中。" 468 | 469 | #: smartdns.js:474 470 | msgid "Domain TTL" 471 | msgstr "域名 TTL" 472 | 473 | #: smartdns.js:474 474 | msgid "TTL for all domain result." 475 | msgstr "设置所有域名的 TTL 值。" 476 | 477 | #: smartdns.js:478 478 | msgid "Domain TTL Min" 479 | msgstr "域名 TTL 最小值" 480 | 481 | #: smartdns.js:479 482 | msgid "Minimum TTL for all domain result." 483 | msgstr "所有域名的最小 TTL 值。" 484 | 485 | #: smartdns.js:486 486 | msgid "Domain TTL Max" 487 | msgstr "域名 TTL 最大值" 488 | 489 | #: smartdns.js:487 490 | msgid "Maximum TTL for all domain result." 491 | msgstr "所有域名的最大 TTL 值。" 492 | 493 | #: smartdns.js:491 494 | msgid "Reply Domain TTL Max" 495 | msgstr "回应的域名 TTL 最大值" 496 | 497 | #: smartdns.js:492 498 | msgid "Reply maximum TTL for all domain result." 499 | msgstr "设置返回给客户端的域名 TTL 最大值。" 500 | 501 | #: smartdns.js:496 smartdns.js:652 smartdns.js:1060 502 | msgid "Additional Server Args" 503 | msgstr "额外的服务器参数" 504 | 505 | #: smartdns.js:497 smartdns.js:653 506 | msgid "" 507 | "Additional server args, refer to the help description of the bind option." 508 | msgstr "额外的服务器参数,参考 bind 选项的帮助说明。" 509 | 510 | #: smartdns.js:503 smartdns.js:1247 511 | msgid "Include Config Files
/etc/smartdns/conf.d" 512 | msgstr "包含配置文件
/etc/smartdns/conf.d" 513 | 514 | #: smartdns.js:504 smartdns.js:1248 515 | msgid "" 516 | "Include other config files from /etc/smartdns/conf.d or custom path, can be " 517 | "downloaded from the download page." 518 | msgstr "" 519 | "包含配置文件,路径为 /etc/smartdns/conf.d,或自定义配置文件路径,可以从下载页" 520 | "面配置自动下载。" 521 | 522 | #: smartdns.js:517 523 | msgid "Hosts File" 524 | msgstr "Hosts 文件" 525 | 526 | #: smartdns.js:517 527 | msgid "Include hosts file." 528 | msgstr "包含 hosts 文件。" 529 | 530 | #: smartdns.js:536 531 | msgid "Enable or disable second DNS server." 532 | msgstr "是否启用第二 DNS 服务器。" 533 | 534 | #: smartdns.js:541 535 | msgid "Smartdns local server port" 536 | msgstr "SmartDNS 本地服务端口" 537 | 538 | #: smartdns.js:553 smartdns.js:928 smartdns.js:1114 smartdns.js:1284 539 | #: smartdns.js:1494 540 | msgid "Server Group" 541 | msgstr "服务器组" 542 | 543 | #: smartdns.js:554 544 | msgid "Query DNS through specific dns server group, such as office, home." 545 | msgstr "使用指定服务器组查询,比如 office、home。" 546 | 547 | #: smartdns.js:560 548 | msgid "Skip Speed Check" 549 | msgstr "跳过测速" 550 | 551 | #: smartdns.js:561 552 | msgid "Do not check speed." 553 | msgstr "禁用测速。" 554 | 555 | #: smartdns.js:566 556 | msgid "Skip Address Rules" 557 | msgstr "跳过 address 规则" 558 | 559 | #: smartdns.js:567 560 | msgid "Skip address rules." 561 | msgstr "跳过 address 规则。" 562 | 563 | #: smartdns.js:572 564 | msgid "Skip Nameserver Rule" 565 | msgstr "跳过 Nameserver 规则" 566 | 567 | #: smartdns.js:573 568 | msgid "Skip nameserver rules." 569 | msgstr "跳过 Nameserver 规则。" 570 | 571 | #: smartdns.js:578 572 | msgid "Skip Ipset Rule" 573 | msgstr "跳过 ipset 规则" 574 | 575 | #: smartdns.js:579 576 | msgid "Skip ipset rules." 577 | msgstr "跳过 ipset 规则。" 578 | 579 | #: smartdns.js:584 580 | msgid "Skip SOA Address Rule" 581 | msgstr "跳过 address SOA(#) 规则" 582 | 583 | #: smartdns.js:585 584 | msgid "Skip SOA address rules." 585 | msgstr "跳过 address SOA(#) 规则。" 586 | 587 | #: smartdns.js:589 588 | msgid "Skip Dualstack Selection" 589 | msgstr "跳过双栈优选" 590 | 591 | #: smartdns.js:590 592 | msgid "Skip Dualstack Selection." 593 | msgstr "跳过双栈优选。" 594 | 595 | #: smartdns.js:595 596 | msgid "Skip Cache" 597 | msgstr "跳过 Cache" 598 | 599 | #: smartdns.js:595 600 | msgid "Skip Cache." 601 | msgstr "跳过 Cache。" 602 | 603 | #: smartdns.js:609 604 | msgid "Skip IP Alias" 605 | msgstr "跳过 IP 别名" 606 | 607 | #: smartdns.js:660 608 | msgid "DNS64" 609 | msgstr "DNS64" 610 | 611 | #: smartdns.js:668 612 | msgid "Enable Auto Update" 613 | msgstr "启用自动更新" 614 | 615 | #: smartdns.js:668 616 | msgid "Enable daily (weekly) auto update." 617 | msgstr "启用每日(每周)自动更新" 618 | 619 | #: smartdns.js:673 620 | msgid "Update Time (Every Week)" 621 | msgstr "更新时间(每周)" 622 | 623 | #: smartdns.js:674 624 | msgid "Every Day" 625 | msgstr "每天" 626 | 627 | #: smartdns.js:675 628 | msgid "Every Monday" 629 | msgstr "每周一" 630 | 631 | #: smartdns.js:676 632 | msgid "Every Tuesday" 633 | msgstr "每周二" 634 | 635 | #: smartdns.js:677 636 | msgid "Every Wednesday" 637 | msgstr "每周三" 638 | 639 | #: smartdns.js:678 640 | msgid "Every Thursday" 641 | msgstr "每周四" 642 | 643 | #: smartdns.js:679 644 | msgid "Every Friday" 645 | msgstr "每周五" 646 | 647 | #: smartdns.js:680 648 | msgid "Every Saturday" 649 | msgstr "每周六" 650 | 651 | #: smartdns.js:681 652 | msgid "Every Sunday" 653 | msgstr "每周日" 654 | 655 | #: smartdns.js:685 656 | msgid "Update time (every day)" 657 | msgstr "更新时间(每天)" 658 | 659 | #: smartdns.js:691 660 | msgid "Upload Config File" 661 | msgstr "上传配置文件" 662 | 663 | #: smartdns.js:692 664 | msgid "Upload smartdns config file to /etc/smartdns/conf.d" 665 | msgstr "上传配置文件到 /etc/smartdns/conf.d" 666 | 667 | #: smartdns.js:698 668 | msgid "Upload Domain List File" 669 | msgstr "上传域名列表文件" 670 | 671 | #: smartdns.js:699 672 | msgid "Upload domain list file to /etc/smartdns/domain-set" 673 | msgstr "上传域名列表文件到 /etc/smartdns/domain-set" 674 | 675 | #: smartdns.js:705 676 | msgid "Upload File" 677 | msgstr "上传文件" 678 | 679 | #: smartdns.js:711 680 | msgid "Update Files" 681 | msgstr "更新文件" 682 | 683 | #: smartdns.js:720 684 | msgid "Update" 685 | msgstr "更新" 686 | 687 | #: smartdns.js:723 688 | msgid "Download Files" 689 | msgstr "下载文件" 690 | 691 | #: smartdns.js:724 692 | msgid "List of files to download." 693 | msgstr "下载文件列表。" 694 | 695 | #: smartdns.js:732 696 | msgid "File Name" 697 | msgstr "文件名" 698 | 699 | #: smartdns.js:736 700 | msgid "URL" 701 | msgstr "URL" 702 | 703 | #: smartdns.js:745 704 | msgid "URL format error, format: http:// or https://" 705 | msgstr "URL 格式错误,格式:http:// 或 https://" 706 | 707 | #: smartdns.js:751 smartdns.js:916 708 | msgid "type" 709 | msgstr "类型" 710 | 711 | #: smartdns.js:751 712 | msgid "File Type" 713 | msgstr "文件类型" 714 | 715 | #: smartdns.js:752 716 | msgid "domain list (/etc/smartdns/domain-set)" 717 | msgstr "域名列表(/etc/smartdns/domain-set)" 718 | 719 | #: smartdns.js:753 720 | msgid "smartdns config (/etc/smartdns/conf.d)" 721 | msgstr "SmartDNS 配置文件(/etc/smartdns/conf.d)" 722 | 723 | #: smartdns.js:754 724 | msgid "ip-set file (/etc/smartdns/ip-set)" 725 | msgstr "IP 集合列表文件(/etc/smartdns/ip-set)" 726 | 727 | #: smartdns.js:755 728 | msgid "other file (/etc/smartdns/download)" 729 | msgstr "其它文件(/etc/smartdns/download)" 730 | 731 | #: smartdns.js:759 732 | msgid "Description" 733 | msgstr "描述" 734 | 735 | #: smartdns.js:766 736 | msgid "Proxy Server" 737 | msgstr "代理服务器" 738 | 739 | #: smartdns.js:766 740 | msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." 741 | msgstr "代理服务器地址,格式:[socks5|http]://user:pass@ip:port。" 742 | 743 | #: smartdns.js:774 744 | msgid "" 745 | "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." 746 | msgstr "代理服务器地址格式错误,格式:[socks5|http]://user:pass@ip:port。" 747 | 748 | #: smartdns.js:784 749 | msgid "smartdns custom settings" 750 | msgstr "SmartDNS 自定义设置,具体配置参数参考指导" 751 | 752 | #: smartdns.js:798 753 | msgid "Generate Coredump" 754 | msgstr "生成 Coredump" 755 | 756 | #: smartdns.js:799 757 | msgid "" 758 | "Generate Coredump file when smartdns crash, coredump file is located at /tmp/" 759 | "smartdns.xxx.core." 760 | msgstr "" 761 | "当 SmartDNS 异常时生成 Coredump 文件,Coredump 文件在 /tmp/smartdns.xxx.core。" 762 | 763 | #: smartdns.js:803 764 | msgid "Log Level" 765 | msgstr "日志级别" 766 | 767 | #: smartdns.js:815 768 | msgid "Log Output Mode" 769 | msgstr "日志输出模式" 770 | 771 | #: smartdns.js:818 smartdns.js:859 772 | msgid "file" 773 | msgstr "文件" 774 | 775 | #: smartdns.js:819 smartdns.js:860 776 | msgid "syslog" 777 | msgstr "系统日志" 778 | 779 | #: smartdns.js:821 780 | msgid "Log Size" 781 | msgstr "日志大小" 782 | 783 | #: smartdns.js:826 784 | msgid "Log Number" 785 | msgstr "日志数量" 786 | 787 | #: smartdns.js:831 788 | msgid "Log File" 789 | msgstr "日志文件路径" 790 | 791 | #: smartdns.js:836 smartdns.js:844 792 | msgid "View Log" 793 | msgstr "查看日志" 794 | 795 | #: smartdns.js:851 796 | msgid "Enable Audit Log" 797 | msgstr "启用审计日志" 798 | 799 | #: smartdns.js:856 800 | msgid "Audit Log Output Mode" 801 | msgstr "审计日志输出模式" 802 | 803 | #: smartdns.js:863 804 | msgid "Audit Log Size" 805 | msgstr "审计日志大小" 806 | 807 | #: smartdns.js:868 808 | msgid "Audit Log Number" 809 | msgstr "审计日志数量" 810 | 811 | #: smartdns.js:873 812 | msgid "Audit Log File" 813 | msgstr "审计日志文件路径" 814 | 815 | #: smartdns.js:881 816 | msgid "Upstream Servers" 817 | msgstr "上游服务器" 818 | 819 | #: smartdns.js:882 820 | msgid "" 821 | "Upstream Servers, support UDP, TCP, DoT, DoH, DoQ, DoH3 protocol. Please " 822 | "configure multiple DNS servers, including multiple foreign DNS servers." 823 | msgstr "" 824 | "上游 DNS 服务器,支持 UDP,TCP,DoT,DoH,DoQ,DoH3 协议。请配置多个上游 DNS " 825 | "服务器,包括多个国内外服务器。" 826 | 827 | #: smartdns.js:898 828 | msgid "DNS Server Name" 829 | msgstr "DNS 服务器名称" 830 | 831 | #: smartdns.js:901 832 | msgid "ip" 833 | msgstr "ip" 834 | 835 | #: smartdns.js:901 836 | msgid "DNS Server ip" 837 | msgstr "DNS 服务器 IP" 838 | 839 | #: smartdns.js:906 840 | msgid "port" 841 | msgstr "端口" 842 | 843 | #: smartdns.js:906 844 | msgid "DNS Server port" 845 | msgstr "DNS 服务器端口" 846 | 847 | #: smartdns.js:916 848 | msgid "DNS Server type" 849 | msgstr "协议类型" 850 | 851 | #: smartdns.js:918 852 | msgid "udp" 853 | msgstr "udp" 854 | 855 | #: smartdns.js:919 856 | msgid "tcp" 857 | msgstr "tcp" 858 | 859 | #: smartdns.js:920 860 | msgid "tls" 861 | msgstr "tls" 862 | 863 | #: smartdns.js:921 864 | msgid "https" 865 | msgstr "https" 866 | 867 | #: smartdns.js:922 868 | msgid "quic" 869 | msgstr "quic" 870 | 871 | #: smartdns.js:923 872 | msgid "h3" 873 | msgstr "h3" 874 | 875 | #: smartdns.js:928 876 | msgid "DNS Server group" 877 | msgstr "服务器组" 878 | 879 | #: smartdns.js:947 880 | msgid "Exclude Default Group" 881 | msgstr "从默认组中排除" 882 | 883 | #: smartdns.js:947 884 | msgid "Exclude DNS Server from default group." 885 | msgstr "从 default 默认服务器组中排除。" 886 | 887 | #: smartdns.js:954 888 | msgid "IP Blacklist Filtering" 889 | msgstr "IP 黑名单过滤" 890 | 891 | #: smartdns.js:955 892 | msgid "Filtering IP with blacklist" 893 | msgstr "使用 IP 黑名单过滤" 894 | 895 | #: smartdns.js:961 896 | msgid "TLS Hostname Verify" 897 | msgstr "校验 TLS 主机名" 898 | 899 | #: smartdns.js:962 900 | msgid "Set TLS hostname to verify." 901 | msgstr "设置校验 TLS 主机名。" 902 | 903 | #: smartdns.js:973 904 | msgid "No check certificate" 905 | msgstr "停用证书校验" 906 | 907 | #: smartdns.js:974 908 | msgid "Do not check certificate." 909 | msgstr "不校验证书的合法性。" 910 | 911 | #: smartdns.js:984 912 | msgid "TLS SNI name" 913 | msgstr "TLS SNI 名称" 914 | 915 | #: smartdns.js:985 916 | msgid "Sets the server name indication for query. '-' for disable SNI name." 917 | msgstr "设置服务器 SNI 名称,‘-’表示禁用 SNI 名称。" 918 | 919 | #: smartdns.js:996 920 | msgid "HTTP Host" 921 | msgstr "HTTP 主机" 922 | 923 | #: smartdns.js:997 924 | msgid "" 925 | "Set the HTTP host used for the query. Use this parameter when the host of " 926 | "the URL address is an IP address." 927 | msgstr "设置查询时使用的 HTTP 主机,当 URL 地址的 host 是 IP 地址时,使用此参数。" 928 | 929 | #: smartdns.js:1006 930 | msgid "TLS SPKI Pinning" 931 | msgstr "TLS SPKI 指纹" 932 | 933 | #: smartdns.js:1007 934 | msgid "" 935 | "Used to verify the validity of the TLS server, The value is Base64 encoded " 936 | "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " 937 | "verified." 938 | msgstr "" 939 | "用于校验 TLS 服务器的有效性,数值为 Base64 编码的 SPKI 指纹,留空表示不验证 " 940 | "TLS 的合法性。" 941 | 942 | #: smartdns.js:1019 943 | msgid "Marking Packets" 944 | msgstr "数据包标记" 945 | 946 | #: smartdns.js:1020 947 | msgid "Set mark on packets." 948 | msgstr "设置数据包标记。" 949 | 950 | #: smartdns.js:1027 951 | msgid "Use Proxy" 952 | msgstr "使用代理" 953 | 954 | #: smartdns.js:1028 955 | msgid "Use proxy to connect to upstream DNS server." 956 | msgstr "使用代理连接上游 DNS 服务器。" 957 | 958 | #: smartdns.js:1042 959 | msgid "Please set proxy server first." 960 | msgstr "请先设置代理服务器。" 961 | 962 | #: smartdns.js:1046 963 | msgid "Only socks5 proxy support udp server." 964 | msgstr "仅 SOCKS5 代理支持 UDP 服务器。" 965 | 966 | #: smartdns.js:1053 967 | msgid "Fallback" 968 | msgstr "备用服务器" 969 | 970 | #: smartdns.js:1054 971 | msgid "" 972 | "Mark this server as a fallback server, use it only when default servers fail." 973 | msgstr "使用该服务器作为备用服务器,在默认服务器失效时启用。" 974 | 975 | #: smartdns.js:1061 976 | msgid "Additional Args for upstream dns servers" 977 | msgstr "额外的上游 DNS 服务器参数" 978 | 979 | #: smartdns.js:1069 980 | msgid "Client Rules" 981 | msgstr "客户端规则" 982 | 983 | #: smartdns.js:1069 984 | msgid "Client Rules Settings, can achieve parental control functionality." 985 | msgstr "客户端规则设置,可以实现家长控制功能。" 986 | 987 | #: smartdns.js:1073 988 | msgid "Basic Settings" 989 | msgstr "基本设置" 990 | 991 | #: smartdns.js:1075 smartdns.js:1277 992 | msgid "DNS Block Setting" 993 | msgstr "域名屏蔽设置" 994 | 995 | #: smartdns.js:1081 996 | msgid "Client Address" 997 | msgstr "客户端地址" 998 | 999 | #: smartdns.js:1082 1000 | msgid "" 1001 | "If a client address is specified, only that client will apply this rule. You " 1002 | "can enter an IP address, such as 1.2.3.4, or a MAC address, such as aa:bb:cc:" 1003 | "dd:ee:ff." 1004 | msgstr "" 1005 | "如果指定了客户端,那么对应的客户端会应用相应的规则,可以输入 IP 地址,如:" 1006 | "1.2.3.4,或 MAC 地址,如:aa:bb:cc:dd:ee:ff。" 1007 | 1008 | #: smartdns.js:1103 1009 | msgid "Client address format error, please input ip adress or mac address." 1010 | msgstr "客户端地址格式错误,请输入 IP 地址或 MAC 地址。" 1011 | 1012 | #: smartdns.js:1106 1013 | msgid "Client Address File" 1014 | msgstr "客户端地址文件" 1015 | 1016 | #: smartdns.js:1107 1017 | msgid "Upload client address file, same as Client Address function." 1018 | msgstr "上传客户端地址文件,与客户端地址功能相同。" 1019 | 1020 | #: smartdns.js:1114 smartdns.js:1284 smartdns.js:1494 1021 | msgid "DNS Server group belongs to, such as office, home." 1022 | msgstr "设置服务器组,例如 office、home" 1023 | 1024 | #: smartdns.js:1134 smartdns.js:1304 smartdns.js:1514 1025 | #, javascript-format 1026 | msgid "Server Group %s not exists" 1027 | msgstr "服务器组 %s 不存在" 1028 | 1029 | #: smartdns.js:1261 smartdns.js:1418 smartdns.js:1448 smartdns.js:1518 1030 | msgid "Domain List File" 1031 | msgstr "域名列表文件" 1032 | 1033 | #: smartdns.js:1261 smartdns.js:1448 1034 | msgid "Upload domain list file." 1035 | msgstr "上传域名列表文件" 1036 | 1037 | #: smartdns.js:1272 1038 | msgid "Domain Rules" 1039 | msgstr "域名规则" 1040 | 1041 | #: smartdns.js:1272 1042 | msgid "Domain Rules Settings" 1043 | msgstr "域名规则设置" 1044 | 1045 | #: smartdns.js:1276 1046 | msgid "DNS Forwarding Setting" 1047 | msgstr "域名分流设置" 1048 | 1049 | #: smartdns.js:1278 smartdns.js:1476 1050 | msgid "Domain Rule List" 1051 | msgstr "域名规则列表" 1052 | 1053 | #: smartdns.js:1278 1054 | msgid "Set Specific domain rule list." 1055 | msgstr "设置指定域名的规则列表。" 1056 | 1057 | #: smartdns.js:1279 1058 | msgid "Domain Address" 1059 | msgstr "域名地址" 1060 | 1061 | #: smartdns.js:1279 1062 | msgid "Set Specific domain ip address." 1063 | msgstr "设置指定域名的 IP 地址。" 1064 | 1065 | #: smartdns.js:1366 smartdns.js:1540 1066 | msgid "Yes" 1067 | msgstr "是" 1068 | 1069 | #: smartdns.js:1367 smartdns.js:1541 1070 | msgid "No" 1071 | msgstr "否" 1072 | 1073 | #: smartdns.js:1412 smartdns.js:1627 smartdns.js:1724 1074 | msgid "Additional Rule Flag" 1075 | msgstr "额外规则标识" 1076 | 1077 | #: smartdns.js:1413 smartdns.js:1628 1078 | msgid "" 1079 | "Additional Flags for rules, read help on domain-rule for more information." 1080 | msgstr "额外的规则标识,具体参考 domain-rule 的帮助说明。" 1081 | 1082 | #: smartdns.js:1419 smartdns.js:1519 1083 | msgid "" 1084 | "Upload domain list file, or configure auto download from Download File " 1085 | "Setting page." 1086 | msgstr "上传域名列表文件,或在下载文件设置页面设置自动下载。" 1087 | 1088 | #: smartdns.js:1427 smartdns.js:1456 1089 | msgid "Domain List" 1090 | msgstr "域名列表" 1091 | 1092 | #: smartdns.js:1427 1093 | msgid "Configure forwarding domain name list." 1094 | msgstr "配置分流域名列表" 1095 | 1096 | #: smartdns.js:1456 1097 | msgid "Configure block domain list." 1098 | msgstr "配置屏蔽域名列表" 1099 | 1100 | #: smartdns.js:1477 1101 | msgid "Configure domain rule list." 1102 | msgstr "配置域名规则列表" 1103 | 1104 | #: smartdns.js:1492 1105 | msgid "Domain Rule Name" 1106 | msgstr "域名规则名称" 1107 | 1108 | #: smartdns.js:1525 1109 | msgid "Block domain" 1110 | msgstr "屏蔽域名" 1111 | 1112 | #: smartdns.js:1525 1113 | msgid "Block domain." 1114 | msgstr "屏蔽域名。" 1115 | 1116 | #: smartdns.js:1638 1117 | msgid "" 1118 | "Specify an IP address to return for any host in the given domains, Queries " 1119 | "in the domains are never forwarded and always replied to with the specified " 1120 | "IP address which may be IPv4 or IPv6." 1121 | msgstr "" 1122 | "配置特定域名返回特定的 IP 地址,域名查询将不到上游服务器请求,直接返回配置的 IP" 1123 | "地址,可用于广告屏蔽。" 1124 | 1125 | #: smartdns.js:1657 1126 | msgid "IP Rules" 1127 | msgstr "IP 规则" 1128 | 1129 | #: smartdns.js:1657 1130 | msgid "IP Rules Settings" 1131 | msgstr "IP 规则设置" 1132 | 1133 | #: smartdns.js:1661 smartdns.js:1667 1134 | msgid "IP Rule List" 1135 | msgstr "IP 规则列表" 1136 | 1137 | #: smartdns.js:1661 1138 | msgid "Set Specific ip rule list." 1139 | msgstr "设置对应 IP 的规则。" 1140 | 1141 | #: smartdns.js:1662 1142 | msgid "IP Blacklist" 1143 | msgstr "IP 黑名单" 1144 | 1145 | #: smartdns.js:1662 1146 | msgid "Set Specific ip blacklist." 1147 | msgstr "设置指定的 IP 黑名单列表。" 1148 | 1149 | #: smartdns.js:1668 1150 | msgid "Configure ip rule list." 1151 | msgstr "配置 IP 规则列表" 1152 | 1153 | #: smartdns.js:1683 1154 | msgid "IP Rule Name" 1155 | msgstr "IP 规则名称" 1156 | 1157 | #: smartdns.js:1687 1158 | msgid "IP Set File" 1159 | msgstr "IP 集合列表文件" 1160 | 1161 | #: smartdns.js:1687 1162 | msgid "Upload IP set file." 1163 | msgstr "上传 IP 集合列表文件。" 1164 | 1165 | #: smartdns.js:1693 1166 | msgid "IP Addresses" 1167 | msgstr "IP 地址" 1168 | 1169 | #: smartdns.js:1693 1170 | msgid "IP addresses, CIDR format." 1171 | msgstr "IP 地址,CIDR 格式。" 1172 | 1173 | #: smartdns.js:1698 1174 | msgid "Whitelist IP" 1175 | msgstr "白名单" 1176 | 1177 | #: smartdns.js:1698 1178 | msgid "Whitelist IP Rule, Accept IP addresses within the range." 1179 | msgstr "白名单规则,接受指定范围的 IP 地址。" 1180 | 1181 | #: smartdns.js:1703 1182 | msgid "Blacklist IP" 1183 | msgstr "黑名单" 1184 | 1185 | #: smartdns.js:1703 1186 | msgid "Blacklist IP Rule, Decline IP addresses within the range." 1187 | msgstr "黑名单规则,拒绝指定范围的 IP 地址。" 1188 | 1189 | #: smartdns.js:1708 1190 | msgid "Ignore IP" 1191 | msgstr "忽略 IP" 1192 | 1193 | #: smartdns.js:1708 1194 | msgid "Do not use these IP addresses." 1195 | msgstr "忽略这些 IP 地址" 1196 | 1197 | #: smartdns.js:1713 1198 | msgid "Bogus nxdomain" 1199 | msgstr "假冒 IP" 1200 | 1201 | #: smartdns.js:1713 1202 | msgid "Return SOA when the requested result contains a specified IP address." 1203 | msgstr "当结果包含对应范围的 IP 时,返回 SOA。" 1204 | 1205 | #: smartdns.js:1718 1206 | msgid "IP alias" 1207 | msgstr "IP 别名" 1208 | 1209 | #: smartdns.js:1718 1210 | msgid "" 1211 | "IP Address Mapping, Can be used for CDN acceleration with Anycast IP, such " 1212 | "as Cloudflare's CDN." 1213 | msgstr "IP 地址映射,可用于支持 Anycast IP 的 CDN 加速,比如 Cloudflare 的 CDN。" 1214 | 1215 | #: smartdns.js:1725 1216 | msgid "Additional Flags for rules, read help on ip-rule for more information." 1217 | msgstr "额外的规则标识,具体参考 ip-rule 的帮助说明。" 1218 | 1219 | #: smartdns.js:1734 1220 | msgid "" 1221 | "Configure IP blacklists that will be filtered from the results of specific " 1222 | "DNS server." 1223 | msgstr "配置需要从指定域名服务器结果过滤的 IP 黑名单。" 1224 | 1225 | #: smartdns.js:1751 1226 | msgid "Technical Support" 1227 | msgstr "技术支持" 1228 | 1229 | #: smartdns.js:1752 1230 | msgid "If you like this software, please buy me a cup of coffee." 1231 | msgstr "如果本软件对你有帮助,请给作者加个蛋。" 1232 | 1233 | #: smartdns.js:1756 1234 | msgid "SmartDNS official website" 1235 | msgstr "SmartDNS 官方网站" 1236 | 1237 | #: smartdns.js:1757 1238 | msgid "open website" 1239 | msgstr "打开网站" 1240 | 1241 | #: smartdns.js:1764 smartdns.js:1765 1242 | msgid "Report bugs" 1243 | msgstr "报告 Bug" 1244 | 1245 | #: smartdns.js:1772 1246 | msgid "Donate to smartdns" 1247 | msgstr "捐助 SmartDNS 项目" 1248 | 1249 | #: smartdns.js:1773 1250 | msgid "Donate" 1251 | msgstr "捐助" 1252 | 1253 | #: smartdns.js:1779 1254 | msgid "Restart Service" 1255 | msgstr "重启服务" 1256 | 1257 | #: smartdns.js:1788 1258 | msgid "Restart" 1259 | msgstr "重启" 1260 | 1261 | #~ msgid "Grant access to LuCI app smartdns" 1262 | #~ msgstr "授予访问 LuCI 应用 smartdns 的权限" 1263 | -------------------------------------------------------------------------------- /po/zh_Hant/smartdns.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "PO-Revision-Date: 2023-03-15 14:40+0000\n" 4 | "Last-Translator: Hulen \n" 5 | "Language-Team: Chinese (Traditional) \n" 7 | "Language: zh_Hant\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=1; plural=0;\n" 11 | "X-Generator: Weblate 4.16.2-dev\n" 12 | 13 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 14 | msgid "Additional Args for upstream dns servers" 15 | msgstr "額外的上游 DNS 伺服器參數" 16 | 17 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 18 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 19 | msgid "" 20 | "Additional Flags for rules, read help on domain-rule for more information." 21 | msgstr "" 22 | 23 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 24 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 25 | msgid "Additional Rule Flag" 26 | msgstr "" 27 | 28 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 29 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 30 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 31 | msgid "Additional Server Args" 32 | msgstr "額外的伺服器參數" 33 | 34 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 35 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 36 | msgid "" 37 | "Additional server args, refer to the help description of the bind option." 38 | msgstr "" 39 | 40 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 41 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 42 | msgid "Advanced Settings" 43 | msgstr "進階設定" 44 | 45 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 46 | msgid "" 47 | "Attempts to serve old responses from cache with a TTL of 0 in the response " 48 | "without waiting for the actual resolution to finish." 49 | msgstr "查詢性能優化,有請求時嘗試回應 TTL 為 0 的過期記錄,以避免查詢等待。" 50 | 51 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 52 | msgid "Automatically Set Dnsmasq" 53 | msgstr "自動設置 Dnsmasq" 54 | 55 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 56 | msgid "Automatically set as upstream of dnsmasq when port changes." 57 | msgstr "通訊埠更改時自動設為 dnsmasq 的上游。" 58 | 59 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 60 | msgid "Bind Device" 61 | msgstr "" 62 | 63 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 64 | msgid "Bind Device Name" 65 | msgstr "" 66 | 67 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 68 | msgid "Block domain" 69 | msgstr "" 70 | 71 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 72 | msgid "Block domain." 73 | msgstr "" 74 | 75 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 76 | msgid "Cache Persist" 77 | msgstr "" 78 | 79 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 80 | msgid "Cache Size" 81 | msgstr "緩存大小" 82 | 83 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 84 | msgid "Collecting data ..." 85 | msgstr "正在收集數據..." 86 | 87 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 88 | msgid "" 89 | "Configure IP blacklists that will be filtered from the results of specific " 90 | "DNS server." 91 | msgstr "配置需要从指定域名伺服器結果過濾的 IP 黑名單。" 92 | 93 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 94 | msgid "Configure block domain list." 95 | msgstr "" 96 | 97 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 98 | msgid "Configure domain rule list." 99 | msgstr "" 100 | 101 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 102 | msgid "Configure forwarding domain name list." 103 | msgstr "" 104 | 105 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 106 | msgid "Custom Settings" 107 | msgstr "自定義設置" 108 | 109 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 110 | msgid "DNS Block Setting" 111 | msgstr "" 112 | 113 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 114 | msgid "DNS Forwarding Setting" 115 | msgstr "" 116 | 117 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 118 | msgid "DNS Server Name" 119 | msgstr "DNS 伺服器名稱" 120 | 121 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 122 | msgid "DNS Server group" 123 | msgstr "" 124 | 125 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 126 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 127 | msgid "DNS Server group belongs to, such as office, home." 128 | msgstr "" 129 | 130 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 131 | msgid "DNS Server ip" 132 | msgstr "DNS 伺服器 IP" 133 | 134 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 135 | msgid "DNS Server port" 136 | msgstr "DNS 伺服器通訊埠" 137 | 138 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 139 | msgid "DNS Server type" 140 | msgstr "協議類型" 141 | 142 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 143 | msgid "DNS domain result cache size" 144 | msgstr "緩存 DNS 的結果,緩存大小,配置零則不緩存" 145 | 146 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 147 | msgid "DNS64" 148 | msgstr "" 149 | 150 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 151 | msgid "DNS64 Server Settings" 152 | msgstr "" 153 | 154 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 155 | msgid "Description" 156 | msgstr "" 157 | 158 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 159 | msgid "Dnsmasq Forwarded To Smartdns Failure" 160 | msgstr "" 161 | 162 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 163 | msgid "Do not check certificate." 164 | msgstr "不校驗憑證的合法性。" 165 | 166 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 167 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 168 | msgid "Do not check speed." 169 | msgstr "禁用測速。" 170 | 171 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 172 | msgid "Domain Address" 173 | msgstr "域名位址" 174 | 175 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 176 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 177 | msgid "Domain List" 178 | msgstr "" 179 | 180 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 181 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 182 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 183 | msgid "Domain List File" 184 | msgstr "" 185 | 186 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 187 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 188 | msgid "Domain Rule List" 189 | msgstr "" 190 | 191 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 192 | msgid "Domain Rule Name" 193 | msgstr "" 194 | 195 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 196 | msgid "Domain Rules" 197 | msgstr "" 198 | 199 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 200 | msgid "Domain Rules Settings" 201 | msgstr "" 202 | 203 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 204 | msgid "Domain TTL" 205 | msgstr "域名 TTL" 206 | 207 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 208 | msgid "Domain TTL Max" 209 | msgstr "域名 TTL 最大值" 210 | 211 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 212 | msgid "Domain TTL Min" 213 | msgstr "域名 TTL 最小值" 214 | 215 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 216 | msgid "Domain prefetch" 217 | msgstr "域名預加載" 218 | 219 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 220 | msgid "Donate" 221 | msgstr "捐贈" 222 | 223 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 224 | msgid "Donate to smartdns" 225 | msgstr "捐贈 smartdns 項目" 226 | 227 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 228 | msgid "Download Files" 229 | msgstr "" 230 | 231 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 232 | msgid "Download Files Setting" 233 | msgstr "" 234 | 235 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 236 | msgid "" 237 | "Download domain list files for domain-rule and include config files, please " 238 | "refresh the page after download to take effect." 239 | msgstr "" 240 | 241 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 242 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 243 | msgid "Dual-stack IP Selection" 244 | msgstr "雙棧 IP 優選" 245 | 246 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 247 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 248 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 249 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 250 | msgid "Enable" 251 | msgstr "启用" 252 | 253 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 254 | msgid "Enable Auto Update" 255 | msgstr "" 256 | 257 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 258 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 259 | msgid "Enable IP selection between IPv4 and IPv6" 260 | msgstr "启用 IPv4 和 IPv6 間的 IP 優選策略" 261 | 262 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 263 | msgid "Enable IPv6 DNS Server" 264 | msgstr "启用 IPv6 伺服器" 265 | 266 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 267 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 268 | msgid "Enable TCP DNS Server" 269 | msgstr "启用 TCP 伺服器" 270 | 271 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 272 | msgid "Enable daily auto update." 273 | msgstr "" 274 | 275 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 276 | msgid "Enable domain prefetch, accelerate domain response speed." 277 | msgstr "启用域名預加載,加速域名響應速度。" 278 | 279 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 280 | msgid "Enable or disable second DNS server." 281 | msgstr "是否启用第二 DNS 伺服器。" 282 | 283 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 284 | msgid "Enable or disable smartdns server" 285 | msgstr "启用或禁用 SmartDNS 服務" 286 | 287 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 288 | msgid "Exclude DNS Server from default group." 289 | msgstr "" 290 | 291 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 292 | msgid "Exclude Default Group" 293 | msgstr "" 294 | 295 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 296 | msgid "Fastest IP" 297 | msgstr "" 298 | 299 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 300 | msgid "Fastest Response" 301 | msgstr "" 302 | 303 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 304 | msgid "File Name" 305 | msgstr "" 306 | 307 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 308 | msgid "File Type" 309 | msgstr "" 310 | 311 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 312 | msgid "Filtering IP with blacklist" 313 | msgstr "使用 IP 黑名單過濾" 314 | 315 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 316 | msgid "First Ping" 317 | msgstr "" 318 | 319 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 320 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 321 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 322 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 323 | msgid "Force AAAA SOA" 324 | msgstr "停用 IPv6 位址解析" 325 | 326 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 327 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 328 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 329 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 330 | msgid "Force AAAA SOA." 331 | msgstr "停用 IPv6 位址解析。" 332 | 333 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 334 | msgid "Force HTTPS SOA" 335 | msgstr "停用 HTTPS 位址解析" 336 | 337 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 338 | msgid "Force HTTPS SOA." 339 | msgstr "停用 HTTPS 位址解析。" 340 | 341 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 342 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 343 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 344 | msgid "General Settings" 345 | msgstr "常規設置" 346 | 347 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 348 | msgid "Generate Coredump" 349 | msgstr "生成 coredump" 350 | 351 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 352 | msgid "" 353 | "Generate Coredump file when smartdns crash, coredump file is located at /tmp/" 354 | "smartdns.xxx.core." 355 | msgstr "" 356 | "當 smartdns 異常時生成 coredump 文檔,coredump 文檔在 /tmp/smartdns.xxx.core." 357 | 358 | #: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 359 | msgid "Grant access to LuCI app smartdns" 360 | msgstr "授予訪問 LuCI 應用 smartdns 的權限" 361 | 362 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 363 | msgid "HTTP Host" 364 | msgstr "HTTP 主機" 365 | 366 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 367 | msgid "IP Blacklist" 368 | msgstr "IP 黑名單" 369 | 370 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 371 | msgid "IP Blacklist Filtering" 372 | msgstr "IP 黑名單過濾" 373 | 374 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 375 | msgid "IPv6 Server" 376 | msgstr "IPv6 伺服器" 377 | 378 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 379 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 380 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 381 | msgid "IPset Name" 382 | msgstr "" 383 | 384 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 385 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 386 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 387 | msgid "IPset name." 388 | msgstr "" 389 | 390 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 391 | msgid "If you like this software, please buy me a cup of coffee." 392 | msgstr "如果本软件对你有帮助,请给作者加个蛋。" 393 | 394 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 395 | msgid "Include Config Files
/etc/smartdns/conf.d" 396 | msgstr "" 397 | 398 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 399 | msgid "" 400 | "Include other config files from /etc/smartdns/conf.d or custom path, can be " 401 | "downloaded from the download page." 402 | msgstr "" 403 | 404 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 405 | msgid "Ipset name, Add domain result to ipset when speed check fails." 406 | msgstr "" 407 | 408 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 409 | msgid "List of files to download." 410 | msgstr "" 411 | 412 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 413 | msgid "Listen only on the specified interfaces." 414 | msgstr "" 415 | 416 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 417 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 418 | msgid "Local Port" 419 | msgstr "本地通訊埠" 420 | 421 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 422 | msgid "Log File" 423 | msgstr "" 424 | 425 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 426 | msgid "Log Level" 427 | msgstr "" 428 | 429 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 430 | msgid "Log Number" 431 | msgstr "" 432 | 433 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 434 | msgid "Log Size" 435 | msgstr "" 436 | 437 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 438 | msgid "Marking Packets" 439 | msgstr "" 440 | 441 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 442 | msgid "Maximum TTL for all domain result." 443 | msgstr "所有域名的最大 TTL 值。" 444 | 445 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 446 | msgid "Minimum TTL for all domain result." 447 | msgstr "所有域名的最小 TTL 值。" 448 | 449 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 450 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 451 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 452 | msgid "NFTset Name" 453 | msgstr "" 454 | 455 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 456 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 457 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 458 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 459 | msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" 460 | msgstr "" 461 | 462 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 463 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 464 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 465 | msgid "NFTset name, format: [#[4|6]:[family#table#set]]" 466 | msgstr "" 467 | 468 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 469 | msgid "NOT RUNNING" 470 | msgstr "未運行" 471 | 472 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 473 | msgid "Name of device name listen on." 474 | msgstr "" 475 | 476 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 477 | msgid "" 478 | "Nftset name, Add domain result to nftset when speed check fails, format: " 479 | "[#[4|6]:[family#table#set]]" 480 | msgstr "" 481 | 482 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 483 | msgid "No" 484 | msgstr "" 485 | 486 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 487 | msgid "No Speed IPset Name" 488 | msgstr "" 489 | 490 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 491 | msgid "No Speed NFTset Name" 492 | msgstr "" 493 | 494 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 495 | msgid "No check certificate" 496 | msgstr "停用憑證校驗" 497 | 498 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 499 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 500 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 501 | msgid "None" 502 | msgstr "" 503 | 504 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 505 | msgid "Only socks5 proxy support udp server." 506 | msgstr "" 507 | 508 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 509 | msgid "Please set proxy server first." 510 | msgstr "" 511 | 512 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 513 | msgid "Proxy Server" 514 | msgstr "" 515 | 516 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 517 | msgid "Proxy Server Settings" 518 | msgstr "" 519 | 520 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 521 | msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." 522 | msgstr "" 523 | 524 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 525 | msgid "" 526 | "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." 527 | msgstr "" 528 | 529 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 530 | msgid "Query DNS through specific dns server group, such as office, home." 531 | msgstr "使用指定伺服器組查詢,比如office, home。" 532 | 533 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 534 | msgid "RUNNING" 535 | msgstr "運行中" 536 | 537 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 538 | msgid "Reply Domain TTL Max" 539 | msgstr "回應的域名 TTL 最大值" 540 | 541 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 542 | msgid "Reply maximum TTL for all domain result." 543 | msgstr "設置返回给用戶端的域名 TTL 最大值。" 544 | 545 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 546 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 547 | msgid "Report bugs" 548 | msgstr "" 549 | 550 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 551 | msgid "Resolve Local Hostnames" 552 | msgstr "解析本地主機名" 553 | 554 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 555 | msgid "Resolve local hostnames by reading Dnsmasq lease file." 556 | msgstr "讀取 Dnsmasq 的租約文檔解析本地主機名。" 557 | 558 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 559 | msgid "Response Mode" 560 | msgstr "" 561 | 562 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 563 | msgid "Restart" 564 | msgstr "重啟" 565 | 566 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 567 | msgid "Restart Service" 568 | msgstr "重啟服務" 569 | 570 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 571 | msgid "Second Server Settings" 572 | msgstr "第二 DNS 伺服器" 573 | 574 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 575 | msgid "Serve expired" 576 | msgstr "緩存過期服務" 577 | 578 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 579 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 580 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 581 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 582 | msgid "Server Group" 583 | msgstr "伺服器組" 584 | 585 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 586 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 587 | msgid "Server Group %s not exists" 588 | msgstr "" 589 | 590 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 591 | msgid "Server Name" 592 | msgstr "伺服器名稱" 593 | 594 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 595 | msgid "Set Specific domain ip address." 596 | msgstr "設置指定域名的 IP 位址。" 597 | 598 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 599 | msgid "Set Specific domain rule list." 600 | msgstr "" 601 | 602 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 603 | msgid "Set Specific ip blacklist." 604 | msgstr "設置指定的 IP 黑名單列表。" 605 | 606 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 607 | msgid "Set TLS hostname to verify." 608 | msgstr "設置校驗 TLS 主機名。" 609 | 610 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 611 | msgid "Set mark on packets." 612 | msgstr "" 613 | 614 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 615 | msgid "" 616 | "Set the HTTP host used for the query. Use this parameter when the host of " 617 | "the URL address is an IP address." 618 | msgstr "" 619 | "設置查詢時使用的 HTTP 主機,當 URL 位址的 host 是 IP 位址時,使用此參數。" 620 | 621 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 622 | msgid "Sets the server name indication for query. '-' for disable SNI name." 623 | msgstr "" 624 | 625 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 626 | msgid "Settings" 627 | msgstr "設置" 628 | 629 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 630 | msgid "Skip Address Rules" 631 | msgstr "跳過 address 规則" 632 | 633 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 634 | msgid "Skip Cache" 635 | msgstr "跳過 cache" 636 | 637 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 638 | msgid "Skip Cache." 639 | msgstr "跳過 cache。" 640 | 641 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 642 | msgid "Skip Dualstack Selection" 643 | msgstr "跳過双栈優選" 644 | 645 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 646 | msgid "Skip Dualstack Selection." 647 | msgstr "跳過双栈優選。" 648 | 649 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 650 | msgid "Skip Ipset Rule" 651 | msgstr "跳過 ipset 规則" 652 | 653 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 654 | msgid "Skip Nameserver Rule" 655 | msgstr "跳過 Nameserver 规則" 656 | 657 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 658 | msgid "Skip SOA Address Rule" 659 | msgstr "跳過 address SOA(#) 规則" 660 | 661 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 662 | msgid "Skip SOA address rules." 663 | msgstr "跳過 address SOA(#) 规則。" 664 | 665 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 666 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 667 | msgid "Skip Speed Check" 668 | msgstr "跳過測速" 669 | 670 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 671 | msgid "Skip address rules." 672 | msgstr "跳過 address 规則。" 673 | 674 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 675 | msgid "Skip ipset rules." 676 | msgstr "跳過 ipset 规則。" 677 | 678 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 679 | msgid "Skip nameserver rules." 680 | msgstr "跳過 Nameserver 规則。" 681 | 682 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 683 | #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 684 | msgid "SmartDNS" 685 | msgstr "SmartDNS" 686 | 687 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 688 | msgid "SmartDNS Server" 689 | msgstr "SmartDNS 伺服器" 690 | 691 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 692 | msgid "" 693 | "SmartDNS is a local high-performance DNS server, supports finding fastest " 694 | "IP, supports ad filtering, and supports avoiding DNS poisoning." 695 | msgstr "SmartDNS 是一个本地高性能 DNS 伺服器,支持返回最快 IP,支持廣告過濾。" 696 | 697 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 698 | msgid "SmartDNS official website" 699 | msgstr "SmartDNS 官方網站" 700 | 701 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 702 | msgid "Smartdns local server port" 703 | msgstr "SmartDNS 本地服務通訊埠" 704 | 705 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 706 | msgid "" 707 | "Smartdns local server port, smartdns will be automatically set as main dns " 708 | "when the port is 53." 709 | msgstr "" 710 | "SmartDNS 本地服務通訊埠,當通訊埠号設置為 53 時,smartdns 将会自動配置為主 " 711 | "dns。" 712 | 713 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 714 | msgid "" 715 | "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " 716 | "return the fastest IP, Fastest Response: return the fastest DNS response." 717 | msgstr "" 718 | 719 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 720 | msgid "Smartdns server name" 721 | msgstr "SmartDNS 的伺服器名稱,默认為 smartdns,留空為主機名" 722 | 723 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 724 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 725 | msgid "Smartdns speed check mode." 726 | msgstr "" 727 | 728 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 729 | msgid "" 730 | "Specify an IP address to return for any host in the given domains, Queries " 731 | "in the domains are never forwarded and always replied to with the specified " 732 | "IP address which may be IPv4 or IPv6." 733 | msgstr "" 734 | "配置特定域名返回特定的 IP 位址,域名查詢将不到上游伺服器請求,直接返回配置的 " 735 | "IP位址,可用于廣告屏蔽。" 736 | 737 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 738 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 739 | msgid "Speed Check Mode" 740 | msgstr "" 741 | 742 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 743 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 744 | msgid "Speed check mode is invalid." 745 | msgstr "" 746 | 747 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 748 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 749 | msgid "TCP Server" 750 | msgstr "TCP 伺服器" 751 | 752 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 753 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 754 | msgid "TCP port is empty" 755 | msgstr "" 756 | 757 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 758 | msgid "TLS Hostname Verify" 759 | msgstr "校驗 TLS 主機名" 760 | 761 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 762 | msgid "TLS SNI name" 763 | msgstr "TLS SNI 名稱" 764 | 765 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 766 | msgid "TLS SPKI Pinning" 767 | msgstr "TLS SPKI 指紋" 768 | 769 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 770 | msgid "TTL for all domain result." 771 | msgstr "設置所有域名的 TTL 值。" 772 | 773 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 774 | msgid "Technical Support" 775 | msgstr "技術支持" 776 | 777 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 778 | msgid "URL" 779 | msgstr "" 780 | 781 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 782 | msgid "URL format error, format: http:// or https://" 783 | msgstr "" 784 | 785 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 786 | msgid "Update" 787 | msgstr "" 788 | 789 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 790 | msgid "Update Files" 791 | msgstr "" 792 | 793 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 794 | msgid "Upload Config File" 795 | msgstr "" 796 | 797 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 798 | msgid "Upload Domain List File" 799 | msgstr "" 800 | 801 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 802 | msgid "Upload domain list file to /etc/smartdns/domain-set" 803 | msgstr "" 804 | 805 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 806 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 807 | msgid "" 808 | "Upload domain list file, or configure auto download from Download File " 809 | "Setting page." 810 | msgstr "" 811 | 812 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 813 | msgid "Upload domain list file." 814 | msgstr "" 815 | 816 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 817 | msgid "Upload smartdns config file to /etc/smartdns/conf.d" 818 | msgstr "" 819 | 820 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 821 | msgid "Upstream Servers" 822 | msgstr "上游伺服器" 823 | 824 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 825 | msgid "" 826 | "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " 827 | "servers, including multiple foreign DNS servers." 828 | msgstr "" 829 | "上游 DNS 伺服器,支持 UDP,TCP 協議。请配置多个上游 DNS 伺服器,包括多个国内" 830 | "外伺服器。" 831 | 832 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 833 | msgid "Use Proxy" 834 | msgstr "" 835 | 836 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 837 | msgid "Use proxy to connect to upstream DNS server." 838 | msgstr "" 839 | 840 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 841 | msgid "" 842 | "Used to verify the validity of the TLS server, The value is Base64 encoded " 843 | "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " 844 | "verified." 845 | msgstr "" 846 | "用于校驗 TLS 伺服器的有效性,數值為 Base64 編碼的 SPKI 指紋,留空表示不驗證 " 847 | "TLS 的合法性。" 848 | 849 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 850 | msgid "Write cache to disk on exit and load on startup." 851 | msgstr "" 852 | 853 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 854 | msgid "Yes" 855 | msgstr "" 856 | 857 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 858 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 859 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 860 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 861 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 862 | msgid "default" 863 | msgstr "" 864 | 865 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 866 | msgid "domain list (/etc/smartdns/domain-set)" 867 | msgstr "" 868 | 869 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 870 | msgid "https" 871 | msgstr "https" 872 | 873 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 874 | msgid "ip" 875 | msgstr "ip" 876 | 877 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 878 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 879 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 880 | msgid "ipset name format error, format: [#[4|6]:]ipsetname" 881 | msgstr "" 882 | 883 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 884 | msgid "open website" 885 | msgstr "打开網站" 886 | 887 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 888 | msgid "port" 889 | msgstr "通訊埠" 890 | 891 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 892 | msgid "smartdns config (/etc/smartdns/conf.d)" 893 | msgstr "" 894 | 895 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 896 | msgid "smartdns custom settings" 897 | msgstr "smartdns 自定義設置,具體配置參數參考指導" 898 | 899 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 900 | msgid "tcp" 901 | msgstr "tcp" 902 | 903 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 904 | msgid "tls" 905 | msgstr "tls" 906 | 907 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 908 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 909 | msgid "type" 910 | msgstr "類型" 911 | 912 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 913 | msgid "udp" 914 | msgstr "udp" 915 | 916 | #~ msgid "" 917 | #~ "DNS Server group belongs to, used with nameserver, such as office, home." 918 | #~ msgstr "DNS 伺服器所屬組, 配合 nameserver 使用,例如:office,home。" 919 | 920 | #~ msgid "Dnsmasq Forwared To Smartdns Failure" 921 | #~ msgstr "重定向 dnsmasq 到 smartdns 失敗" 922 | 923 | #~ msgid "Sets the server name indication for query." 924 | #~ msgstr "設置查詢時使用的伺服器 SNI 名稱。" 925 | 926 | #~ msgid "IPv4 53 Port Redirect Failure" 927 | #~ msgstr "IPv4 53 通訊埠重定向失敗" 928 | 929 | #~ msgid "IPv6 53 Port Redirect Failure" 930 | #~ msgstr "IPv6 53 通訊埠重定向失敗" 931 | 932 | #~ msgid "Redirect" 933 | #~ msgstr "重定向" 934 | 935 | #~ msgid "Redirect 53 port to SmartDNS" 936 | #~ msgstr "重定向 53 通訊埠到 SmartDNS" 937 | 938 | #~ msgid "Run as dnsmasq upstream server" 939 | #~ msgstr "作為 dnsmasq 的上游伺服器" 940 | 941 | #~ msgid "SmartDNS redirect mode" 942 | #~ msgstr "SmartDNS 重定向模式" 943 | 944 | #~ msgid "none" 945 | #~ msgstr "无" 946 | -------------------------------------------------------------------------------- /po/de/smartdns.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "PO-Revision-Date: 2023-02-28 10:31+0000\n" 4 | "Last-Translator: oneforfun \n" 5 | "Language-Team: German \n" 7 | "Language: de\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 11 | "X-Generator: Weblate 4.16-dev\n" 12 | 13 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 14 | msgid "Additional Args for upstream dns servers" 15 | msgstr "Zusätzliche Argumente für Upstream-DNS-Server" 16 | 17 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 18 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 19 | msgid "" 20 | "Additional Flags for rules, read help on domain-rule for more information." 21 | msgstr "" 22 | 23 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 24 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 25 | msgid "Additional Rule Flag" 26 | msgstr "" 27 | 28 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 29 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 30 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 31 | msgid "Additional Server Args" 32 | msgstr "Zusätzliche Server Parameter" 33 | 34 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 35 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 36 | msgid "" 37 | "Additional server args, refer to the help description of the bind option." 38 | msgstr "" 39 | 40 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 41 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 42 | msgid "Advanced Settings" 43 | msgstr "Erweiterte Einstellungen" 44 | 45 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 46 | msgid "" 47 | "Attempts to serve old responses from cache with a TTL of 0 in the response " 48 | "without waiting for the actual resolution to finish." 49 | msgstr "" 50 | "Versuche, eine alte Antwort vom Cache mit TTL 0 zurückzugeben, ohne auf die " 51 | "eigentliche Auflösung zu warten." 52 | 53 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 54 | msgid "Automatically Set Dnsmasq" 55 | msgstr "Dnsmasq automatisch setzen" 56 | 57 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 58 | msgid "Automatically set as upstream of dnsmasq when port changes." 59 | msgstr "Setze automatisch als Upstream von dnsmasq when sich der Port ändert." 60 | 61 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 62 | msgid "Bind Device" 63 | msgstr "" 64 | 65 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 66 | msgid "Bind Device Name" 67 | msgstr "" 68 | 69 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 70 | msgid "Block domain" 71 | msgstr "" 72 | 73 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 74 | msgid "Block domain." 75 | msgstr "" 76 | 77 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 78 | msgid "Cache Persist" 79 | msgstr "" 80 | 81 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 82 | msgid "Cache Size" 83 | msgstr "Zwischenspeichergröße" 84 | 85 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 86 | msgid "Collecting data ..." 87 | msgstr "Sammle Daten..." 88 | 89 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 90 | msgid "" 91 | "Configure IP blacklists that will be filtered from the results of specific " 92 | "DNS server." 93 | msgstr "" 94 | "Definition einer IP basierten Blockierliste, welche Ergebnisse eines " 95 | "spezifischen DNS Servers filtert." 96 | 97 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 98 | msgid "Configure block domain list." 99 | msgstr "" 100 | 101 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 102 | msgid "Configure domain rule list." 103 | msgstr "" 104 | 105 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 106 | msgid "Configure forwarding domain name list." 107 | msgstr "" 108 | 109 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 110 | msgid "Custom Settings" 111 | msgstr "Benutzerdefinierte Einstellungen" 112 | 113 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 114 | msgid "DNS Block Setting" 115 | msgstr "" 116 | 117 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 118 | msgid "DNS Forwarding Setting" 119 | msgstr "" 120 | 121 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 122 | msgid "DNS Server Name" 123 | msgstr "DNS Server Name" 124 | 125 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 126 | msgid "DNS Server group" 127 | msgstr "" 128 | 129 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 130 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 131 | msgid "DNS Server group belongs to, such as office, home." 132 | msgstr "" 133 | 134 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 135 | msgid "DNS Server ip" 136 | msgstr "DNS-Server IP" 137 | 138 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 139 | msgid "DNS Server port" 140 | msgstr "DNS-Server-Port" 141 | 142 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 143 | msgid "DNS Server type" 144 | msgstr "DNS-Server Typ" 145 | 146 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 147 | msgid "DNS domain result cache size" 148 | msgstr "DNS Domain Ergebnisspeichergröße" 149 | 150 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 151 | msgid "DNS64" 152 | msgstr "" 153 | 154 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 155 | msgid "DNS64 Server Settings" 156 | msgstr "" 157 | 158 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 159 | msgid "Description" 160 | msgstr "" 161 | 162 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 163 | msgid "Dnsmasq Forwarded To Smartdns Failure" 164 | msgstr "" 165 | 166 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 167 | msgid "Do not check certificate." 168 | msgstr "Zertifikat nicht prüfen." 169 | 170 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 171 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 172 | msgid "Do not check speed." 173 | msgstr "Geschwindigkeit nicht testen." 174 | 175 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 176 | msgid "Domain Address" 177 | msgstr "Domain Adresse" 178 | 179 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 180 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 181 | msgid "Domain List" 182 | msgstr "" 183 | 184 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 185 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 186 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 187 | msgid "Domain List File" 188 | msgstr "" 189 | 190 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 191 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 192 | msgid "Domain Rule List" 193 | msgstr "" 194 | 195 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 196 | msgid "Domain Rule Name" 197 | msgstr "" 198 | 199 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 200 | msgid "Domain Rules" 201 | msgstr "" 202 | 203 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 204 | msgid "Domain Rules Settings" 205 | msgstr "" 206 | 207 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 208 | msgid "Domain TTL" 209 | msgstr "Domäne TTL" 210 | 211 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 212 | msgid "Domain TTL Max" 213 | msgstr "Domäne TTL Max" 214 | 215 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 216 | msgid "Domain TTL Min" 217 | msgstr "Domäne TTL Min" 218 | 219 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 220 | msgid "Domain prefetch" 221 | msgstr "Vorabruf der Domäne" 222 | 223 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 224 | msgid "Donate" 225 | msgstr "Spenden" 226 | 227 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 228 | msgid "Donate to smartdns" 229 | msgstr "An smartdns spenden" 230 | 231 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 232 | msgid "Download Files" 233 | msgstr "" 234 | 235 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 236 | msgid "Download Files Setting" 237 | msgstr "" 238 | 239 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 240 | msgid "" 241 | "Download domain list files for domain-rule and include config files, please " 242 | "refresh the page after download to take effect." 243 | msgstr "" 244 | 245 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 246 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 247 | msgid "Dual-stack IP Selection" 248 | msgstr "Dual-Stack-IP-Auswahl" 249 | 250 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 251 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 252 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 253 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 254 | msgid "Enable" 255 | msgstr "aktivieren" 256 | 257 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 258 | msgid "Enable Auto Update" 259 | msgstr "" 260 | 261 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 262 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 263 | msgid "Enable IP selection between IPv4 and IPv6" 264 | msgstr "Aktiviere Wahl zwischen IPv4 und IPv6" 265 | 266 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 267 | msgid "Enable IPv6 DNS Server" 268 | msgstr "Aktivere IPv6 DNS-Server" 269 | 270 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 271 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 272 | msgid "Enable TCP DNS Server" 273 | msgstr "Aktiviere TCP DNS Server" 274 | 275 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 276 | msgid "Enable daily auto update." 277 | msgstr "" 278 | 279 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 280 | msgid "Enable domain prefetch, accelerate domain response speed." 281 | msgstr "" 282 | "Aktivieren Sie Domänen-Prefetch, um die Reaktionsgeschwindigkeit der Domäne " 283 | "zu beschleunigen." 284 | 285 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 286 | msgid "Enable or disable second DNS server." 287 | msgstr "Aktivieren oder deaktivieren des zweiten DNS-Servers." 288 | 289 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 290 | msgid "Enable or disable smartdns server" 291 | msgstr "Aktivieren oder deaktivieren des Smartdns-Servers" 292 | 293 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 294 | msgid "Exclude DNS Server from default group." 295 | msgstr "" 296 | 297 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 298 | msgid "Exclude Default Group" 299 | msgstr "" 300 | 301 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 302 | msgid "Fastest IP" 303 | msgstr "" 304 | 305 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 306 | msgid "Fastest Response" 307 | msgstr "" 308 | 309 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 310 | msgid "File Name" 311 | msgstr "" 312 | 313 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 314 | msgid "File Type" 315 | msgstr "" 316 | 317 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 318 | msgid "Filtering IP with blacklist" 319 | msgstr "Filtern von IP mit negativ-Liste" 320 | 321 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 322 | msgid "First Ping" 323 | msgstr "" 324 | 325 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 326 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 327 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 328 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 329 | msgid "Force AAAA SOA" 330 | msgstr "Erzwinge AAAA SOA" 331 | 332 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 333 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 334 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 335 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 336 | msgid "Force AAAA SOA." 337 | msgstr "Erzwinge AAAA SOA." 338 | 339 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 340 | msgid "Force HTTPS SOA" 341 | msgstr "Erzwinge HTTPS SOA" 342 | 343 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 344 | msgid "Force HTTPS SOA." 345 | msgstr "Erzwinge HTTPS SOA." 346 | 347 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 348 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 349 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 350 | msgid "General Settings" 351 | msgstr "Allgemeine Einstellungen" 352 | 353 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 354 | msgid "Generate Coredump" 355 | msgstr "Generiere Coredump" 356 | 357 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 358 | msgid "" 359 | "Generate Coredump file when smartdns crash, coredump file is located at /tmp/" 360 | "smartdns.xxx.core." 361 | msgstr "" 362 | "Erzeugt eine Coredump-Datei, wenn smartdns abstürzt. Die Coredump-Datei " 363 | "befindet sich unter /tmp/smartdns.xxx.core." 364 | 365 | #: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 366 | msgid "Grant access to LuCI app smartdns" 367 | msgstr "Zugriff auf die LuCI-App smartdns gewähren" 368 | 369 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 370 | msgid "HTTP Host" 371 | msgstr "HTTP-Host" 372 | 373 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 374 | msgid "IP Blacklist" 375 | msgstr "IP Negativ-Liste" 376 | 377 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 378 | msgid "IP Blacklist Filtering" 379 | msgstr "Filterung von IP-Blacklists" 380 | 381 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 382 | msgid "IPv6 Server" 383 | msgstr "IPv6-Server" 384 | 385 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 386 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 387 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 388 | msgid "IPset Name" 389 | msgstr "" 390 | 391 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 392 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 393 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 394 | msgid "IPset name." 395 | msgstr "" 396 | 397 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 398 | msgid "If you like this software, please buy me a cup of coffee." 399 | msgstr "" 400 | "Wenn Ihnen diese Software gefällt, spendieren Sie mir bitte eine Tasse " 401 | "Kaffee." 402 | 403 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 404 | msgid "Include Config Files
/etc/smartdns/conf.d" 405 | msgstr "" 406 | 407 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 408 | msgid "" 409 | "Include other config files from /etc/smartdns/conf.d or custom path, can be " 410 | "downloaded from the download page." 411 | msgstr "" 412 | 413 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 414 | msgid "Ipset name, Add domain result to ipset when speed check fails." 415 | msgstr "" 416 | 417 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 418 | msgid "List of files to download." 419 | msgstr "" 420 | 421 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 422 | msgid "Listen only on the specified interfaces." 423 | msgstr "" 424 | 425 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 426 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 427 | msgid "Local Port" 428 | msgstr "Lokaler Port" 429 | 430 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 431 | msgid "Log File" 432 | msgstr "" 433 | 434 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 435 | msgid "Log Level" 436 | msgstr "" 437 | 438 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 439 | msgid "Log Number" 440 | msgstr "" 441 | 442 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 443 | msgid "Log Size" 444 | msgstr "" 445 | 446 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 447 | msgid "Marking Packets" 448 | msgstr "" 449 | 450 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 451 | msgid "Maximum TTL for all domain result." 452 | msgstr "Maximale TTL für alle Ergebnisse der Domäne." 453 | 454 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 455 | msgid "Minimum TTL for all domain result." 456 | msgstr "Minimale TTL für alle Ergebnisse der Domäne." 457 | 458 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 459 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 460 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 461 | msgid "NFTset Name" 462 | msgstr "" 463 | 464 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 465 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 466 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 467 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 468 | msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" 469 | msgstr "" 470 | 471 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 472 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 473 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 474 | msgid "NFTset name, format: [#[4|6]:[family#table#set]]" 475 | msgstr "" 476 | 477 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 478 | msgid "NOT RUNNING" 479 | msgstr "LÄUFT NICHT" 480 | 481 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 482 | msgid "Name of device name listen on." 483 | msgstr "" 484 | 485 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 486 | msgid "" 487 | "Nftset name, Add domain result to nftset when speed check fails, format: " 488 | "[#[4|6]:[family#table#set]]" 489 | msgstr "" 490 | 491 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 492 | msgid "No" 493 | msgstr "" 494 | 495 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 496 | msgid "No Speed IPset Name" 497 | msgstr "" 498 | 499 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 500 | msgid "No Speed NFTset Name" 501 | msgstr "" 502 | 503 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 504 | msgid "No check certificate" 505 | msgstr "Kein Check der Zertifikate" 506 | 507 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 508 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 509 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 510 | msgid "None" 511 | msgstr "" 512 | 513 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 514 | msgid "Only socks5 proxy support udp server." 515 | msgstr "" 516 | 517 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 518 | msgid "Please set proxy server first." 519 | msgstr "" 520 | 521 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 522 | msgid "Proxy Server" 523 | msgstr "" 524 | 525 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 526 | msgid "Proxy Server Settings" 527 | msgstr "" 528 | 529 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 530 | msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." 531 | msgstr "" 532 | 533 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 534 | msgid "" 535 | "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." 536 | msgstr "" 537 | 538 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 539 | msgid "Query DNS through specific dns server group, such as office, home." 540 | msgstr "" 541 | "Abfrage von DNS über eine bestimmte DNS-Servergruppe, z. B. Büro, Zuhause." 542 | 543 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 544 | msgid "RUNNING" 545 | msgstr "LÄUFT" 546 | 547 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 548 | msgid "Reply Domain TTL Max" 549 | msgstr "Max TTL der Antwortdomäne" 550 | 551 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 552 | msgid "Reply maximum TTL for all domain result." 553 | msgstr "Maximale Antwort-TTL für alle Domänen-Ergebnisse." 554 | 555 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 556 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 557 | msgid "Report bugs" 558 | msgstr "" 559 | 560 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 561 | msgid "Resolve Local Hostnames" 562 | msgstr "Lokale Hostnamen auflösen" 563 | 564 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 565 | msgid "Resolve local hostnames by reading Dnsmasq lease file." 566 | msgstr "Lokale Hostnamen durch Lesen der Dnsmasq-Lease-Datei auflösen." 567 | 568 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 569 | msgid "Response Mode" 570 | msgstr "" 571 | 572 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 573 | msgid "Restart" 574 | msgstr "Neustart" 575 | 576 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 577 | msgid "Restart Service" 578 | msgstr "Dienst neu starten" 579 | 580 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 581 | msgid "Second Server Settings" 582 | msgstr "Einstellungen für den zweiten Server" 583 | 584 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 585 | msgid "Serve expired" 586 | msgstr "Serve abgelaufen" 587 | 588 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 589 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 590 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 591 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 592 | msgid "Server Group" 593 | msgstr "Servergruppe" 594 | 595 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 596 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 597 | msgid "Server Group %s not exists" 598 | msgstr "" 599 | 600 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 601 | msgid "Server Name" 602 | msgstr "Servername" 603 | 604 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 605 | msgid "Set Specific domain ip address." 606 | msgstr "Spezifische Domänen-IP-Adresse einstellen." 607 | 608 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 609 | msgid "Set Specific domain rule list." 610 | msgstr "" 611 | 612 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 613 | msgid "Set Specific ip blacklist." 614 | msgstr "Spezifische IP-Blacklist einstellen." 615 | 616 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 617 | msgid "Set TLS hostname to verify." 618 | msgstr "TLS-Hostname zur Überprüfung einstellen." 619 | 620 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 621 | msgid "Set mark on packets." 622 | msgstr "" 623 | 624 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 625 | msgid "" 626 | "Set the HTTP host used for the query. Use this parameter when the host of " 627 | "the URL address is an IP address." 628 | msgstr "" 629 | "Legt den für die Abfrage verwendeten HTTP-Host fest. Verwenden Sie diesen " 630 | "Parameter, wenn der Host der URL-Adresse eine IP-Adresse ist." 631 | 632 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 633 | msgid "Sets the server name indication for query. '-' for disable SNI name." 634 | msgstr "" 635 | 636 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 637 | msgid "Settings" 638 | msgstr "Einstellungen" 639 | 640 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 641 | msgid "Skip Address Rules" 642 | msgstr "Adressregeln überspringen" 643 | 644 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 645 | msgid "Skip Cache" 646 | msgstr "Cache überspringen" 647 | 648 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 649 | msgid "Skip Cache." 650 | msgstr "Cache überspringen." 651 | 652 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 653 | msgid "Skip Dualstack Selection" 654 | msgstr "Dualstack-Auswahl überspringen" 655 | 656 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 657 | msgid "Skip Dualstack Selection." 658 | msgstr "Dualstack-Auswahl überspringen." 659 | 660 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 661 | msgid "Skip Ipset Rule" 662 | msgstr "Ipset-Regel überspringen" 663 | 664 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 665 | msgid "Skip Nameserver Rule" 666 | msgstr "Nameserver-Regel überspringen" 667 | 668 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 669 | msgid "Skip SOA Address Rule" 670 | msgstr "SOA-Adressregel überspringen" 671 | 672 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 673 | msgid "Skip SOA address rules." 674 | msgstr "SOA-Adressregeln überspringen." 675 | 676 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 677 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 678 | msgid "Skip Speed Check" 679 | msgstr "Geschwindigkeitsprüfung überspringen" 680 | 681 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 682 | msgid "Skip address rules." 683 | msgstr "Adressregeln überspringen." 684 | 685 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 686 | msgid "Skip ipset rules." 687 | msgstr "ipset-Regeln überspringen." 688 | 689 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 690 | msgid "Skip nameserver rules." 691 | msgstr "Nameserver-Regeln überspringen." 692 | 693 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 694 | #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 695 | msgid "SmartDNS" 696 | msgstr "SmartDNS" 697 | 698 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 699 | msgid "SmartDNS Server" 700 | msgstr "SmartDNS-Server" 701 | 702 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 703 | msgid "" 704 | "SmartDNS is a local high-performance DNS server, supports finding fastest " 705 | "IP, supports ad filtering, and supports avoiding DNS poisoning." 706 | msgstr "" 707 | "SmartDNS ist ein lokaler Hochleistungs-DNS-Server, der die Suche nach der " 708 | "schnellsten IP unterstützt, die Filterung von Werbung und die Vermeidung von " 709 | "DNS-Poisoning ermöglicht." 710 | 711 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 712 | msgid "SmartDNS official website" 713 | msgstr "Offizielle Website von SmartDNS" 714 | 715 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 716 | msgid "Smartdns local server port" 717 | msgstr "Lokaler Smartdns-Serverport" 718 | 719 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 720 | msgid "" 721 | "Smartdns local server port, smartdns will be automatically set as main dns " 722 | "when the port is 53." 723 | msgstr "" 724 | "Lokaler Smartdns-Serverport, smartdns wird automatisch als Haupt-DNS " 725 | "eingestellt, wenn 53 der Port ist." 726 | 727 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 728 | msgid "" 729 | "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " 730 | "return the fastest IP, Fastest Response: return the fastest DNS response." 731 | msgstr "" 732 | 733 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 734 | msgid "Smartdns server name" 735 | msgstr "Smartdns-Servername" 736 | 737 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 738 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 739 | msgid "Smartdns speed check mode." 740 | msgstr "" 741 | 742 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 743 | msgid "" 744 | "Specify an IP address to return for any host in the given domains, Queries " 745 | "in the domains are never forwarded and always replied to with the specified " 746 | "IP address which may be IPv4 or IPv6." 747 | msgstr "" 748 | "Geben Sie eine IP-Adresse an, die für einen beliebigen Host in den " 749 | "angegebenen Domänen zurückgegeben werden soll. Abfragen in den Domänen " 750 | "werden nie weitergeleitet und immer mit der angegebenen IP-Adresse " 751 | "beantwortet, die IPv4 oder IPv6 sein kann." 752 | 753 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 754 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 755 | msgid "Speed Check Mode" 756 | msgstr "" 757 | 758 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 759 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 760 | msgid "Speed check mode is invalid." 761 | msgstr "" 762 | 763 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 764 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 765 | msgid "TCP Server" 766 | msgstr "TCP-Server" 767 | 768 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 769 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 770 | msgid "TCP port is empty" 771 | msgstr "" 772 | 773 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 774 | msgid "TLS Hostname Verify" 775 | msgstr "Überprüfung des TLS-Hostnamens" 776 | 777 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 778 | msgid "TLS SNI name" 779 | msgstr "TLS-SNI-Name" 780 | 781 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 782 | msgid "TLS SPKI Pinning" 783 | msgstr "TLS-SPKI-Pinning" 784 | 785 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 786 | msgid "TTL for all domain result." 787 | msgstr "TTL für alle Domänenergebnisse." 788 | 789 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 790 | msgid "Technical Support" 791 | msgstr "Technische Unterstützung" 792 | 793 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 794 | msgid "URL" 795 | msgstr "" 796 | 797 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 798 | msgid "URL format error, format: http:// or https://" 799 | msgstr "" 800 | 801 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 802 | msgid "Update" 803 | msgstr "" 804 | 805 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 806 | msgid "Update Files" 807 | msgstr "" 808 | 809 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 810 | msgid "Upload Config File" 811 | msgstr "" 812 | 813 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 814 | msgid "Upload Domain List File" 815 | msgstr "" 816 | 817 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 818 | msgid "Upload domain list file to /etc/smartdns/domain-set" 819 | msgstr "" 820 | 821 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 822 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 823 | msgid "" 824 | "Upload domain list file, or configure auto download from Download File " 825 | "Setting page." 826 | msgstr "" 827 | 828 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 829 | msgid "Upload domain list file." 830 | msgstr "" 831 | 832 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 833 | msgid "Upload smartdns config file to /etc/smartdns/conf.d" 834 | msgstr "" 835 | 836 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 837 | msgid "Upstream Servers" 838 | msgstr "Upstream-Server" 839 | 840 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 841 | msgid "" 842 | "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " 843 | "servers, including multiple foreign DNS servers." 844 | msgstr "" 845 | "Upstream-Server, die die Protokolle UDP und TCP unterstützen. Bitte " 846 | "konfigurieren Sie mehrere DNS-Server, einschließlich mehrerer ausländischer " 847 | "DNS-Server." 848 | 849 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 850 | msgid "Use Proxy" 851 | msgstr "" 852 | 853 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 854 | msgid "Use proxy to connect to upstream DNS server." 855 | msgstr "" 856 | 857 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 858 | msgid "" 859 | "Used to verify the validity of the TLS server, The value is Base64 encoded " 860 | "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " 861 | "verified." 862 | msgstr "" 863 | "Wird verwendet, um die Gültigkeit des TLS-Servers zu überprüfen. Der Wert " 864 | "ist ein Base64-kodierter SPKI-Fingerabdruck, leer lassen bedeutet, dass die " 865 | "Gültigkeit von TLS nicht überprüft wird." 866 | 867 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 868 | msgid "Write cache to disk on exit and load on startup." 869 | msgstr "" 870 | 871 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 872 | msgid "Yes" 873 | msgstr "" 874 | 875 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 876 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 877 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 878 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 879 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 880 | msgid "default" 881 | msgstr "" 882 | 883 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 884 | msgid "domain list (/etc/smartdns/domain-set)" 885 | msgstr "" 886 | 887 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 888 | msgid "https" 889 | msgstr "https" 890 | 891 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 892 | msgid "ip" 893 | msgstr "IP" 894 | 895 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 896 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 897 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 898 | msgid "ipset name format error, format: [#[4|6]:]ipsetname" 899 | msgstr "" 900 | 901 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 902 | msgid "open website" 903 | msgstr "Webseite öffnen" 904 | 905 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 906 | msgid "port" 907 | msgstr "Port" 908 | 909 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 910 | msgid "smartdns config (/etc/smartdns/conf.d)" 911 | msgstr "" 912 | 913 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 914 | msgid "smartdns custom settings" 915 | msgstr "Benutzerdefinierte SmartDNS-Einstellungen" 916 | 917 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 918 | msgid "tcp" 919 | msgstr "tcp" 920 | 921 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 922 | msgid "tls" 923 | msgstr "tls" 924 | 925 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 926 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 927 | msgid "type" 928 | msgstr "Typ" 929 | 930 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 931 | msgid "udp" 932 | msgstr "udp" 933 | 934 | #~ msgid "" 935 | #~ "DNS Server group belongs to, used with nameserver, such as office, home." 936 | #~ msgstr "" 937 | #~ "DNS-Server-Gruppe, zu jener der Nameserver gehört, z. B. Büro, Zuhause." 938 | 939 | #~ msgid "Dnsmasq Forwared To Smartdns Failure" 940 | #~ msgstr "Fehler der Dnsmasq-Weiterleitung an Smartdns" 941 | 942 | #~ msgid "Sets the server name indication for query." 943 | #~ msgstr "Legt die Anzeige des Servernamens für die Abfrage fest." 944 | 945 | #~ msgid "none" 946 | #~ msgstr "kein" 947 | -------------------------------------------------------------------------------- /po/pt-BR/smartdns.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "PO-Revision-Date: 2023-03-08 10:38+0000\n" 4 | "Last-Translator: Wellington Terumi Uemura \n" 5 | "Language-Team: Portuguese (Brazil) \n" 7 | "Language: pt-BR\n" 8 | "Content-Type: text/plain; charset=UTF-8\n" 9 | "Content-Transfer-Encoding: 8bit\n" 10 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 11 | "X-Generator: Weblate 4.16.2-dev\n" 12 | 13 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 14 | msgid "Additional Args for upstream dns servers" 15 | msgstr "Args adicionais para servidores dns upstream" 16 | 17 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 18 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 19 | msgid "" 20 | "Additional Flags for rules, read help on domain-rule for more information." 21 | msgstr "" 22 | 23 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 24 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 25 | msgid "Additional Rule Flag" 26 | msgstr "" 27 | 28 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 29 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 30 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 31 | msgid "Additional Server Args" 32 | msgstr "Args Adicionais Sobre o Servidor" 33 | 34 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 35 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 36 | msgid "" 37 | "Additional server args, refer to the help description of the bind option." 38 | msgstr "" 39 | 40 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 41 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 42 | msgid "Advanced Settings" 43 | msgstr "Configurações avançadas" 44 | 45 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 46 | msgid "" 47 | "Attempts to serve old responses from cache with a TTL of 0 in the response " 48 | "without waiting for the actual resolution to finish." 49 | msgstr "" 50 | "Tentativas de servir respostas antigas do cache com um TTL de 0 na resposta " 51 | "sem esperar o término da resolução real." 52 | 53 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 54 | msgid "Automatically Set Dnsmasq" 55 | msgstr "Definir o Dnsmasq automaticamente" 56 | 57 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 58 | msgid "Automatically set as upstream of dnsmasq when port changes." 59 | msgstr "" 60 | "Definido automaticamente como upstream do dnsmasq quando a porta se alterar." 61 | 62 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 63 | msgid "Bind Device" 64 | msgstr "" 65 | 66 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 67 | msgid "Bind Device Name" 68 | msgstr "" 69 | 70 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 71 | msgid "Block domain" 72 | msgstr "" 73 | 74 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 75 | msgid "Block domain." 76 | msgstr "" 77 | 78 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 79 | msgid "Cache Persist" 80 | msgstr "" 81 | 82 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 83 | msgid "Cache Size" 84 | msgstr "Tamanho do Cache" 85 | 86 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 87 | msgid "Collecting data ..." 88 | msgstr "Coletando dados ..." 89 | 90 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 91 | msgid "" 92 | "Configure IP blacklists that will be filtered from the results of specific " 93 | "DNS server." 94 | msgstr "" 95 | "Configure as listas negras dos IP que serão filtradas a partir dos " 96 | "resultados de um servidor DNS específico." 97 | 98 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 99 | msgid "Configure block domain list." 100 | msgstr "" 101 | 102 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 103 | msgid "Configure domain rule list." 104 | msgstr "" 105 | 106 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 107 | msgid "Configure forwarding domain name list." 108 | msgstr "" 109 | 110 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 111 | msgid "Custom Settings" 112 | msgstr "Configurações Personalizadas" 113 | 114 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 115 | msgid "DNS Block Setting" 116 | msgstr "" 117 | 118 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 119 | msgid "DNS Forwarding Setting" 120 | msgstr "" 121 | 122 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 123 | msgid "DNS Server Name" 124 | msgstr "Nome do Servidor DNS" 125 | 126 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 127 | msgid "DNS Server group" 128 | msgstr "" 129 | 130 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 131 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 132 | msgid "DNS Server group belongs to, such as office, home." 133 | msgstr "" 134 | 135 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 136 | msgid "DNS Server ip" 137 | msgstr "Endereço IP do Servidor DNS" 138 | 139 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 140 | msgid "DNS Server port" 141 | msgstr "Porta do Servidor DNS" 142 | 143 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 144 | msgid "DNS Server type" 145 | msgstr "Tipo do Servidor DNS" 146 | 147 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 148 | msgid "DNS domain result cache size" 149 | msgstr "Tamanho do cache para o resultado do domínio DNS" 150 | 151 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 152 | msgid "DNS64" 153 | msgstr "" 154 | 155 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 156 | msgid "DNS64 Server Settings" 157 | msgstr "" 158 | 159 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 160 | msgid "Description" 161 | msgstr "" 162 | 163 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 164 | msgid "Dnsmasq Forwarded To Smartdns Failure" 165 | msgstr "" 166 | 167 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 168 | msgid "Do not check certificate." 169 | msgstr "Não verifique o certificado." 170 | 171 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 172 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 173 | msgid "Do not check speed." 174 | msgstr "Não verifique a velocidade." 175 | 176 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 177 | msgid "Domain Address" 178 | msgstr "Endereço do domínio" 179 | 180 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 181 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 182 | msgid "Domain List" 183 | msgstr "" 184 | 185 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 186 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 187 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 188 | msgid "Domain List File" 189 | msgstr "" 190 | 191 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 192 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 193 | msgid "Domain Rule List" 194 | msgstr "" 195 | 196 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 197 | msgid "Domain Rule Name" 198 | msgstr "" 199 | 200 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 201 | msgid "Domain Rules" 202 | msgstr "" 203 | 204 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 205 | msgid "Domain Rules Settings" 206 | msgstr "" 207 | 208 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 209 | msgid "Domain TTL" 210 | msgstr "TTL do domínio" 211 | 212 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 213 | msgid "Domain TTL Max" 214 | msgstr "TTL Max. do Domínio" 215 | 216 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 217 | msgid "Domain TTL Min" 218 | msgstr "TTL Min. do Domínio" 219 | 220 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 221 | msgid "Domain prefetch" 222 | msgstr "Pré-aquisição do Domínio" 223 | 224 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 225 | msgid "Donate" 226 | msgstr "Doe" 227 | 228 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 229 | msgid "Donate to smartdns" 230 | msgstr "Doar para o smartdns" 231 | 232 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 233 | msgid "Download Files" 234 | msgstr "" 235 | 236 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 237 | msgid "Download Files Setting" 238 | msgstr "" 239 | 240 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 241 | msgid "" 242 | "Download domain list files for domain-rule and include config files, please " 243 | "refresh the page after download to take effect." 244 | msgstr "" 245 | 246 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 247 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 248 | msgid "Dual-stack IP Selection" 249 | msgstr "Seleção IP com pilha dupla" 250 | 251 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 252 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 253 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 254 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 255 | msgid "Enable" 256 | msgstr "Ativar" 257 | 258 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 259 | msgid "Enable Auto Update" 260 | msgstr "" 261 | 262 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 263 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 264 | msgid "Enable IP selection between IPv4 and IPv6" 265 | msgstr "Ative a seleção do IP entre o IPv4 e o IPv6" 266 | 267 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 268 | msgid "Enable IPv6 DNS Server" 269 | msgstr "Ativar o Servidor IPv6 do DNS" 270 | 271 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 272 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 273 | msgid "Enable TCP DNS Server" 274 | msgstr "Ative o TCP do servidor DNS" 275 | 276 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 277 | msgid "Enable daily auto update." 278 | msgstr "" 279 | 280 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 281 | msgid "Enable domain prefetch, accelerate domain response speed." 282 | msgstr "" 283 | "Ative a pré-aquisição do domínio, acelera a velocidade de resposta do " 284 | "domínio." 285 | 286 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 287 | msgid "Enable or disable second DNS server." 288 | msgstr "Ative ou desative o segundo servidor DNS." 289 | 290 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 291 | msgid "Enable or disable smartdns server" 292 | msgstr "Ative ou desative o servidor smartdns" 293 | 294 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 295 | msgid "Exclude DNS Server from default group." 296 | msgstr "" 297 | 298 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 299 | msgid "Exclude Default Group" 300 | msgstr "" 301 | 302 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 303 | msgid "Fastest IP" 304 | msgstr "" 305 | 306 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 307 | msgid "Fastest Response" 308 | msgstr "" 309 | 310 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 311 | msgid "File Name" 312 | msgstr "" 313 | 314 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 315 | msgid "File Type" 316 | msgstr "" 317 | 318 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 319 | msgid "Filtering IP with blacklist" 320 | msgstr "Filtrando o IP com um alista negra" 321 | 322 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 323 | msgid "First Ping" 324 | msgstr "" 325 | 326 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 327 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 328 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 329 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 330 | msgid "Force AAAA SOA" 331 | msgstr "Impor AAAA SOA" 332 | 333 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 334 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 335 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 336 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 337 | msgid "Force AAAA SOA." 338 | msgstr "Impor AAAA SOA." 339 | 340 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 341 | msgid "Force HTTPS SOA" 342 | msgstr "Impor o HTTPS SOA" 343 | 344 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 345 | msgid "Force HTTPS SOA." 346 | msgstr "Impor o HTTPS SOA." 347 | 348 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 349 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 350 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 351 | msgid "General Settings" 352 | msgstr "Configurações gerais" 353 | 354 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 355 | msgid "Generate Coredump" 356 | msgstr "Gerar Coredump" 357 | 358 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 359 | msgid "" 360 | "Generate Coredump file when smartdns crash, coredump file is located at /tmp/" 361 | "smartdns.xxx.core." 362 | msgstr "" 363 | "Gere um arquivo Coredump quando o smartdns falhar, o arquivo coredump está " 364 | "localizado em /tmp/smartdns.xxx.core." 365 | 366 | #: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 367 | msgid "Grant access to LuCI app smartdns" 368 | msgstr "Conceda acesso ao LuCI app smartdns" 369 | 370 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 371 | msgid "HTTP Host" 372 | msgstr "Host HTTP" 373 | 374 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 375 | msgid "IP Blacklist" 376 | msgstr "Lista negra de IPs" 377 | 378 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 379 | msgid "IP Blacklist Filtering" 380 | msgstr "Filtragem da Lista Negra dos IPs" 381 | 382 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 383 | msgid "IPv6 Server" 384 | msgstr "Servidor IPv6" 385 | 386 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 387 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 388 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 389 | msgid "IPset Name" 390 | msgstr "" 391 | 392 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 393 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 394 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 395 | msgid "IPset name." 396 | msgstr "" 397 | 398 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 399 | msgid "If you like this software, please buy me a cup of coffee." 400 | msgstr "Caso goste deste software, por favor, me pague uma xícara de café." 401 | 402 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 403 | msgid "Include Config Files
/etc/smartdns/conf.d" 404 | msgstr "" 405 | 406 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 407 | msgid "" 408 | "Include other config files from /etc/smartdns/conf.d or custom path, can be " 409 | "downloaded from the download page." 410 | msgstr "" 411 | 412 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 413 | msgid "Ipset name, Add domain result to ipset when speed check fails." 414 | msgstr "" 415 | 416 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 417 | msgid "List of files to download." 418 | msgstr "" 419 | 420 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 421 | msgid "Listen only on the specified interfaces." 422 | msgstr "" 423 | 424 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 425 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 426 | msgid "Local Port" 427 | msgstr "Porta Local" 428 | 429 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 430 | msgid "Log File" 431 | msgstr "" 432 | 433 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 434 | msgid "Log Level" 435 | msgstr "" 436 | 437 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 438 | msgid "Log Number" 439 | msgstr "" 440 | 441 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 442 | msgid "Log Size" 443 | msgstr "" 444 | 445 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 446 | msgid "Marking Packets" 447 | msgstr "" 448 | 449 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 450 | msgid "Maximum TTL for all domain result." 451 | msgstr "TTL máximo para todos os resultados do domínio." 452 | 453 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 454 | msgid "Minimum TTL for all domain result." 455 | msgstr "TTL mínimo para todos os resultados do domínio." 456 | 457 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 458 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 459 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 460 | msgid "NFTset Name" 461 | msgstr "" 462 | 463 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 464 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 465 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 466 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 467 | msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" 468 | msgstr "" 469 | 470 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 471 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 472 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 473 | msgid "NFTset name, format: [#[4|6]:[family#table#set]]" 474 | msgstr "" 475 | 476 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 477 | msgid "NOT RUNNING" 478 | msgstr "NÃO ESTÁ EM EXECUÇÃO" 479 | 480 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 481 | msgid "Name of device name listen on." 482 | msgstr "" 483 | 484 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 485 | msgid "" 486 | "Nftset name, Add domain result to nftset when speed check fails, format: " 487 | "[#[4|6]:[family#table#set]]" 488 | msgstr "" 489 | 490 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 491 | msgid "No" 492 | msgstr "" 493 | 494 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 495 | msgid "No Speed IPset Name" 496 | msgstr "" 497 | 498 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 499 | msgid "No Speed NFTset Name" 500 | msgstr "" 501 | 502 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 503 | msgid "No check certificate" 504 | msgstr "Não verifique o certificado" 505 | 506 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 507 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 508 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 509 | msgid "None" 510 | msgstr "" 511 | 512 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 513 | msgid "Only socks5 proxy support udp server." 514 | msgstr "" 515 | 516 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 517 | msgid "Please set proxy server first." 518 | msgstr "" 519 | 520 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 521 | msgid "Proxy Server" 522 | msgstr "" 523 | 524 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 525 | msgid "Proxy Server Settings" 526 | msgstr "" 527 | 528 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 529 | msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." 530 | msgstr "" 531 | 532 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 533 | msgid "" 534 | "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." 535 | msgstr "" 536 | 537 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 538 | msgid "Query DNS through specific dns server group, such as office, home." 539 | msgstr "" 540 | "Consulta o DNS através de um grupo específico de servidores dns, como " 541 | "office, casa." 542 | 543 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 544 | msgid "RUNNING" 545 | msgstr "EM EXECUÇÃO" 546 | 547 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 548 | msgid "Reply Domain TTL Max" 549 | msgstr "Responda ao domínio com TTL Max" 550 | 551 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 552 | msgid "Reply maximum TTL for all domain result." 553 | msgstr "Responda com TTL máximo em todos os resultados do domínio." 554 | 555 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 556 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 557 | msgid "Report bugs" 558 | msgstr "" 559 | 560 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 561 | msgid "Resolve Local Hostnames" 562 | msgstr "Resolve os nomes dos host locais" 563 | 564 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 565 | msgid "Resolve local hostnames by reading Dnsmasq lease file." 566 | msgstr "Resolve os nomes dos hosts lendo o arquivo de concessão do Dnsmasq." 567 | 568 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 569 | msgid "Response Mode" 570 | msgstr "" 571 | 572 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 573 | msgid "Restart" 574 | msgstr "Reiniciar" 575 | 576 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 577 | msgid "Restart Service" 578 | msgstr "Reiniciar o serviço" 579 | 580 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 581 | msgid "Second Server Settings" 582 | msgstr "Configurações do Segundo Servidor" 583 | 584 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 585 | msgid "Serve expired" 586 | msgstr "O servir expirou" 587 | 588 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 589 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 590 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 591 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 592 | msgid "Server Group" 593 | msgstr "Grupo dos Servidores" 594 | 595 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 596 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 597 | msgid "Server Group %s not exists" 598 | msgstr "" 599 | 600 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 601 | msgid "Server Name" 602 | msgstr "Nome do Servidor" 603 | 604 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 605 | msgid "Set Specific domain ip address." 606 | msgstr "Defina um endereço IP específico para o domínio." 607 | 608 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 609 | msgid "Set Specific domain rule list." 610 | msgstr "" 611 | 612 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 613 | msgid "Set Specific ip blacklist." 614 | msgstr "Defina um IP específico para a lista negra." 615 | 616 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 617 | msgid "Set TLS hostname to verify." 618 | msgstr "Defina o nome do host TLS para verificar." 619 | 620 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 621 | msgid "Set mark on packets." 622 | msgstr "" 623 | 624 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 625 | msgid "" 626 | "Set the HTTP host used for the query. Use this parameter when the host of " 627 | "the URL address is an IP address." 628 | msgstr "" 629 | "Defina o host HTTP utilizado para a consulta. Use este parâmetro quando o " 630 | "host da URL do endereço for um endereço IP." 631 | 632 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 633 | msgid "Sets the server name indication for query. '-' for disable SNI name." 634 | msgstr "" 635 | 636 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 637 | msgid "Settings" 638 | msgstr "Configurações" 639 | 640 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 641 | msgid "Skip Address Rules" 642 | msgstr "Ignora as Regras do Endereço" 643 | 644 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 645 | msgid "Skip Cache" 646 | msgstr "Ignora a Cache" 647 | 648 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 649 | msgid "Skip Cache." 650 | msgstr "Ignora a Cache." 651 | 652 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 653 | msgid "Skip Dualstack Selection" 654 | msgstr "Ignora a Seleção da Pilha Dupla" 655 | 656 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 657 | msgid "Skip Dualstack Selection." 658 | msgstr "Ignora a Seleção da Pilha Dupla." 659 | 660 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 661 | msgid "Skip Ipset Rule" 662 | msgstr "Ignora a Regra Ipset" 663 | 664 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 665 | msgid "Skip Nameserver Rule" 666 | msgstr "Ignora a Regra do Servidor de Nomes" 667 | 668 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 669 | msgid "Skip SOA Address Rule" 670 | msgstr "Ignorar a Regra do Endereço SOA" 671 | 672 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 673 | msgid "Skip SOA address rules." 674 | msgstr "Ignorar a Regra do Endereço SOA." 675 | 676 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 677 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 678 | msgid "Skip Speed Check" 679 | msgstr "Ignorar a Verificação da Velocidade" 680 | 681 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 682 | msgid "Skip address rules." 683 | msgstr "Ignora as Regras do Endereço." 684 | 685 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 686 | msgid "Skip ipset rules." 687 | msgstr "Ignore as regras do ipset." 688 | 689 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 690 | msgid "Skip nameserver rules." 691 | msgstr "Ignora a regra do servidor de nomes." 692 | 693 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 694 | #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 695 | msgid "SmartDNS" 696 | msgstr "SmartDNS" 697 | 698 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 699 | msgid "SmartDNS Server" 700 | msgstr "Servidor SmartDNS" 701 | 702 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 703 | msgid "" 704 | "SmartDNS is a local high-performance DNS server, supports finding fastest " 705 | "IP, supports ad filtering, and supports avoiding DNS poisoning." 706 | msgstr "" 707 | "O SmartDNS é um servidor DNS local de alto desempenho, é compatível com a " 708 | "localização rápida do IP, suporta filtragem de anúncios e previne o " 709 | "envenenamento do DNS." 710 | 711 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 712 | msgid "SmartDNS official website" 713 | msgstr "Site oficial do SmartDNS" 714 | 715 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 716 | msgid "Smartdns local server port" 717 | msgstr "Porta do servidor local Smartdns" 718 | 719 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 720 | msgid "" 721 | "Smartdns local server port, smartdns will be automatically set as main dns " 722 | "when the port is 53." 723 | msgstr "" 724 | "Porta do servidor local do Smartdns, o smartdns será automaticamente " 725 | "definido como dns principal quando a porta for 53." 726 | 727 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 728 | msgid "" 729 | "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " 730 | "return the fastest IP, Fastest Response: return the fastest DNS response." 731 | msgstr "" 732 | 733 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 734 | msgid "Smartdns server name" 735 | msgstr "Nome do servidor Smartdns" 736 | 737 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 738 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 739 | msgid "Smartdns speed check mode." 740 | msgstr "" 741 | 742 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 743 | msgid "" 744 | "Specify an IP address to return for any host in the given domains, Queries " 745 | "in the domains are never forwarded and always replied to with the specified " 746 | "IP address which may be IPv4 or IPv6." 747 | msgstr "" 748 | "Especifique um endereço IP para retornar para qualquer host nos domínios " 749 | "determinados, as consultas nos domínios nunca são encaminhadas e sempre " 750 | "respondidas de forma especificada com o endereço IP que tanto pode ser IPv4 " 751 | "ou IPv6." 752 | 753 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 754 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 755 | msgid "Speed Check Mode" 756 | msgstr "" 757 | 758 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 759 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 760 | msgid "Speed check mode is invalid." 761 | msgstr "" 762 | 763 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 764 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 765 | msgid "TCP Server" 766 | msgstr "Servidor TCP" 767 | 768 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 769 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 770 | msgid "TCP port is empty" 771 | msgstr "" 772 | 773 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 774 | msgid "TLS Hostname Verify" 775 | msgstr "Verificar o Nome do Host TLS" 776 | 777 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 778 | msgid "TLS SNI name" 779 | msgstr "Nome TLS SNI" 780 | 781 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 782 | msgid "TLS SPKI Pinning" 783 | msgstr "Fixação TLS SPKI" 784 | 785 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 786 | msgid "TTL for all domain result." 787 | msgstr "O TTL para todos os resultados do domínio." 788 | 789 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 790 | msgid "Technical Support" 791 | msgstr "Suporte Técnico" 792 | 793 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 794 | msgid "URL" 795 | msgstr "" 796 | 797 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 798 | msgid "URL format error, format: http:// or https://" 799 | msgstr "" 800 | 801 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 802 | msgid "Update" 803 | msgstr "" 804 | 805 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 806 | msgid "Update Files" 807 | msgstr "" 808 | 809 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 810 | msgid "Upload Config File" 811 | msgstr "" 812 | 813 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 814 | msgid "Upload Domain List File" 815 | msgstr "" 816 | 817 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 818 | msgid "Upload domain list file to /etc/smartdns/domain-set" 819 | msgstr "" 820 | 821 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 822 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 823 | msgid "" 824 | "Upload domain list file, or configure auto download from Download File " 825 | "Setting page." 826 | msgstr "" 827 | 828 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 829 | msgid "Upload domain list file." 830 | msgstr "" 831 | 832 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 833 | msgid "Upload smartdns config file to /etc/smartdns/conf.d" 834 | msgstr "" 835 | 836 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 837 | msgid "Upstream Servers" 838 | msgstr "Servidores upstream" 839 | 840 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 841 | msgid "" 842 | "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " 843 | "servers, including multiple foreign DNS servers." 844 | msgstr "" 845 | "Servidores upstream, suporte UDP, protocolo TCP. Configure os vários " 846 | "servidores DNS, incluindo vários servidores DNS externos." 847 | 848 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 849 | msgid "Use Proxy" 850 | msgstr "" 851 | 852 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 853 | msgid "Use proxy to connect to upstream DNS server." 854 | msgstr "" 855 | 856 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 857 | msgid "" 858 | "Used to verify the validity of the TLS server, The value is Base64 encoded " 859 | "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " 860 | "verified." 861 | msgstr "" 862 | "Utilizado para verificar a validade do servidor TLS, o valor é a impressão " 863 | "digital SPKI codificada com base64, deixando em branco para indicar que a " 864 | "validade do TLS não será verificada." 865 | 866 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 867 | msgid "Write cache to disk on exit and load on startup." 868 | msgstr "" 869 | 870 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 871 | msgid "Yes" 872 | msgstr "" 873 | 874 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 875 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 876 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:611 877 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 878 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 879 | msgid "default" 880 | msgstr "" 881 | 882 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 883 | msgid "domain list (/etc/smartdns/domain-set)" 884 | msgstr "" 885 | 886 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 887 | msgid "https" 888 | msgstr "https" 889 | 890 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 891 | msgid "ip" 892 | msgstr "IP" 893 | 894 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 895 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 896 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 897 | msgid "ipset name format error, format: [#[4|6]:]ipsetname" 898 | msgstr "" 899 | 900 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 901 | msgid "open website" 902 | msgstr "abrir o website" 903 | 904 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 905 | msgid "port" 906 | msgstr "porta" 907 | 908 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 909 | msgid "smartdns config (/etc/smartdns/conf.d)" 910 | msgstr "" 911 | 912 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 913 | msgid "smartdns custom settings" 914 | msgstr "configurações personalizadas do smartdns" 915 | 916 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 917 | msgid "tcp" 918 | msgstr "tcp" 919 | 920 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 921 | msgid "tls" 922 | msgstr "tls" 923 | 924 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 925 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 926 | msgid "type" 927 | msgstr "tipo" 928 | 929 | #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 930 | msgid "udp" 931 | msgstr "udp" 932 | 933 | #~ msgid "" 934 | #~ "DNS Server group belongs to, used with nameserver, such as office, home." 935 | #~ msgstr "" 936 | #~ "O grupo do Servidor DNS pertence a, usado em conjunto com o nameserver " 937 | #~ "(nome do servidor), assim como em office, em casa." 938 | 939 | #~ msgid "Dnsmasq Forwared To Smartdns Failure" 940 | #~ msgstr "Encaminhamento do Dnsmasq para Falha do Smartdns" 941 | 942 | #~ msgid "Sets the server name indication for query." 943 | #~ msgstr "Define a indicação do nome do servidor para consulta." 944 | 945 | #~ msgid "IPv4 53 Port Redirect Failure" 946 | #~ msgstr "Falha no Redirecionamento da Porta IPv4 53" 947 | 948 | #~ msgid "IPv6 53 Port Redirect Failure" 949 | #~ msgstr "Falha no Redirecionamento da Porta IPv6 53" 950 | 951 | #~ msgid "Redirect" 952 | #~ msgstr "Redirecione" 953 | 954 | #~ msgid "Redirect 53 port to SmartDNS" 955 | #~ msgstr "Redirecionar a porta 53 para o SmartDNS" 956 | 957 | #~ msgid "Run as dnsmasq upstream server" 958 | #~ msgstr "Executar como servidor dnsmasq upstream" 959 | 960 | #~ msgid "SmartDNS redirect mode" 961 | #~ msgstr "SmartDNS, modo de redirecionamento" 962 | 963 | #~ msgid "none" 964 | #~ msgstr "nenhum" 965 | --------------------------------------------------------------------------------