Skip to content
module("luci.controller.rclone", package.seeall)
function index()
if not nixio.fs.access("/etc/config/rclone") then return end
entry({"admin", "nas"}, firstchild(), _("NAS") , 45).dependent = false
entry({"admin", "nas", "rclone"}, cbi("rclone"), _("Rclone"), 100 ).dependent = false
end
require('luci.sys')
require('luci.util')
local ipkg = require('luci.model.ipkg')
local fs = require 'nixio.fs'
local uci = require 'luci.model.uci'.cursor()
local m, s
local running = (luci.sys.call('pidof rclone > /dev/null') == 0)
local state_msg = ''
local trport = uci:get('rclone', 'config', 'port')
local triptype = uci:get('rclone', 'config', 'addr_type')
local trip = ''
if triptype == 'local' then
trip = uci:get('network', 'loopback', 'ipaddr')
elseif triptype == 'lan' then
trip = uci:get('network', 'lan', 'ipaddr')
else
trip = '[ip]'
end
if running then
state_msg = '<b><font color="green">' .. translate('rclone running') .. '</font></b>'
address_msg = translate('rclone address') .. ' : http://' .. trip .. ':' .. trport .. '<br/> <br/>'
else
state_msg = '<b><font color="red">' .. translate('rclone not run') .. '</font></b>'
address_msg = ''
end
if ipkg.installed("rclone-webui-react") and ipkg.installed("rclone-ng") then
m =
Map(
'rclone',
translate('Rclone'),
translate('Rclone ("rsync for cloud storage") is a command line program to sync root/usr/bin and directories to and from different cloud storage providers.') ..
' <br/> <br/> ' .. translate('rclone state') .. ' : ' .. state_msg .. '<br/> <br/>'
.. address_msg ..
translate('Installed Web Interface') ..
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" class="cbi-button" style="margin: 0 5px;" value=" ' ..
translate('Webui React') ..
" \" onclick=\"window.open('http://'+window.location.hostname+'/rclone-webui-react')\"/>" ..
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" class="cbi-button" style="margin: 0 5px;" value=" ' ..
translate('RcloneNg') ..
" \" onclick=\"window.open('http://'+window.location.hostname+'/RcloneNg')\"/> <br/><br/>"
)
elseif ipkg.installed("rclone-webui-react") then
m =
Map(
'rclone',
translate('Rclone'),
translate('Rclone ("rsync for cloud storage") is a command line program to sync root/usr/bin and directories to and from different cloud storage providers.') ..
' <br/> <br/> ' .. translate('rclone state') .. ' : ' .. state_msg .. '<br/> <br/>'
.. address_msg ..
translate('Installed Web Interface') ..
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" class="cbi-button" style="margin: 0 5px;" value=" ' ..
translate('Webui React') ..
" \" onclick=\"window.open('http://'+window.location.hostname+'/rclone-webui-react')\"/>"
)
elseif ipkg.installed("rclone-ng") then
m =
Map(
'rclone',
translate('Rclone'),
translate('Rclone ("rsync for cloud storage") is a command line program to sync root/usr/bin and directories to and from different cloud storage providers.') ..
' <br/> <br/> ' .. translate('rclone state') .. ' : ' .. state_msg .. '<br/> <br/>'
.. address_msg ..
translate('Installed Web Interface') ..
'&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input type="button" class="cbi-button" style="margin: 0 5px;" value=" ' ..
translate('RcloneNg') ..
" \" onclick=\"window.open('http://'+window.location.hostname+'/RcloneNg')\"/> <br/><br/>"
)
else
m =
Map(
'rclone',
translate('Rclone'),
translate('Rclone ("rsync for cloud storage") is a command line program to sync root/usr/bin and directories to and from different cloud storage providers.') ..
' <br/> <br/> ' .. translate('rclone state') .. ' : ' .. state_msg .. '<br/> <br/>'
.. address_msg
)
end
s = m:section(TypedSection, 'global', translate('global'))
s.addremove = false
s.anonymous = true
enable = s:option(Flag, 'enabled', translate('run Rclone as daemon'))
enable.rmempty = false
s = m:section(TypedSection, 'conf', translate('configure'))
s.addremove = false
s.anonymous = true
o = s:option(ListValue, 'addr_type', translate('listen address'))
o:value('local', translate('localhost address'))
o:value('lan', translate('local network address'))
o:value('all', translate('all address'))
o.default = 'lan'
o.rmempty = false
o = s:option(Value, 'port', translate('listen port'))
o.placeholder = 5572
o.default = 5572
o.datatype = 'port'
o.rmempty = false
o = s:option(Value, 'config_path', translate('rclone configuration file path'))
o.placeholder = '/etc/rclone/rclone.conf'
o.default = '/etc/rclone/rclone.conf'
o.rmempty = false
o.description = translate("Recommand: run ") ..
"<span style=\"background: lightgray;border-radius: 4px;padding-left: 4px;padding-right: 4px;\">rclone config --config rclone.conf</span>" ..
translate(" to setup configuration on pc,") .. "</br>" .. translate("than updaload configuration to here.")
o = s:option(Button,"config_download",translate("download configuration"))
o.inputtitle = translate("download")
o.inputstyle = "apply"
o.write = function()
Download()
end
function Download()
local t,e
t=nixio.open(uci:get('rclone', 'config', 'config_path'),"r")
luci.http.header('Content-Disposition','attachment; filename="rclone.conf"')
luci.http.prepare_content("application/octet-stream")
while true do
e=t:read(nixio.const.buffersize)
if(not e)or(#e==0)then
break
else
luci.http.write(e)
end
end
t:close()
luci.http.close()
end
o = s:option(Value, 'username', translate('username'))
o.placeholder = 'admin'
o.default = 'admin'
o.rmempty = false
o = s:option(Value, 'password', translate('password'))
o.password = true
o.placeholder = 'admin'
o.default = 'admin'
o.rmempty = false
s = m:section(TypedSection, 'proxy', translate('proxy'))
s.addremove = false
s.anonymous = true
s.description = "<a style=\"color:#fb6340;\" href=\"#\" onclick=\"window.open('https://rclone.org/faq/#can-i-use-rclone-with-an-http-proxy')\">"
..translate("FAQ").."</a>"
enable = s:option(Flag, 'enabled', translate('enable proxy'))
enable.rmempty = false
o = s:option(Value, 'proxy_addr', translate('proxy address'))
o.placeholder = 'socks5://127.0.0.1:1080'
o.default = 'socks5://127.0.0.1:1080'
o.rmempty = false
o.description = translate("The content of the variable is protocol://server:port. The protocol value is commonly either http or socks5.")
s = m:section(TypedSection, 'log', translate('log'))
s.addremove = false
s.anonymous = true
o = s:option(Value, 'path', translate('path'))
o.placeholder = '/var/log/rclone/output'
o.default = '/var/log/rclone/output'
o.rmempty = false
return m
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n"
"Language-Team: none\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:41
msgid "Installed Web Interface"
msgstr "Installed Web Interface"
#: luci-app-rclone/luasrc/controller/rclone.lua:7
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:37
msgid "Rclone"
msgstr "Rclone"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:38
msgid ""
"Rclone (\"rsync for cloud storage\") is a command line program to sync root/"
"usr/bin and directories to and from different cloud storage providers."
msgstr ""
"Rclone (\"rsync for cloud storage\") is a command line program to sync root/"
"usr/bin and directories to and from different cloud storage providers."
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:43
msgid "Webui React"
msgstr "Webui React"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:61
msgid "all address"
msgstr "all address"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:54
msgid "configure"
msgstr "configure"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:77
msgid "download"
msgstr "download"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:76
msgid "download configuration"
msgstr "download configuration"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:47
msgid "global"
msgstr "global"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:58
msgid "listen address"
msgstr "listen address"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:65
msgid "listen port"
msgstr "listen port"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:60
msgid "local network address"
msgstr "local network address"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:59
msgid "localhost address"
msgstr "localhost address"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:111
msgid "log"
msgstr "log"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:105
msgid "password"
msgstr "password"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:115
msgid "path"
msgstr "path"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:28
msgid "rclone address"
msgstr ""
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:71
msgid "rclone configuration file path"
msgstr "rclone configuration file path"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:30
msgid "rclone not run"
msgstr "rclone not run"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:27
msgid "rclone running"
msgstr "rclone running"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:39
msgid "rclone state"
msgstr "rclone state"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:51
msgid "run Rclone as daemon"
msgstr "run Rclone as daemon"
#: luci-app-rclone/luasrc/model/cbi/rclone.lua:100
msgid "username"
msgstr "username"
#~ msgid "run Rclone in daeman"
#~ msgstr "run Rclone in daeman"
msgid ""
msgstr "Content-Type: text/plain; charset=UTF-8"
#: luasrc/model/cbi/rclone.lua:121
msgid "FAQ"
msgstr ""
#: luasrc/model/cbi/rclone.lua:41
msgid "Installed Web Interface"
msgstr ""
#: luasrc/controller/rclone.lua:5
msgid "NAS"
msgstr ""
#: luasrc/model/cbi/rclone.lua:37 luasrc/controller/rclone.lua:6
msgid "Rclone"
msgstr ""
#: luasrc/model/cbi/rclone.lua:38
msgid ""
"Rclone (\"rsync for cloud storage\") is a command line program to sync root/"
"usr/bin and directories to and from different cloud storage providers."
msgstr ""
#: luasrc/model/cbi/rclone.lua:46
msgid "RcloneNg"
msgstr ""
#: luasrc/model/cbi/rclone.lua:78
msgid "Recommand: run"
msgstr ""
#: luasrc/model/cbi/rclone.lua:130
msgid ""
"The content of the variable is protocol://server:port. The protocol value is "
"commonly either http or socks5."
msgstr ""
#: luasrc/model/cbi/rclone.lua:43
msgid "Webui React"
msgstr ""
#: luasrc/model/cbi/rclone.lua:64
msgid "all address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:57
msgid "configure"
msgstr ""
#: luasrc/model/cbi/rclone.lua:83
msgid "download"
msgstr ""
#: luasrc/model/cbi/rclone.lua:82
msgid "download configuration"
msgstr ""
#: luasrc/model/cbi/rclone.lua:123
msgid "enable proxy"
msgstr ""
#: luasrc/model/cbi/rclone.lua:50
msgid "global"
msgstr ""
#: luasrc/model/cbi/rclone.lua:61
msgid "listen address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:68
msgid "listen port"
msgstr ""
#: luasrc/model/cbi/rclone.lua:63
msgid "local network address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:62
msgid "localhost address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:132
msgid "log"
msgstr ""
#: luasrc/model/cbi/rclone.lua:111
msgid "password"
msgstr ""
#: luasrc/model/cbi/rclone.lua:136
msgid "path"
msgstr ""
#: luasrc/model/cbi/rclone.lua:117
msgid "proxy"
msgstr ""
#: luasrc/model/cbi/rclone.lua:126
msgid "proxy address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:28
msgid "rclone address"
msgstr ""
#: luasrc/model/cbi/rclone.lua:74
msgid "rclone configuration file path"
msgstr ""
#: luasrc/model/cbi/rclone.lua:30
msgid "rclone not run"
msgstr ""
#: luasrc/model/cbi/rclone.lua:27
msgid "rclone running"
msgstr ""
#: luasrc/model/cbi/rclone.lua:39
msgid "rclone state"
msgstr ""
#: luasrc/model/cbi/rclone.lua:54
msgid "run Rclone as daemon"
msgstr ""
#: luasrc/model/cbi/rclone.lua:80
msgid "than updaload configuration to here."
msgstr ""
#: luasrc/model/cbi/rclone.lua:80
msgid "to setup configuration on pc,"
msgstr ""
#: luasrc/model/cbi/rclone.lua:106
msgid "username"
msgstr ""
../zh_Hans/luci-app-rclone.po
\ No newline at end of file
msgid ""
msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: \n"
"Last-Translator: ElonH <elonhhuang@gmail.com>\n"
"Language-Team: none\n"
"Language: zh-Hans\n"
"MIME-Version: 1.0\n"
"Content-Transfer-Encoding: 8bit\n"
"POT-Creation-Date: \n"
"PO-Revision-Date: \n"
"X-Generator: Poedit 2.0.6\n"
#: luasrc/model/cbi/rclone.lua:121
msgid "FAQ"
msgstr "常见问题"
#: luasrc/model/cbi/rclone.lua:41
msgid "Installed Web Interface"
msgstr "已安装Web界面"
#: luasrc/controller/rclone.lua:5
msgid "NAS"
msgstr "存储"
#: luasrc/model/cbi/rclone.lua:37 luasrc/controller/rclone.lua:6
msgid "Rclone"
msgstr "Rclone"
#: luasrc/model/cbi/rclone.lua:38
msgid ""
"Rclone (\"rsync for cloud storage\") is a command line program to sync root/"
"usr/bin and directories to and from different cloud storage providers."
msgstr ""
"Rclone是一款的命令行工具,支持在不同对象存储、网盘间同步、上传、下载数据。"
#: luasrc/model/cbi/rclone.lua:46
msgid "RcloneNg"
msgstr "RcloneNg"
#: luasrc/model/cbi/rclone.lua:78
msgid "Recommand: run"
msgstr "建议: 在 PC 上运行"
#: luasrc/model/cbi/rclone.lua:130
msgid ""
"The content of the variable is protocol://server:port. The protocol value is "
"commonly either http or socks5."
msgstr ""
"内容格式为: protocol://server:port\n"
"protocol 通常为 http 或者 socks5"
#: luasrc/model/cbi/rclone.lua:43
msgid "Webui React"
msgstr "Webui React"
#: luasrc/model/cbi/rclone.lua:64
msgid "all address"
msgstr "全部地址"
#: luasrc/model/cbi/rclone.lua:57
msgid "configure"
msgstr "配置"
#: luasrc/model/cbi/rclone.lua:83
msgid "download"
msgstr "下载"
#: luasrc/model/cbi/rclone.lua:82
msgid "download configuration"
msgstr "下载配置文件"
#: luasrc/model/cbi/rclone.lua:123
msgid "enable proxy"
msgstr "启用代理"
#: luasrc/model/cbi/rclone.lua:50
msgid "global"
msgstr "全局"
#: luasrc/model/cbi/rclone.lua:61
msgid "listen address"
msgstr "监听地址"
#: luasrc/model/cbi/rclone.lua:68
msgid "listen port"
msgstr "监听端口"
#: luasrc/model/cbi/rclone.lua:63
msgid "local network address"
msgstr "局域网地址"
#: luasrc/model/cbi/rclone.lua:62
msgid "localhost address"
msgstr "本机地址"
#: luasrc/model/cbi/rclone.lua:132
msgid "log"
msgstr "日志"
#: luasrc/model/cbi/rclone.lua:111
msgid "password"
msgstr "密码"
#: luasrc/model/cbi/rclone.lua:136
msgid "path"
msgstr "路径"
#: luasrc/model/cbi/rclone.lua:117
msgid "proxy"
msgstr "代理"
#: luasrc/model/cbi/rclone.lua:126
msgid "proxy address"
msgstr "代理地址"
#: luasrc/model/cbi/rclone.lua:28
msgid "rclone address"
msgstr "rclone 地址"
#: luasrc/model/cbi/rclone.lua:74
msgid "rclone configuration file path"
msgstr "rclone 配置文件地址"
#: luasrc/model/cbi/rclone.lua:30
msgid "rclone not run"
msgstr "rclone未运行"
#: luasrc/model/cbi/rclone.lua:27
msgid "rclone running"
msgstr "rclone 运行中"
#: luasrc/model/cbi/rclone.lua:39
msgid "rclone state"
msgstr "rclone 状态"
#: luasrc/model/cbi/rclone.lua:54
msgid "run Rclone as daemon"
msgstr "启动 rclone 后台服务"
#: luasrc/model/cbi/rclone.lua:80
msgid "than updaload configuration to here."
msgstr "然后上传配置文件到这里"
#: luasrc/model/cbi/rclone.lua:80
msgid "to setup configuration on pc,"
msgstr "命令设置 rclone 配置文件,"
#: luasrc/model/cbi/rclone.lua:106
msgid "username"
msgstr "用户名"
#~ msgid "Hosts must be comma separated, and can contain domains or parts."
#~ msgstr "用逗号分隔地址,且地址必须包含(部分)域名"
#~ msgid "This allows you to disable the proxy for specific hosts."
#~ msgstr "这允许不代理特定的地址."
#~ msgid "How to proxy rclone"
#~ msgstr "如何代理rclone"
#~ msgid "disable proxy for specific hosts"
#~ msgstr "针对特定主机禁用代理"
#~ msgid ""
#~ "rclone will follow the standard environment variables for proxies, "
#~ "similar to cURL and other programs."
#~ msgstr "rclone 会使用代理的标准环境变量,类似于 cURL 及其他程序。"
#~ msgid "run Rclone in daeman"
#~ msgstr "启动 rclone 后台服务"
#!/bin/sh
uci -q batch <<-EOF >/dev/null
delete ucitrack.@rclone[-1]
add ucitrack rclone
set ucitrack.@rclone[-1].init=rclone
commit ucitrack
EOF
rm -f /tmp/luci-indexcache
exit 0
{
"luci-app-rclone": {
"description": "Grant UCI access for luci-app-rclone",
"read": {
"uci": ["rclone"]
},
"write": {
"uci": ["rclone"]
}
}
}
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2021-02-07 07:33+0000\n" "PO-Revision-Date: 2024-03-28 23:40+0000\n"
"Last-Translator: Satoru Yoshida <ramat@ram.ne.jp>\n" "Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsrp-pppoe-server/ja/>\n" "luciapplicationsrp-pppoe-server/ja/>\n"
"Language: ja\n" "Language: ja\n"
...@@ -10,15 +10,15 @@ msgstr "" ...@@ -10,15 +10,15 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.5-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:19 #: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:19
msgid "Access Concentrator Name" msgid "Access Concentrator Name"
msgstr "" msgstr "アクセスコンセントレータ名"
#: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:32 #: applications/luci-app-rp-pppoe-server/luasrc/model/cbi/rp-pppoe-server.lua:32
msgid "First remote IP" msgid "First remote IP"
msgstr "" msgstr "最初のリモートIP"
#: applications/luci-app-rp-pppoe-server/root/usr/share/rpcd/acl.d/luci-app-rp-pppoe-server.json:3 #: applications/luci-app-rp-pppoe-server/root/usr/share/rpcd/acl.d/luci-app-rp-pppoe-server.json:3
msgid "Grant UCI access for luci-app-rp-pppoe-server" msgid "Grant UCI access for luci-app-rp-pppoe-server"
......
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2022-09-04 03:20+0000\n" "PO-Revision-Date: 2024-03-28 23:40+0000\n"
"Last-Translator: yamaken <k-yamada@yamaken.jp>\n" "Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsser2net/ja/>\n" "luciapplicationsser2net/ja/>\n"
"Language: ja\n" "Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.14.1-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71
msgid "Allow the RFC 2217 protocol" msgid "Allow the RFC 2217 protocol"
msgstr "" msgstr "RFC 2217プロトコルを許可する"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:38 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:38
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:37 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:37
msgid "Baud rate" msgid "Baud rate"
msgstr "" msgstr "ボーレート"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:25 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:25
msgid "Binding address" msgid "Binding address"
......
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-01-27 05:13+0000\n" "PO-Revision-Date: 2024-03-27 07:48+0000\n"
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" "Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsser2net/lt/>\n" "luciapplicationsser2net/lt/>\n"
...@@ -12,7 +12,7 @@ msgstr "" ...@@ -12,7 +12,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n" "1 : 2);\n"
"X-Generator: Weblate 5.4-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71
...@@ -129,7 +129,7 @@ msgstr "" ...@@ -129,7 +129,7 @@ msgstr ""
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:24 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:24
msgid "Raw" msgid "Raw"
msgstr "" msgstr "Neapdoroti"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:25 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:25
msgid "Rawlp" msgid "Rawlp"
......
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2022-02-27 04:56+0000\n" "PO-Revision-Date: 2024-04-01 08:36+0000\n"
"Last-Translator: semih <semiht@gmail.com>\n" "Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsser2net/tr/>\n" "luciapplicationsser2net/tr/>\n"
"Language: tr\n" "Language: tr\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 4.11.1-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:72
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:71
...@@ -94,7 +94,7 @@ msgstr "LED'ler" ...@@ -94,7 +94,7 @@ msgstr "LED'ler"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:59 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:59
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:58 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:58
msgid "None" msgid "None"
msgstr "Yok" msgstr "Hiçbiri"
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:61 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/proxies.js:61
#: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:60 #: applications/luci-app-ser2net/htdocs/luci-static/resources/view/ser2net/settings.js:60
......
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2020-11-22 15:35+0000\n" "PO-Revision-Date: 2024-03-28 23:40+0000\n"
"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" "Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsshadowsocks-libev/ja/>\n" "luciapplicationsshadowsocks-libev/ja/>\n"
"Language: ja\n" "Language: ja\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 4.4-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45
msgid "-- instance type --" msgid "-- instance type --"
msgstr "" msgstr "-- インスタンスタイプ --"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/shadowsocks-libev.js:225 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/shadowsocks-libev.js:225
msgid "<hidden>" msgid "<hidden>"
msgstr "" msgstr "<非表示>"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:113 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:113
msgid "ACL file" msgid "ACL file"
......
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-01-20 10:36+0000\n" "PO-Revision-Date: 2024-03-27 01:01+0000\n"
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" "Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsshadowsocks-libev/lt/>\n" "luciapplicationsshadowsocks-libev/lt/>\n"
...@@ -12,7 +12,7 @@ msgstr "" ...@@ -12,7 +12,7 @@ msgstr ""
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > " "Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? " "19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
"1 : 2);\n" "1 : 2);\n"
"X-Generator: Weblate 5.4-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45
msgid "-- instance type --" msgid "-- instance type --"
...@@ -82,7 +82,7 @@ msgstr "Išjungti" ...@@ -82,7 +82,7 @@ msgstr "Išjungti"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:145 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:145
msgid "Disabled" msgid "Disabled"
msgstr "Išjungtas/-i" msgstr "Išjungta/-as/-i"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/rules.js:105 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/rules.js:105
msgid "Dst default" msgid "Dst default"
......
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2023-10-29 19:41+0000\n" "PO-Revision-Date: 2024-04-01 08:36+0000\n"
"Last-Translator: semih <semiht@gmail.com>\n" "Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsshadowsocks-libev/tr/>\n" "luciapplicationsshadowsocks-libev/tr/>\n"
"Language: tr\n" "Language: tr\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=n != 1;\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.2-dev\n" "X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:45
msgid "-- instance type --" msgid "-- instance type --"
...@@ -86,7 +86,7 @@ msgstr "Devre dışı bırak" ...@@ -86,7 +86,7 @@ msgstr "Devre dışı bırak"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:145 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:145
msgid "Disabled" msgid "Disabled"
msgstr "Devre dışı" msgstr "Devre dışı bırakıldı"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/rules.js:105 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/rules.js:105
msgid "Dst default" msgid "Dst default"
......
msgid "" msgid ""
msgstr "" msgstr ""
"PO-Revision-Date: 2024-02-25 06:41+0000\n" "PO-Revision-Date: 2024-04-02 00:32+0000\n"
"Last-Translator: Костянтин Серьогін <seryoginki@gmail.com>\n" "Last-Translator: Ievgen Ievgen <jony057dev@gmail.com>\n"
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationsshadowsocks-libev/uk/>\n" "luciapplicationsshadowsocks-libev/uk/>\n"
"Language: uk\n" "Language: uk\n"
...@@ -17,7 +17,7 @@ msgstr "-- тип екземпляра --" ...@@ -17,7 +17,7 @@ msgstr "-- тип екземпляра --"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/shadowsocks-libev.js:225 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/shadowsocks-libev.js:225
msgid "<hidden>" msgid "<hidden>"
msgstr "" msgstr "<приховано>"
#: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:113 #: applications/luci-app-shadowsocks-libev/htdocs/luci-static/resources/view/shadowsocks-libev/instances.js:113
msgid "ACL file" msgid "ACL file"
......
...@@ -4,7 +4,7 @@ ...@@ -4,7 +4,7 @@
"order": 99, "order": 99,
"action": { "action": {
"type": "form", "type": "form",
"path": "clamav", "path": "siitwizard",
"post": { "cbi.submit": true } "post": { "cbi.submit": true }
} }
} }
......
msgid "" msgid ""
msgstr "" msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n" "PO-Revision-Date: 2024-03-28 23:40+0000\n"
"Language-Team: none\n" "Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n"
"Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssmartdns/ja/>\n"
"Language: ja\n" "Language: ja\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=1; plural=0;\n" "Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "" msgstr "アップストリームDNSサーバーの追加引数"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090
...@@ -39,7 +42,7 @@ msgstr "" ...@@ -39,7 +42,7 @@ msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr "詳細設定"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "" msgid ""
......
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"PO-Revision-Date: 2024-03-14 23:45+0000\n" "PO-Revision-Date: 2024-04-02 20:21+0000\n"
"Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n" "Last-Translator: Džiugas J <dziugas1959@hotmail.com>\n"
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" "Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssmartdns/lt/>\n" "luciapplicationssmartdns/lt/>\n"
...@@ -255,25 +255,25 @@ msgstr "Įjungti/Įgalinti" ...@@ -255,25 +255,25 @@ msgstr "Įjungti/Įgalinti"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495
msgid "Enable Auto Update" msgid "Enable Auto Update"
msgstr "" msgstr "Įgalinti automatinį atnaujinimą"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "" msgstr "Įjungti/Įgalinti IP parinktį tarp IPv4 ir IPv6"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "" msgstr "Įjungti/Įgalinti IPv6 „DNS“ serverį"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "" msgstr "Įjungti/Įgalinti „TCP“ „DNS“ serverį"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495
msgid "Enable daily auto update." msgid "Enable daily auto update."
msgstr "" msgstr "Įgalinti automatinius, kasdieninius atnaujinimus."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
...@@ -317,7 +317,7 @@ msgstr "" ...@@ -317,7 +317,7 @@ msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214
msgid "First Ping" msgid "First Ping"
msgstr "" msgstr "Pirmasis ryšio atsakas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436
...@@ -367,11 +367,11 @@ msgstr "„HTTP“ skleidėjas/p.k – vedėjas" ...@@ -367,11 +367,11 @@ msgstr "„HTTP“ skleidėjas/p.k – vedėjas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "" msgstr "Draudžiamasis IP sąrašas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "" msgstr "Draudžiamojo IP sąrašo filtravimas"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224
msgid "IPV6 Server" msgid "IPV6 Server"
...@@ -397,7 +397,7 @@ msgstr "" ...@@ -397,7 +397,7 @@ msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353
msgid "Include Config Files<br>/etc/smartdns/conf.d" msgid "Include Config Files<br>/etc/smartdns/conf.d"
msgstr "" msgstr "Įtraukti konfigūracijos failus<br>„/etc/smartdns/conf.d“"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354
msgid "" msgid ""
......
msgid "" msgid ""
msgstr "" msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Project-Id-Version: PACKAGE VERSION\n" "Project-Id-Version: PACKAGE VERSION\n"
"Last-Translator: Automatically generated\n" "PO-Revision-Date: 2024-03-31 19:54+0000\n"
"Language-Team: none\n" "Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n"
"Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/"
"luciapplicationssmartdns/tr/>\n"
"Language: tr\n" "Language: tr\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=n != 1;\n"
"X-Generator: Weblate 5.5-dev\n"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:792
msgid "Additional Args for upstream dns servers" msgid "Additional Args for upstream dns servers"
msgstr "" msgstr "Yukarı akış dns sunucuları için ek komutlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:886
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1090
msgid "" msgid ""
"Additional Flags for rules, read help on domain-rule for more information." "Additional Flags for rules, read help on domain-rule for more information."
msgstr "" msgstr ""
"Kurallar için Ek Bayraklar, daha fazla bilgi için domain-rule hakkındaki "
"yardımı okuyun."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:885
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1089
msgid "Additional Rule Flag" msgid "Additional Rule Flag"
msgstr "" msgstr "Ek Kural Bayrağı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:346
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:479
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:791
msgid "Additional Server Args" msgid "Additional Server Args"
msgstr "" msgstr "Ek Sunucu Komutları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:347
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:480
msgid "" msgid ""
"Additional server args, refer to the help description of the bind option." "Additional server args, refer to the help description of the bind option."
msgstr "" msgstr "Ek sunucu komutları için bind seçeneğinin yardım açıklamasına bakın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:132
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:639
msgid "Advanced Settings" msgid "Advanced Settings"
msgstr "" msgstr "Gelişmiş Ayarlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:253
msgid "" msgid ""
"Attempts to serve old responses from cache with a TTL of 0 in the response " "Attempts to serve old responses from cache with a TTL of 0 in the response "
"without waiting for the actual resolution to finish." "without waiting for the actual resolution to finish."
msgstr "" msgstr ""
"Gerçek çözünürlüğün bitmesini beklemeden yanıtta TTL değeri 0 olan "
"önbellekten eski yanıtları sunmaya çalışır."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161
msgid "Automatically Set Dnsmasq" msgid "Automatically Set Dnsmasq"
msgstr "" msgstr "Dnsmasq'ı Otomatik Olarak Ayarla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:161
msgid "Automatically set as upstream of dnsmasq when port changes." msgid "Automatically set as upstream of dnsmasq when port changes."
msgstr "" msgstr ""
"Port değiştiğinde otomatik olarak dnsmasq'ın yukarı akışı olarak ayarlanır."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229
msgid "Bind Device" msgid "Bind Device"
msgstr "" msgstr "Cihazı Bağla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234
msgid "Bind Device Name" msgid "Bind Device Name"
msgstr "" msgstr "Cihaz Adı Bağla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998
msgid "Block domain" msgid "Block domain"
msgstr "" msgstr "Etki alanını engelle"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:998
msgid "Block domain." msgid "Block domain."
msgstr "" msgstr "Etki alanını engelle."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262
msgid "Cache Persist" msgid "Cache Persist"
msgstr "" msgstr "Önbellek Kalıcılığı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258
msgid "Cache Size" msgid "Cache Size"
msgstr "" msgstr "Önbellek Boyutu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:121
msgid "Collecting data ..." msgid "Collecting data ..."
msgstr "" msgstr "Veri toplama ..."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1100
msgid "" msgid ""
"Configure IP blacklists that will be filtered from the results of specific " "Configure IP blacklists that will be filtered from the results of specific "
"DNS server." "DNS server."
msgstr "" msgstr ""
"Belirli DNS sunucusunun sonuçlarından filtrelenecek IP kara listelerini "
"yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929
msgid "Configure block domain list." msgid "Configure block domain list."
msgstr "" msgstr "Engellenen etki alanı listesini yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:950
msgid "Configure domain rule list." msgid "Configure domain rule list."
msgstr "" msgstr "Alan adı kural listesini yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900
msgid "Configure forwarding domain name list." msgid "Configure forwarding domain name list."
msgstr "" msgstr "Yönlendirme alan adı listesini yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:137
msgid "Custom Settings" msgid "Custom Settings"
msgstr "" msgstr "Özel Ayarlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:805
msgid "DNS Block Setting" msgid "DNS Block Setting"
msgstr "" msgstr "DNS Engelleme Ayarı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:804
msgid "DNS Forwarding Setting" msgid "DNS Forwarding Setting"
msgstr "" msgstr "DNS Yönlendirme Ayarı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:648
msgid "DNS Server Name" msgid "DNS Server Name"
msgstr "" msgstr "DNS Sunucu Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:675
msgid "DNS Server group" msgid "DNS Server group"
msgstr "" msgstr "DNS Sunucu grubu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967
msgid "DNS Server group belongs to, such as office, home." msgid "DNS Server group belongs to, such as office, home."
msgstr "" msgstr "DNS Sunucusu grubunun ait olduğu yer, örneğin ofis, ev."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:651
msgid "DNS Server ip" msgid "DNS Server ip"
msgstr "" msgstr "DNS Sunucusu ip"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:656
msgid "DNS Server port" msgid "DNS Server port"
msgstr "" msgstr "DNS Sunucusu bağlantı noktası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:665
msgid "DNS Server type" msgid "DNS Server type"
msgstr "" msgstr "DNS Sunucu türü"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:258
msgid "DNS domain result cache size" msgid "DNS domain result cache size"
msgstr "" msgstr "DNS alan adı sonuç önbellek boyutu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:487
msgid "DNS64" msgid "DNS64"
msgstr "" msgstr "DNS64"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:134
msgid "DNS64 Server Settings" msgid "DNS64 Server Settings"
msgstr "" msgstr "DNS64 Sunucu Ayarları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:560
msgid "Description" msgid "Description"
msgstr "" msgstr "Açıklama"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:76
msgid "Dnsmasq Forwarded To Smartdns Failure" msgid "Dnsmasq Forwarded To Smartdns Failure"
msgstr "" msgstr "Dnsmasq Smartdns'e Yönlendirildi Hatası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:719
msgid "Do not check certificate." msgid "Do not check certificate."
msgstr "" msgstr "Sertifikayı kontrol etmeyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:397
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:838
msgid "Do not check speed." msgid "Do not check speed."
msgstr "" msgstr "Hızı kontrol etmeyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807
msgid "Domain Address" msgid "Domain Address"
msgstr "" msgstr "Alan Adı Adresi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:900
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:929
msgid "Domain List" msgid "Domain List"
msgstr "" msgstr "Alan Adı Listesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:891
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:991
msgid "Domain List File" msgid "Domain List File"
msgstr "" msgstr "Alan Adı Liste Dosyası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:949
msgid "Domain Rule List" msgid "Domain Rule List"
msgstr "" msgstr "Alan Adı Kural Listesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:965
msgid "Domain Rule Name" msgid "Domain Rule Name"
msgstr "" msgstr "Etki Alanı Kural Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800
msgid "Domain Rules" msgid "Domain Rules"
msgstr "" msgstr "Alan Adı Kuralları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:800
msgid "Domain Rules Settings" msgid "Domain Rules Settings"
msgstr "" msgstr "Alan Adı Kuralları Ayarları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "Domain TTL" msgid "Domain TTL"
msgstr "" msgstr "Alan Adı TTL"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:336
msgid "Domain TTL Max" msgid "Domain TTL Max"
msgstr "" msgstr "Alan Adı TTL Maks"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:328
msgid "Domain TTL Min" msgid "Domain TTL Min"
msgstr "" msgstr "Alan Adı TTL Min"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:246
msgid "Domain prefetch" msgid "Domain prefetch"
msgstr "" msgstr "Alan adı ön getirme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1159
msgid "Donate" msgid "Donate"
msgstr "" msgstr "Bağış"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1158
msgid "Donate to smartdns" msgid "Donate to smartdns"
msgstr "" msgstr "smartdns'e bağış yapın"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:526
msgid "Download Files" msgid "Download Files"
msgstr "" msgstr "Dosyaları İndir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135
msgid "Download Files Setting" msgid "Download Files Setting"
msgstr "" msgstr "Dosyaları İndirme Ayarı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:135
msgid "" msgid ""
"Download domain list files for domain-rule and include config files, please " "Download domain list files for domain-rule and include config files, please "
"refresh the page after download to take effect." "refresh the page after download to take effect."
msgstr "" msgstr ""
"Alan adı kuralı için alan adı listesi dosyalarını indirin ve yapılandırma "
"dosyalarını ekleyin, lütfen etkili olması için indirdikten sonra sayfayı "
"yenileyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:240
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1007
msgid "Dual-stack IP Selection" msgid "Dual-stack IP Selection"
msgstr "" msgstr "Çift yığınlı IP Seçimi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:371
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:642
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:959
msgid "Enable" msgid "Enable"
msgstr "" msgstr "Etkinleştir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495
msgid "Enable Auto Update" msgid "Enable Auto Update"
msgstr "" msgstr "Otomatik Güncellemeyi Etkinleştir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:241
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1008
msgid "Enable IP selection between IPV4 and IPV6" msgid "Enable IP selection between IPV4 and IPV6"
msgstr "" msgstr "IPV4 ve IPV6 arasında IP seçimini etkinleştirin"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224
msgid "Enable IPV6 DNS Server" msgid "Enable IPV6 DNS Server"
msgstr "" msgstr "IPV6 DNS Sunucusunu Etkinleştir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384
msgid "Enable TCP DNS Server" msgid "Enable TCP DNS Server"
msgstr "" msgstr "TCP DNS Sunucusunu Etkinleştir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:495
msgid "Enable daily auto update." msgid "Enable daily auto update."
msgstr "" msgstr "Günlük otomatik güncellemeyi etkinleştirin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:247
msgid "Enable domain prefetch, accelerate domain response speed." msgid "Enable domain prefetch, accelerate domain response speed."
msgstr "" msgstr "Etki alanı ön getirmeyi etkinleştirin, etki alanı yanıt hızını artırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:372
msgid "Enable or disable second DNS server." msgid "Enable or disable second DNS server."
msgstr "" msgstr "İkinci DNS sunucusunu etkinleştirin veya devre dışı bırakın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:142
msgid "Enable or disable smartdns server" msgid "Enable or disable smartdns server"
msgstr "" msgstr "Smartdns sunucusunu etkinleştirme veya devre dışı bırakma"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694
msgid "Exclude DNS Server from default group." msgid "Exclude DNS Server from default group."
msgstr "" msgstr "DNS Sunucusunu varsayılan gruptan hariç tutun."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:694
msgid "Exclude Default Group" msgid "Exclude Default Group"
msgstr "" msgstr "Varsayılan Grubu Hariç Tut"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:215
msgid "Fastest IP" msgid "Fastest IP"
msgstr "" msgstr "En Hızlı IP"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:216
msgid "Fastest Response" msgid "Fastest Response"
msgstr "" msgstr "En Hızlı Tepki"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:535
msgid "File Name" msgid "File Name"
msgstr "" msgstr "Dosya Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554
msgid "File Type" msgid "File Type"
msgstr "" msgstr "Dosya Türü"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:702
msgid "Filtering IP with blacklist" msgid "Filtering IP with blacklist"
msgstr "" msgstr "Kara liste ile IP filtreleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:214
msgid "First Ping" msgid "First Ping"
msgstr "" msgstr "İlk Ping"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056
msgid "Force AAAA SOA" msgid "Force AAAA SOA"
msgstr "" msgstr "AAAA SOA'yı zorla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:272
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:436
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:842
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1056
msgid "Force AAAA SOA." msgid "Force AAAA SOA."
msgstr "" msgstr "AAAA SOA'yı zorla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Force HTTPS SOA" msgid "Force HTTPS SOA"
msgstr "" msgstr "HTTPS SOA'yı Zorla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:277
msgid "Force HTTPS SOA." msgid "Force HTTPS SOA."
msgstr "" msgstr "HTTPS SOA'yı zorlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:131
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:638
msgid "General Settings" msgid "General Settings"
msgstr "" msgstr "Genel Ayarlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:599
msgid "Generate Coredump" msgid "Generate Coredump"
msgstr "" msgstr "Coredump Oluştur"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:600
msgid "" msgid ""
"Generate Coredump file when smartdns crash, coredump file is located at /tmp/" "Generate Coredump file when smartdns crash, coredump file is located at /tmp/"
"smartdns.xxx.core." "smartdns.xxx.core."
msgstr "" msgstr ""
"Smartdns çöktüğünde Coredump dosyası oluşturun, coredump dosyası /tmp/"
"smartdns.xxx.core adresinde bulunur."
#: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/rpcd/acl.d/luci-app-smartdns.json:3
msgid "Grant access to LuCI app smartdns" msgid "Grant access to LuCI app smartdns"
msgstr "" msgstr "LuCI uygulaması smartdns'e erişim izni verin"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:737
msgid "HTTP Host" msgid "HTTP Host"
msgstr "" msgstr "HTTP Ana Bilgisayarı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808
msgid "IP Blacklist" msgid "IP Blacklist"
msgstr "" msgstr "IP Kara Listesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:701
msgid "IP Blacklist Filtering" msgid "IP Blacklist Filtering"
msgstr "" msgstr "IP Kara Liste Filtreleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:224
msgid "IPV6 Server" msgid "IPV6 Server"
msgstr "" msgstr "IPV6 Sunucu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062
msgid "IPset Name" msgid "IPset Name"
msgstr "" msgstr "IPset Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:440
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:846
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1062
msgid "IPset name." msgid "IPset name."
msgstr "" msgstr "IPset adı."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1138
msgid "If you like this software, please buy me a cup of coffee." msgid "If you like this software, please buy me a cup of coffee."
msgstr "" msgstr ""
"Eğer bu yazılımı beğendiyseniz, lütfen bana bir fincan kahve ısmarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:353
msgid "Include Config Files<br>/etc/smartdns/conf.d" msgid "Include Config Files<br>/etc/smartdns/conf.d"
msgstr "" msgstr "Yapılandırma Dosyalarını Dahil Et <br>/etc/smartdns/conf.d"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:354
msgid "" msgid ""
"Include other config files from /etc/smartdns/conf.d or custom path, can be " "Include other config files from /etc/smartdns/conf.d or custom path, can be "
"downloaded from the download page." "downloaded from the download page."
msgstr "" msgstr ""
"Diğer yapılandırma dosyalarını /etc/smartdns/conf.d veya özel yoldan "
"ekleyin, indirme sayfasından indirilebilir."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:283
msgid "Ipset name, Add domain result to ipset when speed check fails." msgid "Ipset name, Add domain result to ipset when speed check fails."
msgstr "" msgstr ""
"Ipset adı, Hız kontrolü başarısız olduğunda etki alanı sonucunu ipset'e "
"ekleyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:527
msgid "List of files to download." msgid "List of files to download."
msgstr "" msgstr "İndirilecek dosyaların listesi."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:229
msgid "Listen only on the specified interfaces." msgid "Listen only on the specified interfaces."
msgstr "" msgstr "Yalnızca belirtilen arayüzleri dinleyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:153
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377
msgid "Local Port" msgid "Local Port"
msgstr "" msgstr "Yerel Bağlantı Noktası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:624
msgid "Log File" msgid "Log File"
msgstr "" msgstr "Günlük Dosyası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:608
msgid "Log Level" msgid "Log Level"
msgstr "" msgstr "Günlük Seviyesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:620
msgid "Log Number" msgid "Log Number"
msgstr "" msgstr "Günlük Numarası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:604
msgid "Log Size" msgid "Log Size"
msgstr "" msgstr "Günlük Boyutu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:757
msgid "Marking Packets" msgid "Marking Packets"
msgstr "" msgstr "Paketlerin İşaretlenmesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:337
msgid "Maximum TTL for all domain result." msgid "Maximum TTL for all domain result."
msgstr "" msgstr "Tüm alan adı sonuçları için maksimum TTL."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:329
msgid "Minimum TTL for all domain result." msgid "Minimum TTL for all domain result."
msgstr "" msgstr "Tüm alan adı sonuçları için minimum TTL."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068
msgid "NFTset Name" msgid "NFTset Name"
msgstr "" msgstr "NFTset Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:316
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:471
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:877
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1081
msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]" msgid "NFTset name format error, format: [#[4|6]:[family#table#set]]"
msgstr "" msgstr "NFTset adı biçim hatası, biçim: [#[4|6]:[family#table#set]]"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:459
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:865
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1068
msgid "NFTset name, format: [#[4|6]:[family#table#set]]" msgid "NFTset name, format: [#[4|6]:[family#table#set]]"
msgstr "" msgstr "NFTset adı, biçim: [#[4|6]:[family#table#set]]"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:66
msgid "NOT RUNNING" msgid "NOT RUNNING"
msgstr "" msgstr "ÇALIŞMIYOR"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:234
msgid "Name of device name listen on." msgid "Name of device name listen on."
msgstr "" msgstr "Dinleme yapılan cihazın adı."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:304
msgid "" msgid ""
"Nftset name, Add domain result to nftset when speed check fails, format: " "Nftset name, Add domain result to nftset when speed check fails, format: "
"[#[4|6]:[family#table#set]]" "[#[4|6]:[family#table#set]]"
msgstr "" msgstr ""
"Nftset adı, Hız kontrolü başarısız olduğunda etki alanı sonucunu nftset'e "
"ekleyin, biçim: [#[4|6]:[family#table#set]]"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1014
msgid "No" msgid "No"
msgstr "" msgstr "Hayır"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:282
msgid "No Speed IPset Name" msgid "No Speed IPset Name"
msgstr "" msgstr "No Speed IPset Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:303
msgid "No Speed NFTset Name" msgid "No Speed NFTset Name"
msgstr "" msgstr "No Speed NFTset Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:718
msgid "No check certificate" msgid "No check certificate"
msgstr "" msgstr "Kontrol sertifikası yok"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:177
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1000
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1025
msgid "None" msgid "None"
msgstr "" msgstr "Hiçbiri"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:784
msgid "Only socks5 proxy support udp server." msgid "Only socks5 proxy support udp server."
msgstr "" msgstr "Yalnızca socks5 proxy udp sunucusunu destekler."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:780
msgid "Please set proxy server first." msgid "Please set proxy server first."
msgstr "" msgstr "Lütfen önce proxy sunucusunu ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567
msgid "Proxy Server" msgid "Proxy Server"
msgstr "" msgstr "Proxy Sunucusu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:136
msgid "Proxy Server Settings" msgid "Proxy Server Settings"
msgstr "" msgstr "Proxy Sunucu Ayarları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:567
msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port." msgid "Proxy Server URL, format: [socks5|http]://user:pass@ip:port."
msgstr "" msgstr "Proxy Sunucu URL'si, biçim: [socks5|http]://user:pass@ip:port."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:575
msgid "" msgid ""
"Proxy server URL format error, format: [socks5|http]://user:pass@ip:port." "Proxy server URL format error, format: [socks5|http]://user:pass@ip:port."
msgstr "" msgstr ""
"Proxy sunucu URL biçimi hatası, biçim: [socks5|http]://user:pass@ip:port."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:390
msgid "Query DNS through specific dns server group, such as office, home." msgid "Query DNS through specific dns server group, such as office, home."
msgstr "" msgstr "Ofis, ev gibi belirli dns sunucu grubu üzerinden DNS sorgulama."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:64
msgid "RUNNING" msgid "RUNNING"
msgstr "" msgstr "ÇALIŞIYOR"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:341
msgid "Reply Domain TTL Max" msgid "Reply Domain TTL Max"
msgstr "" msgstr "Yanıt Etki Alanı TTL Maks"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:342
msgid "Reply maximum TTL for all domain result." msgid "Reply maximum TTL for all domain result."
msgstr "" msgstr "Tüm etki alanı sonucu için maksimum TTL'yi yanıtlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1150
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1151
msgid "Report bugs" msgid "Report bugs"
msgstr "" msgstr "Hataları bildir"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267
msgid "Resolve Local Hostnames" msgid "Resolve Local Hostnames"
msgstr "" msgstr "Yerel Ana Bilgisayar Adlarını Çözümleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:267
msgid "Resolve local hostnames by reading Dnsmasq lease file." msgid "Resolve local hostnames by reading Dnsmasq lease file."
msgstr "" msgstr "Dnsmasq kira dosyasını okuyarak yerel ana bilgisayar adlarını çözün."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:209
msgid "Response Mode" msgid "Response Mode"
msgstr "" msgstr "Tepki Modu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1174
msgid "Restart" msgid "Restart"
msgstr "" msgstr "Yeniden Başlat"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1165
msgid "Restart Service" msgid "Restart Service"
msgstr "" msgstr "Servisi Yeniden Başlat"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:133
msgid "Second Server Settings" msgid "Second Server Settings"
msgstr "" msgstr "İkinci Sunucu Ayarları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:252
msgid "Serve expired" msgid "Serve expired"
msgstr "" msgstr "Hizmet süresi doldu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:389
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:813
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:967
msgid "Server Group" msgid "Server Group"
msgstr "" msgstr "Sunucu Grubu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:833
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:987
msgid "Server Group %s not exists" msgid "Server Group %s not exists"
msgstr "" msgstr "Sunucu Grubu %s mevcut değil"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
msgid "Server Name" msgid "Server Name"
msgstr "" msgstr "Sunucu Adı"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:807
msgid "Set Specific domain ip address." msgid "Set Specific domain ip address."
msgstr "" msgstr "Belirli alan ip adresini ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:806
msgid "Set Specific domain rule list." msgid "Set Specific domain rule list."
msgstr "" msgstr "Belirli etki alanı kural listesi ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:808
msgid "Set Specific ip blacklist." msgid "Set Specific ip blacklist."
msgstr "" msgstr "Belirli ip kara listesini ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:709
msgid "Set TLS hostname to verify." msgid "Set TLS hostname to verify."
msgstr "" msgstr "Doğrulamak için TLS ana bilgisayar adını ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:758
msgid "Set mark on packets." msgid "Set mark on packets."
msgstr "" msgstr "Paketler üzerindeki işareti ayarlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:738
msgid "" msgid ""
"Set the HTTP host used for the query. Use this parameter when the host of " "Set the HTTP host used for the query. Use this parameter when the host of "
"the URL address is an IP address." "the URL address is an IP address."
msgstr "" msgstr ""
"Sorgu için kullanılan HTTP ana bilgisayarını ayarlayın. URL adresinin ana "
"bilgisayarı bir IP adresi olduğunda bu parametreyi kullanın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:728
msgid "Sets the server name indication for query. '-' for disable SNI name." msgid "Sets the server name indication for query. '-' for disable SNI name."
msgstr "" msgstr ""
"Sorgu için sunucu adı göstergesini ayarlar. SNI adını devre dışı bırakmak "
"için '-'."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:128
msgid "Settings" msgid "Settings"
msgstr "" msgstr "Ayarlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:402
msgid "Skip Address Rules" msgid "Skip Address Rules"
msgstr "" msgstr "Adres Kurallarını Atlayın"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431
msgid "Skip Cache" msgid "Skip Cache"
msgstr "" msgstr "Önbelleği Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:431
msgid "Skip Cache." msgid "Skip Cache."
msgstr "" msgstr "Önbelleği Atla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:425
msgid "Skip Dualstack Selection" msgid "Skip Dualstack Selection"
msgstr "" msgstr "Çift Yığın Seçimini Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:426
msgid "Skip Dualstack Selection." msgid "Skip Dualstack Selection."
msgstr "" msgstr "Çift Yığın Seçimini Atla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:414
msgid "Skip Ipset Rule" msgid "Skip Ipset Rule"
msgstr "" msgstr "Ipset Kuralını Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:408
msgid "Skip Nameserver Rule" msgid "Skip Nameserver Rule"
msgstr "" msgstr "Ad Sunucu Kuralını Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:420
msgid "Skip SOA Address Rule" msgid "Skip SOA Address Rule"
msgstr "" msgstr "SOA Adres Kuralını Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:421
msgid "Skip SOA address rules." msgid "Skip SOA address rules."
msgstr "" msgstr "SOA adres kurallarını atlayın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:396
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:837
msgid "Skip Speed Check" msgid "Skip Speed Check"
msgstr "" msgstr "Hız Kontrolünü Atla"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:403
msgid "Skip address rules." msgid "Skip address rules."
msgstr "" msgstr "Adres kurallarını atla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:415
msgid "Skip ipset rules." msgid "Skip ipset rules."
msgstr "" msgstr "İpset kurallarını atla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:409
msgid "Skip nameserver rules." msgid "Skip nameserver rules."
msgstr "" msgstr "İsim sunucusu kurallarını atla."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:95
#: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3 #: applications/luci-app-smartdns/root/usr/share/luci/menu.d/luci-app-smartdns.json:3
msgid "SmartDNS" msgid "SmartDNS"
msgstr "" msgstr "SmartDNS"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:96
msgid "SmartDNS Server" msgid "SmartDNS Server"
msgstr "" msgstr "SmartDNS Sunucusu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:97
msgid "" msgid ""
"SmartDNS is a local high-performance DNS server, supports finding fastest " "SmartDNS is a local high-performance DNS server, supports finding fastest "
"IP, supports ad filtering, and supports avoiding DNS poisoning." "IP, supports ad filtering, and supports avoiding DNS poisoning."
msgstr "" msgstr ""
"SmartDNS yerel bir yüksek performanslı DNS sunucusudur, en hızlı IP'yi "
"bulmayı destekler, reklam filtrelemeyi destekler ve DNS zehirlenmesinden "
"kaçınmayı destekler."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1142
msgid "SmartDNS official website" msgid "SmartDNS official website"
msgstr "" msgstr "SmartDNS resmi web sitesi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:377
msgid "Smartdns local server port" msgid "Smartdns local server port"
msgstr "" msgstr "Smartdns yerel sunucu bağlantı noktası"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:154
msgid "" msgid ""
"Smartdns local server port, smartdns will be automatically set as main dns " "Smartdns local server port, smartdns will be automatically set as main dns "
"when the port is 53." "when the port is 53."
msgstr "" msgstr ""
"Smartdns yerel sunucu portu, port 53 olduğunda smartdns otomatik olarak ana "
"dns olarak ayarlanacaktır."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:210
msgid "" msgid ""
"Smartdns response mode, First Ping: return the first ping IP, Fastest IP: " "Smartdns response mode, First Ping: return the first ping IP, Fastest IP: "
"return the fastest IP, Fastest Response: return the fastest DNS response." "return the fastest IP, Fastest Response: return the fastest DNS response."
msgstr "" msgstr ""
"Smartdns yanıt modu, İlk Ping: ilk ping IP'sini döndürür, En Hızlı IP: en "
"hızlı IP'yi döndürür, En Hızlı Yanıt: en hızlı DNS yanıtını döndürür."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:147
msgid "Smartdns server name" msgid "Smartdns server name"
msgstr "" msgstr "Smartdns sunucu ismi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016
msgid "Smartdns speed check mode." msgid "Smartdns speed check mode."
msgstr "" msgstr "Smartdns hız kontrol modu."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1119
msgid "" msgid ""
...@@ -725,74 +759,77 @@ msgid "" ...@@ -725,74 +759,77 @@ msgid ""
"in the domains are never forwarded and always replied to with the specified " "in the domains are never forwarded and always replied to with the specified "
"IP address which may be IPv4 or IPv6." "IP address which may be IPv4 or IPv6."
msgstr "" msgstr ""
"Verilen etki alanlarındaki herhangi bir ana bilgisayar için döndürülecek bir "
"IP adresi belirtin, Etki alanlarındaki sorgular asla iletilmez ve her zaman "
"IPv4 veya IPv6 olabilen belirtilen IP adresiyle yanıtlanır."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:169
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1016
msgid "Speed Check Mode" msgid "Speed Check Mode"
msgstr "" msgstr "Hız Kontrol Modu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:202
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1050
msgid "Speed check mode is invalid." msgid "Speed check mode is invalid."
msgstr "" msgstr "Hız kontrol modu geçersiz."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:219
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:384
msgid "TCP Server" msgid "TCP Server"
msgstr "" msgstr "TCP Sunucusu"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:196
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1044
msgid "TCP port is empty" msgid "TCP port is empty"
msgstr "" msgstr "TCP bağlantı noktası boş"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:708
msgid "TLS Hostname Verify" msgid "TLS Hostname Verify"
msgstr "" msgstr "TLS Ana Bilgisayar Adı Doğrulama"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:727
msgid "TLS SNI name" msgid "TLS SNI name"
msgstr "" msgstr "TLS SNI ismi"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:746
msgid "TLS SPKI Pinning" msgid "TLS SPKI Pinning"
msgstr "" msgstr "TLS SPKI Sabitleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:324
msgid "TTL for all domain result." msgid "TTL for all domain result."
msgstr "" msgstr "Tüm alan adı sonuçları için TTL."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1137
msgid "Technical Support" msgid "Technical Support"
msgstr "" msgstr "Teknik Destek"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:539
msgid "URL" msgid "URL"
msgstr "" msgstr "URL"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:548
msgid "URL format error, format: http:// or https://" msgid "URL format error, format: http:// or https://"
msgstr "" msgstr "URL biçim hatası, biçim: http:// veya https://"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:523
msgid "Update" msgid "Update"
msgstr "" msgstr "Güncelleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:514
msgid "Update Files" msgid "Update Files"
msgstr "" msgstr "Dosyaları Güncelle"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:500
msgid "Upload Config File" msgid "Upload Config File"
msgstr "" msgstr "Yapılandırma Dosyası Yükle"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:507
msgid "Upload Domain List File" msgid "Upload Domain List File"
msgstr "" msgstr "Etki Alanı Listesi Dosyasını Yükleme"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:508
msgid "Upload domain list file to /etc/smartdns/domain-set" msgid "Upload domain list file to /etc/smartdns/domain-set"
msgstr "" msgstr "Etki alanı listesi dosyasını /etc/smart dns/domain-set'e yükleyin"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:892
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:992
...@@ -800,32 +837,37 @@ msgid "" ...@@ -800,32 +837,37 @@ msgid ""
"Upload domain list file, or configure auto download from Download File " "Upload domain list file, or configure auto download from Download File "
"Setting page." "Setting page."
msgstr "" msgstr ""
"Etki alanı listesi dosyasını yükleyin veya Dosya İndirme Ayarı sayfasından "
"otomatik indirmeyi yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:921
msgid "Upload domain list file." msgid "Upload domain list file."
msgstr "" msgstr "Alan listesi dosyasını yükleyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:501
msgid "Upload smartdns config file to /etc/smartdns/conf.d" msgid "Upload smartdns config file to /etc/smartdns/conf.d"
msgstr "" msgstr "smartdns yapılandırma dosyasını /etc/smartdns/conf.d dosyasına yükleyin"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:631
msgid "Upstream Servers" msgid "Upstream Servers"
msgstr "" msgstr "Yukarı Akış Sunucuları"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:632
msgid "" msgid ""
"Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS " "Upstream Servers, support UDP, TCP protocol. Please configure multiple DNS "
"servers, including multiple foreign DNS servers." "servers, including multiple foreign DNS servers."
msgstr "" msgstr ""
"Yukarı Akış Sunucuları, UDP, TCP protokolünü destekler. Lütfen birden fazla "
"yabancı DNS sunucusu da dahil olmak üzere birden fazla DNS sunucusu "
"yapılandırın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:765
msgid "Use Proxy" msgid "Use Proxy"
msgstr "" msgstr "Proxy Kullan"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:766
msgid "Use proxy to connect to upstream DNS server." msgid "Use proxy to connect to upstream DNS server."
msgstr "" msgstr "Yukarı akış DNS sunucusuna bağlanmak için proxy kullanın."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:747
msgid "" msgid ""
...@@ -833,14 +875,17 @@ msgid "" ...@@ -833,14 +875,17 @@ msgid ""
"SPKI fingerprint, leaving blank to indicate that the validity of TLS is not " "SPKI fingerprint, leaving blank to indicate that the validity of TLS is not "
"verified." "verified."
msgstr "" msgstr ""
"TLS sunucusunun geçerliliğini doğrulamak için kullanılır, Değer Base64 kodlu "
"SPKI parmak izidir, TLS'nin geçerliliğinin doğrulanmadığını belirtmek için "
"boş bırakılır."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:262
msgid "Write cache to disk on exit and load on startup." msgid "Write cache to disk on exit and load on startup."
msgstr "" msgstr "Çıkışta önbelleği diske yazın ve başlangıçta yükleyin."
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1013
msgid "Yes" msgid "Yes"
msgstr "" msgstr "Evet"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:172
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:213
...@@ -848,46 +893,46 @@ msgstr "" ...@@ -848,46 +893,46 @@ msgstr ""
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1012
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1020
msgid "default" msgid "default"
msgstr "" msgstr "varsayılan"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:555
msgid "domain list (/etc/smartdns/domain-set)" msgid "domain list (/etc/smartdns/domain-set)"
msgstr "" msgstr "alan adı listesi (/etc/smartdns/domain-set)"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:670
msgid "https" msgid "https"
msgstr "" msgstr "https"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:295
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:452
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:858
msgid "ipset name format error, format: [#[4|6]:]ipsetname" msgid "ipset name format error, format: [#[4|6]:]ipsetname"
msgstr "" msgstr "ipset adı biçim hatası, biçim: [#[4|6]:]ipsetname"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:1143
msgid "open website" msgid "open website"
msgstr "" msgstr "web sitesi açın"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:556
msgid "smartdns config (/etc/smartdns/conf.d)" msgid "smartdns config (/etc/smartdns/conf.d)"
msgstr "" msgstr "smartdns yapılandırması (/etc/smartdns/conf.d)"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:585
msgid "smartdns custom settings" msgid "smartdns custom settings"
msgstr "" msgstr "smartdns özel ayarlar"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:668
msgid "tcp" msgid "tcp"
msgstr "" msgstr "tcp"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:669
msgid "tls" msgid "tls"
msgstr "" msgstr "tls"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:554
msgid "type" msgid "type"
msgstr "" msgstr "tür"
#: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667 #: applications/luci-app-smartdns/htdocs/luci-static/resources/view/smartdns/smartdns.js:667
msgid "udp" msgid "udp"
msgstr "" msgstr "udp"