diff options
Diffstat (limited to 'applications/luci-app-frpc')
39 files changed, 8753 insertions, 4055 deletions
diff --git a/applications/luci-app-frpc/Makefile b/applications/luci-app-frpc/Makefile index 90a20c4bfc..16e10e54a6 100644 --- a/applications/luci-app-frpc/Makefile +++ b/applications/luci-app-frpc/Makefile @@ -3,7 +3,7 @@ include $(TOPDIR)/rules.mk LUCI_TITLE:=LuCI Support for frp client -LUCI_DEPENDS:=+frpc +LUCI_DEPENDS:=+luci-base +frpc PKG_LICENSE:=Apache-2.0 PKG_MAINTAINER:=Richard Yu <yurichard3839@gmail.com> diff --git a/applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js b/applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js index d93655188b..a0fb34beb6 100644 --- a/applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js +++ b/applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js @@ -2,6 +2,7 @@ 'require view'; 'require ui'; 'require form'; +'require rpc'; 'require tools.widgets as widgets'; // [Widget, Option, Title, Description, {Param: 'Value'}], @@ -16,31 +17,35 @@ var startupConf = [ ]; var commonConf = [ - [form.Value, 'server_addr', _('Server address'), _('ServerAddr specifies the address of the server to connect to.<br>By default, this value is "0.0.0.0".'), {datatype: 'ipaddr'}], - [form.Value, 'server_port', _('Server port'), _('ServerPort specifies the port to connect to the server on.<br>By default, this value is 7000.'), {datatype: 'port'}], - [form.Value, 'http_proxy', _('HTTP proxy'), _('HttpProxy specifies a proxy address to connect to the server through. If this value is "", the server will be connected to directly.<br>By default, this value is read from the "http_proxy" environment variable.')], - [form.ListValue, 'log_level', _('Log level'), _('LogLevel specifies the minimum log level. Valid values are "trace", "debug", "info", "warn", and "error".<br>By default, this value is "info".'), {values: ['trace', 'debug', 'info', 'warn', 'error']}], - [form.Flag, 'disable_log_color', _('Disable log color'), _('DisableLogColor disables log colors when LogWay == "console" when set to true.'), {datatype: 'bool', default: 'true'}], - [form.Value, 'token', _('Token'), _('Token specifies the authorization token used to create keys to be sent to the server. The server must have a matching token for authorization to succeed. <br>By default, this value is "".')], - [form.Value, 'admin_addr', _('Admin address'), _('AdminAddr specifies the address that the admin server binds to.<br>By default, this value is "127.0.0.1".'), {datatype: 'ipaddr'}], - [form.Value, 'admin_port', _('Admin port'), _('AdminPort specifies the port for the admin server to listen on. If this value is 0, the admin server will not be started.<br>By default, this value is 0.'), {datatype: 'port'}], - [form.Value, 'admin_user', _('Admin user'), _('AdminUser specifies the username that the admin server will use for login.<br>By default, this value is "admin".')], - [form.Value, 'admin_pwd', _('Admin password'), _('AdminPwd specifies the password that the admin server will use for login.<br>By default, this value is "admin".'), {password: true}], - [form.Value, 'assets_dir', _('Assets dir'), _('AssetsDir specifies the local directory that the admin server will load resources from. If this value is "", assets will be loaded from the bundled executable using statik.<br>By default, this value is "".')], - [form.Flag, 'tcp_mux', _('TCP mux'), _('TcpMux toggles TCP stream multiplexing. This allows multiple requests from a client to share a single TCP connection. If this value is true, the server must have TCP multiplexing enabled as well.<br>By default, this value is true.'), {datatype: 'bool', default: 'true'}], - [form.Value, 'user', _('User'), _('User specifies a prefix for proxy names to distinguish them from other clients. If this value is not "", proxy names will automatically be changed to "{user}.{proxy_name}".<br>By default, this value is "".')], - [form.Flag, 'login_fail_exit', _('Exit when login fail'), _('LoginFailExit controls whether or not the client should exit after a failed login attempt. If false, the client will retry until a login attempt succeeds.<br>By default, this value is true.'), {datatype: 'bool', default: 'true'}], - [form.ListValue, 'protocol', _('Protocol'), _('Protocol specifies the protocol to use when interacting with the server. Valid values are "tcp", "kcp", and "websocket".<br>By default, this value is "tcp".'), {values: ['tcp', 'kcp', 'websocket']}], + [form.Value, 'server_addr', _('Server address'), _('ServerAddr specifies the address of the server to connect to.<br />By default, this value is "127.0.0.1".'), {datatype: 'host'}], + [form.Value, 'server_port', _('Server port'), _('ServerPort specifies the port to connect to the server on.<br />By default, this value is 7000.'), {datatype: 'port'}], + [form.Value, 'http_proxy', _('HTTP proxy'), _('HttpProxy specifies a proxy address to connect to the server through. If this value is "", the server will be connected to directly.<br />By default, this value is read from the "http_proxy" environment variable.')], + [form.Value, 'log_file', _('Log file'), _('LogFile specifies a file where logs will be written to. This value will only be used if LogWay is set appropriately.<br />By default, this value is "console".')], + [form.ListValue, 'log_level', _('Log level'), _('LogLevel specifies the minimum log level. Valid values are "trace", "debug", "info", "warn", and "error".<br />By default, this value is "info".'), {values: ['trace', 'debug', 'info', 'warn', 'error']}], + [form.Value, 'log_max_days', _('Log max days'), _('LogMaxDays specifies the maximum number of days to store log information before deletion. This is only used if LogWay == "file".<br />By default, this value is 0.'), {datatype: 'uinteger'}], + [form.Flag, 'disable_log_color', _('Disable log color'), _('DisableLogColor disables log colors when LogWay == "console" when set to true.'), {datatype: 'bool', default: 'false'}], + [form.Value, 'token', _('Token'), _('Token specifies the authorization token used to create keys to be sent to the server. The server must have a matching token for authorization to succeed. <br />By default, this value is "".')], + [form.Value, 'admin_addr', _('Admin address'), _('AdminAddr specifies the address that the admin server binds to.<br />By default, this value is "0.0.0.0".'), {datatype: 'ipaddr'}], + [form.Value, 'admin_port', _('Admin port'), _('AdminPort specifies the port for the admin server to listen on. If this value is 0, the admin server will not be started.<br />By default, this value is 0.'), {datatype: 'port'}], + [form.Value, 'admin_user', _('Admin user'), _('AdminUser specifies the username that the admin server will use for login.<br />By default, this value is "admin".')], + [form.Value, 'admin_pwd', _('Admin password'), _('AdminPwd specifies the password that the admin server will use for login.<br />By default, this value is "admin".'), {password: true}], + [form.Value, 'assets_dir', _('Assets dir'), _('AssetsDir specifies the local directory that the admin server will load resources from. If this value is "", assets will be loaded from the bundled executable using statik.<br />By default, this value is "".')], + [form.Flag, 'tcp_mux', _('TCP mux'), _('TcpMux toggles TCP stream multiplexing. This allows multiple requests from a client to share a single TCP connection. If this value is true, the server must have TCP multiplexing enabled as well.<br />By default, this value is true.'), {datatype: 'bool', default: 'true'}], + [form.Value, 'user', _('User'), _('User specifies a prefix for proxy names to distinguish them from other clients. If this value is not "", proxy names will automatically be changed to "{user}.{proxy_name}".<br />By default, this value is "".')], + [form.Flag, 'login_fail_exit', _('Exit when login fail'), _('LoginFailExit controls whether or not the client should exit after a failed login attempt. If false, the client will retry until a login attempt succeeds.<br />By default, this value is true.'), {datatype: 'bool', default: 'true'}], + [form.ListValue, 'protocol', _('Protocol'), _('Protocol specifies the protocol to use when interacting with the server. Valid values are "tcp", "kcp", and "websocket".<br />By default, this value is "tcp".'), {values: ['tcp', 'kcp', 'websocket']}], [form.Flag, 'tls_enable', _('TLS'), _('TLSEnable specifies whether or not TLS should be used when communicating with the server.'), {datatype: 'bool'}], - [form.Value, 'heartbeat_interval', _('Heartbeat interval'), _('HeartBeatInterval specifies at what interval heartbeats are sent to the server, in seconds. It is not recommended to change this value.<br>By default, this value is 30.'), {datatype: 'uinteger'}], - [form.Value, 'heartbeat_timeout', _('Heartbeat timeout'), _('HeartBeatTimeout specifies the maximum allowed heartbeat response delay before the connection is terminated, in seconds. It is not recommended to change this value.<br>By default, this value is 90.'), {datatype: 'uinteger'}] + [form.Value, 'heartbeat_interval', _('Heartbeat interval'), _('HeartBeatInterval specifies at what interval heartbeats are sent to the server, in seconds. It is not recommended to change this value.<br />By default, this value is 30.'), {datatype: 'uinteger'}], + [form.Value, 'heartbeat_timeout', _('Heartbeat timeout'), _('HeartBeatTimeout specifies the maximum allowed heartbeat response delay before the connection is terminated, in seconds. It is not recommended to change this value.<br />By default, this value is 90.'), {datatype: 'uinteger'}], + [form.DynamicList, '_', _('Additional settings'), _('This list can be used to specify some additional parameters which have not been included in this LuCI.'), {placeholder: 'Key-A=Value-A'}] ]; var baseProxyConf = [ - [form.ListValue, 'type', _('Proxy type'), _('ProxyType specifies the type of this proxy. Valid values include "tcp", "udp", "http", "https", "stcp", and "xtcp".<br>By default, this value is "tcp".'), {values: ['tcp', 'udp', 'http', 'https', 'stcp', 'xtcp']}], - [form.Flag, 'use_encryption', _('Encryption'), _('UseEncryption controls whether or not communication with the server will be encrypted. Encryption is done using the tokens supplied in the server and client configuration.<br>By default, this value is false.'), {datatype: 'bool'}], - [form.Flag, 'use_compression', _('Compression'), _('UseCompression controls whether or not communication with the server will be compressed.<br>By default, this value is false.'), {datatype: 'bool'}], - [form.Value, 'local_ip', _('Local IP'), _('LocalIp specifies the IP address or host name to proxy to.'), {datatype: 'ipaddr'}], + [form.Value, 'name', _('Proxy name'), undefined, {rmempty: false, optional: false}], + [form.ListValue, 'type', _('Proxy type'), _('ProxyType specifies the type of this proxy. Valid values include "tcp", "udp", "http", "https", "stcp", and "xtcp".<br />By default, this value is "tcp".'), {values: ['tcp', 'udp', 'http', 'https', 'stcp', 'xtcp']}], + [form.Flag, 'use_encryption', _('Encryption'), _('UseEncryption controls whether or not communication with the server will be encrypted. Encryption is done using the tokens supplied in the server and client configuration.<br />By default, this value is false.'), {datatype: 'bool'}], + [form.Flag, 'use_compression', _('Compression'), _('UseCompression controls whether or not communication with the server will be compressed.<br />By default, this value is false.'), {datatype: 'bool'}], + [form.Value, 'local_ip', _('Local IP'), _('LocalIp specifies the IP address or host name to proxy to.'), {datatype: 'host'}], [form.Value, 'local_port', _('Local port'), _('LocalPort specifies the port to proxy to.'), {datatype: 'port'}], ]; @@ -50,7 +55,7 @@ var bindInfoConf = [ var domainConf = [ [form.Value, 'custom_domains', _('Custom domains')], - [form.Value, 'sub_domain', _('Subdomain')], + [form.Value, 'subdomain', _('Subdomain')], ]; var httpProxyConf = [ @@ -63,9 +68,20 @@ var httpProxyConf = [ var stcpProxyConf = [ [form.ListValue, 'role', _('Role'), undefined, {values: ['server', 'visitor']}], + [form.Value, 'server_name', _('Server name'), undefined, {depends: [{role: 'visitor'}]}], [form.Value, 'sk', _('Sk')], ]; +var pluginConf = [ + [form.ListValue, 'plugin', _('Plugin'), undefined, {values: ['', 'http_proxy', 'socks5', 'unix_domain_socket'], rmempty: true}], + [form.Value, 'plugin_http_user', _('HTTP user'), undefined, {depends: {plugin: 'http_proxy'}}], + [form.Value, 'plugin_http_passwd', _('HTTP password'), undefined, {depends: {plugin: 'http_proxy'}}], + [form.Value, 'plugin_user', _('SOCKS5 user'), undefined, {depends: {plugin: 'socks5'}}], + [form.Value, 'plugin_passwd', _('SOCKS5 password'), undefined, {depends: {plugin: 'socks5'}}], + [form.Value, 'plugin_unix_path', _('Unix domain socket path'), undefined, {depends: {plugin: 'unix_domain_socket'}, optional: false, rmempty: false, + datatype: 'file', placeholder: '/var/run/docker.sock', default: '/var/run/docker.sock'}], +]; + function setParams(o, params) { if (!params) return; for (var key in params) { @@ -80,12 +96,20 @@ function setParams(o, params) { } else if (key === 'depends') { if (!Array.isArray(val)) val = [val]; + + var deps = []; for (var j = 0; j < val.length; j++) { - var args = val[j]; - if (!Array.isArray(args)) - args = [args]; - o.depends.apply(o, args); + var d = {}; + for (var vkey in val[j]) + d[vkey] = val[j][vkey]; + for (var k = 0; k < o.deps.length; k++) { + for (var dkey in o.deps[k]) { + d[dkey] = o.deps[k][dkey]; + } + } + deps.push(d); } + o.deps = deps; } else { o[key] = params[key]; } @@ -114,12 +138,60 @@ function defOpts(s, opts, params) { } } +var callServiceList = rpc.declare({ + object: 'service', + method: 'list', + params: ['name'], + expect: { '': {} } +}); + +function getServiceStatus() { + return L.resolveDefault(callServiceList('frpc'), {}).then(function (res) { + var isRunning = false; + try { + isRunning = res['frpc']['instances']['instance1']['running']; + } catch (e) { } + return isRunning; + }); +} + +function renderStatus(isRunning) { + var renderHTML = ""; + var spanTemp = '<em><span style="color:%s"><strong>%s %s</strong></span></em>'; + + if (isRunning) { + renderHTML += String.format(spanTemp, 'green', _("frp Client"), _("RUNNING")); + } else { + renderHTML += String.format(spanTemp, 'red', _("frp Client"), _("NOT RUNNING")); + } + + return renderHTML; +} + return view.extend({ render: function() { var m, s, o; m = new form.Map('frpc', _('frp Client')); + s = m.section(form.NamedSection, '_status'); + s.anonymous = true; + s.render = function (section_id) { + L.Poll.add(function () { + return L.resolveDefault(getServiceStatus()).then(function(res) { + var view = document.getElementById("service_status"); + view.innerHTML = renderStatus(res); + }); + }); + + return E('div', { class: 'cbi-map' }, + E('fieldset', { class: 'cbi-section'}, [ + E('p', { id: 'service_status' }, + _('Collecting data ...')) + ]) + ); + } + s = m.section(form.NamedSection, 'common', 'conf'); s.dynamic = true; @@ -136,24 +208,29 @@ return view.extend({ defOpts(s, startupConf); s = m.section(form.GridSection, 'conf', _('Proxy Settings')); + s.anonymous = true; s.addremove = true; + s.sortable = true; + s.addbtntitle = _('Add new proxy...'); + s.filter = function(s) { return s !== 'common'; }; - s.renderSectionAdd = function(extra_class) { - var el = form.GridSection.prototype.renderSectionAdd.apply(this, arguments), - nameEl = el.querySelector('.cbi-section-create-name'); - ui.addValidator(nameEl, 'uciname', true, function(v) { - if (v === 'common') return _('Name can not be "common"'); - return true; - }, 'blur', 'keyup'); - return el; - } s.tab('general', _('General Settings')); s.tab('http', _('HTTP Settings')); + s.tab('plugin', _('Plugin Settings')); + s.option(form.Value, 'name', _('Proxy name')).modalonly = false; s.option(form.Value, 'type', _('Proxy type')).modalonly = false; s.option(form.Value, 'local_ip', _('Local IP')).modalonly = false; s.option(form.Value, 'local_port', _('Local port')).modalonly = false; + o = s.option(form.Value, 'remote_port', _('Remote port')); + o.modalonly = false; + o.depends('type', 'tcp'); + o.depends('type', 'udp'); + o.cfgvalue = function() { + var v = this.super('cfgvalue', arguments); + return v&&v!='0'?v:'#'; + }; defTabOpts(s, 'general', baseProxyConf, {modalonly: true}); @@ -169,6 +246,9 @@ return view.extend({ // STCP and XTCP defTabOpts(s, 'general', stcpProxyConf, {modalonly: true, depends: [{type: 'stcp'}, {type: 'xtcp'}]}); + // Plugin + defTabOpts(s, 'plugin', pluginConf, {modalonly: true}); + return m.render(); } }); diff --git a/applications/luci-app-frpc/po/ar/frpc.po b/applications/luci-app-frpc/po/ar/frpc.po index 6fd850d019..aaa3552389 100644 --- a/applications/luci-app-frpc/po/ar/frpc.po +++ b/applications/luci-app-frpc/po/ar/frpc.po @@ -1,359 +1,445 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-07-16 16:41+0000\n" +"Last-Translator: Rex_sa <rex.sa@pm.me>\n" +"Language-Team: Arabic <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/ar/>\n" "Language: ar\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 " +"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" +msgstr "الاعدادات الإضافية" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "التعمية" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "الاعدادات العامة" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "مستوى التسجيل" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "البروتوكول" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "عنوان الخادم" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "اسم الخادم" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "مستخدم" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/bg/frpc.po b/applications/luci-app-frpc/po/bg/frpc.po index 77a0486bbb..1d29aba60e 100644 --- a/applications/luci-app-frpc/po/bg/frpc.po +++ b/applications/luci-app-frpc/po/bg/frpc.po @@ -1,359 +1,444 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-02-28 14:29+0000\n" +"Last-Translator: Boyan Alexiev <nneauu@gmail.com>\n" +"Language-Team: Bulgarian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/bg/>\n" "Language: bg\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Добавяне на ново прокси..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" +msgstr "Допълнителни настройки" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Събиране на данни ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Общи Настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Потребителски домейни" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Криптиране" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "Общи настройки" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "HTTP Настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" +msgstr "Ако remote_port е 0, frps ще Ви назначи случаен порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Локалнен IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Локален порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "" +msgstr "LocalIp указва IP адреса или хостнейм към който да пренасочва (proxy)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort указва порт-а към който да пренасочва (proxy)." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Ниво на записи" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "НЕ СЕ ИЗПЪЛНЯВА" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Протокол" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "ИЗПЪЛНЕНИЕ" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/bn_BD/frpc.po b/applications/luci-app-frpc/po/bn_BD/frpc.po index c78a3e7224..940b8084f3 100644 --- a/applications/luci-app-frpc/po/bn_BD/frpc.po +++ b/applications/luci-app-frpc/po/bn_BD/frpc.po @@ -1,359 +1,457 @@ msgid "" msgstr "" +"PO-Revision-Date: 2021-10-08 18:54+0000\n" +"Last-Translator: Rayhan Nabi <rayhanjanam@gmail.com>\n" +"Language-Team: Bengali (Bangladesh) <https://hosted.weblate.org/projects/" +"openwrt/luciapplicationsfrpc/bn_BD/>\n" "Language: bn_BD\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 4.9-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 -msgid "Additional configs" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Additional configs" +msgstr "অতিরিক্ত কনফিগারেশন" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "অতিরিক্ত সেটিংস" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "অ্যাসেট ডিরেক্টরি" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "তথ্য সংগ্রহ করা হচ্ছে ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "কনফিগ ফাইলগুলি অস্থায়ী কনফিগ ফাইলের অন্তর্ভুক্ত" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "রঙ্গিন লগ নিষ্ক্রিয় করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "সাধারণ সেটিংস" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "হার্টবিট টাইমআউট" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "লগ লেভেল" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "stderr লগ করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "stdout লগ করুন" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "চলমান না" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"কনফিগারেশন ফাইল টেমপ্লেটের জন্য ওএস এনভায়রনমেন্ট frp- এ চলে যায়, এখানে দেখুন <a " +"href=\"https://github.com/fatedier/frp#configuration-file-template\">frp " +"README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "প্রোটোকল" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "চলমান" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "ক্র্যাশ করলে পুনরুজ্জীবিত করুন" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "গ্রুপ হিসাবে ডেমন চালান" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" +msgstr "ব্যবহারকারী হিসাবে ডেমন চালান" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "টিসিপি মাক্স" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" +"LuCI তে অন্তর্ভুক্ত হয়নি এমন কিছু অতিরিক্ত প্যারামিটার নির্দিষ্ট করতে এই তালিকাটি " +"ব্যবহৃত হবে।" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "টোকেন" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" + +#~ msgid "" +#~ "LogLevel specifies the minimum log level. Valid values are \"trace\", " +#~ "\"debug\", \"info\", \"warn\", and \"error\".<br>By default, this value " +#~ "is \"info\"." +#~ msgstr "" +#~ "LogLevel সর্বনিম্ন লগ লেভেল নির্দিষ্ট করে। বৈধ মান হল \"trace\", \"debug\", " +#~ "\"info\", \"warn\" এবং \"error\"।<br>ডিফল্টরূপে, এই মান হল \"info\"।" diff --git a/applications/luci-app-frpc/po/ca/frpc.po b/applications/luci-app-frpc/po/ca/frpc.po index 1a6a78f084..c994e766b4 100644 --- a/applications/luci-app-frpc/po/ca/frpc.po +++ b/applications/luci-app-frpc/po/ca/frpc.po @@ -1,359 +1,444 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-03-18 11:11+0000\n" +"Last-Translator: \"S. Barj.\" <sbarjola@proton.me>\n" +"Language-Team: Catalan <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/ca/>\n" "Language: ca\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Encriptatge" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "Paràmetres generals" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protocol" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/cs/frpc.po b/applications/luci-app-frpc/po/cs/frpc.po index 89ec1edb02..4fb5cb16f0 100644 --- a/applications/luci-app-frpc/po/cs/frpc.po +++ b/applications/luci-app-frpc/po/cs/frpc.po @@ -1,110 +1,122 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-27 21:26+0000\n" -"Last-Translator: Lukas Jelinek <lukas.jelinek@nic.cz>\n" +"PO-Revision-Date: 2024-07-08 22:10+0000\n" +"Last-Translator: Milan <cirhanmilan@seznam.cz>\n" "Language-Team: Czech <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/cs/>\n" "Language: cs\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Přidat proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Další konfigurace" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Další nastavení" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Adresa administrátora" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Komprese" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Vlastní domény" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Šifrování" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Proměnná prostředí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Obecná nastavení" @@ -112,254 +124,321 @@ msgstr "Obecná nastavení" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "Nastavení HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "HTTP heslo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "HTTP uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Lokální port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Úroveň logu" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokol" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" +msgstr "Nastavení proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Spustit démona pod skupinou" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 -msgid "Server port" +msgid "Server address" +msgstr "Adresa serveru" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "Port serveru" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Uživatel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp Klient" diff --git a/applications/luci-app-frpc/po/da/frpc.po b/applications/luci-app-frpc/po/da/frpc.po new file mode 100644 index 0000000000..9347e0dbaf --- /dev/null +++ b/applications/luci-app-frpc/po/da/frpc.po @@ -0,0 +1,444 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-01-25 02:53+0000\n" +"Last-Translator: drax red <drax@outlook.dk>\n" +"Language-Team: Danish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/da/>\n" +"Language: da\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.4-dev\n" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Additional configs" +msgstr "Yderligere konfigurationer" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "Admin password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "Admin port" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "Admin user" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "" +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "" +"AdminPort specifies the port for the admin server to listen on. If this " +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "" +"AdminPwd specifies the password that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "" +"AdminUser specifies the username that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "Assets dir" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "" +"AssetsDir specifies the local directory that the admin server will load " +"resources from. If this value is \"\", assets will be loaded from the " +"bundled executable using statik.<br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +msgid "Common Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "Compression" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Config files include in temporary config file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +msgid "Custom domains" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "Disable log color" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "" +"DisableLogColor disables log colors when LogWay == \"console\" when set to " +"true." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "Encryption" +msgstr "Kryptering" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "Environment variable" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "Exit when login fail" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +msgid "General Settings" +msgstr "Generelle indstillinger" + +#: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 +msgid "Grant access to LuCI app frpc" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 +msgid "HTTP Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 +msgid "HTTP password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "HTTP proxy" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 +msgid "HTTP user" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "" +"HeartBeatInterval specifies at what interval heartbeats are sent to the " +"server, in seconds. It is not recommended to change this value.<br />By " +"default, this value is 30." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "" +"HeartBeatTimeout specifies the maximum allowed heartbeat response delay " +"before the connection is terminated, in seconds. It is not recommended to " +"change this value.<br />By default, this value is 90." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "Heartbeat interval" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "Heartbeat timeout" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +msgid "Host header rewrite" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "" +"HttpProxy specifies a proxy address to connect to the server through. If " +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +msgid "If remote_port is 0, frps will assign a random port for you" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 +msgid "Local IP" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +msgid "Local port" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +msgid "LocalIp specifies the IP address or host name to proxy to." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +msgid "LocalPort specifies the port to proxy to." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 +msgid "Locations" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "Log level" +msgstr "Log niveau" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +msgid "Log stderr" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +msgid "Log stdout" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "" +"LoginFailExit controls whether or not the client should exit after a failed " +"login attempt. If false, the client will retry until a login attempt " +"succeeds.<br />By default, this value is true." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "KØRE IKKE" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "" +"OS environments pass to frp for config file template, see <a href=\"https://" +"github.com/fatedier/frp#configuration-file-template\">frp README</a>" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokol" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "" +"Protocol specifies the protocol to use when interacting with the server. " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " +"value is \"tcp\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 +msgid "Proxy Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 +msgid "Proxy type" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +msgid "" +"ProxyType specifies the type of this proxy. Valid values include \"tcp\", " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " +"value is \"tcp\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "KØRE" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +msgid "Remote port" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +msgid "Respawn when crashed" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 +msgid "Role" +msgstr "Rolle" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +msgid "Run daemon as group" +msgstr "Kør dæmon som gruppe" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +msgid "Run daemon as user" +msgstr "Kør dæmon som bruger" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Serveradresse" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "" +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "" +"ServerPort specifies the port to connect to the server on.<br />By default, " +"this value is 7000." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 +msgid "Sk" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 +msgid "Startup Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +msgid "Subdomain" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "TCP mux" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "TLS" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "" +"TLSEnable specifies whether or not TLS should be used when communicating " +"with the server." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "" +"TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " +"client to share a single TCP connection. If this value is true, the server " +"must have TCP multiplexing enabled as well.<br />By default, this value is " +"true." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "" +"Token specifies the authorization token used to create keys to be sent to " +"the server. The server must have a matching token for authorization to " +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "" +"UseCompression controls whether or not communication with the server will be " +"compressed.<br />By default, this value is false." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "" +"UseEncryption controls whether or not communication with the server will be " +"encrypted. Encryption is done using the tokens supplied in the server and " +"client configuration.<br />By default, this value is false." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "User" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "" +"User specifies a prefix for proxy names to distinguish them from other " +"clients. If this value is not \"\", proxy names will automatically be " +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 +msgid "frp Client" +msgstr "" diff --git a/applications/luci-app-frpc/po/de/frpc.po b/applications/luci-app-frpc/po/de/frpc.po index 5d8c6bba59..84d17bfa06 100644 --- a/applications/luci-app-frpc/po/de/frpc.po +++ b/applications/luci-app-frpc/po/de/frpc.po @@ -1,105 +1,117 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-30 05:51+0000\n" -"Last-Translator: Sandro Stross <sandro.stross@gmx.at>\n" +"PO-Revision-Date: 2024-10-10 18:27+0000\n" +"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\n" "Language-Team: German <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/de/>\n" "Language: de\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.0.2\n" +"X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Neuen Proxy hinzufügen..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Zusätzliche Konfiguration" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Weitere Einstellungen" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Admin-Adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Admin-Kennwort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Admin-Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Admin-Nutzer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -"AdminAddr spezifiziert die Adresse auf der der Admin-Server lauscht." -"<br>Standard für diesen Wert ist \"127.0.0.1\"." +"AdminAddr spezifiziert die Adresse auf der der Admin-Server lauscht.<br /" +">Standard für diesen Wert ist \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort spezifiziert den Port auf dem der Admin-Server lauschen soll. " -"Falls der Wert 0 ist, wird kein Admin-Server gestartet.<br>Standardwert ist " -"0." +"Falls der Wert 0 ist, wird kein Admin-Server gestartet.<br />Standardwert " +"ist 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd spezifiziert das Kennwort, dass der Admin-Server zum Login abfrägt." -"<br>Standardkennwort ist \"admin\"." +"<br />Standardkennwort ist \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminUser spezifiziert den Benutzername, den der Admin-Server fürs Login " -"verwenden soll.<br>Standardnutzer ist \"admin\"." +"verwenden soll.<br />Standardnutzer ist \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Asset-Verzeichnis" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir spezifiziert das lokale Verzeichnis, aus dem der Admin-Server " "seine Ressourcen lädt. Falls der Wert \"\" beträgt, werden Ressource aus der " -"mitgelieferten ausführbaren Datei mittels statik geladen.<br>Standardwert " +"mitgelieferten ausführbaren Datei mittels statik geladen.<br />Standardwert " "ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Sammeln von Daten ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "Gemeinsame Einstellungen" +msgstr "Allgemeine Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Komprimierung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "Konfigurationsdateien die in temporärer Konfiguration enthalten sind" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "Benutzerdefinierte Domains" +msgstr "Benutzerdefinierte Domänen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Deaktiviere farbiges Log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -107,152 +119,177 @@ msgstr "" "DisableLogColor deaktiviert farbiges Log wenn LogWay == \"console\" " "aktiviert ist." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Verschlüsselung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Umgebungsvariable" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Beende Programm bei Loginfehler" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Allgemeine Einstellungen" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "Zugriff auf LuCI-App frpc gewähren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "HTTP-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "HTTP-Passwort" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "HTTP-Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "HTTP-User" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval spezifiziert den Zeitabstand zwischen dem Senden von " "Heartbeats an den Server in Sekunden. Es wird nicht empfohlen, diesen Wert " -"zu ändern.<br>Standardwert hierfür ist 30." +"zu ändern.<br />Standardwert hierfür ist 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout spzifiziert die maximal erlaubte Heartbeat-Antwort-" "Verzögerung in Sekunden, bevor die Verbindung gekappt wird. Es wird nicht " -"empfohlen, diesen Wert zu ändern.<br>Standardwert hierfür ist 90." +"empfohlen, diesen Wert zu ändern.<br />Standardwert hierfür ist 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Heartbeat-Intervall" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Heartbeat-Timeout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Host-Header umschreiben" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "HttpProxy spezifiert über welche Proxy-Adresse zum Server verbunden werden " -"soll. Falls dieser Wert \"\" ist, wird direkt zum Server verbunden." -"<br>Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable " -"gelesen." +"soll. Falls dieser Wert \"\" ist, wird direkt zum Server verbunden.<br /" +">Standardwert hierfür wird aus der \"http_proxy\"-Umgebungsvariable gelesen." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" -"Falls remote_port auf 0 gesetzt ist, wird frps einen zufälligen Port-Wert " -"zuweisen" +msgstr "Wenn remote_port 0 ist, weist frps Ihnen einen zufälligen Port zu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "Lokale IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Lokaler Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#, fuzzy +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "" -"LocalIp spezifiziert die IP-Adresse oder den Hostnamen der als Proxy " -"verwendet werden soll." +msgstr "LocalIp gibt die IP-Adresse oder den Hostnamen für den Proxy an." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort spezifiziert den Port des Proxys." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Standorte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Protokolldatei" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "Protokollierungsstufe" +msgstr "Protokollierungslevel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Maximale Tage protokollieren" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "Logge stderr" +msgstr "Stderr protokollieren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" -msgstr "Logge stdout" +msgstr "Stdout protokollieren" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"LogFile gibt eine Datei an, in die Protokolle geschrieben werden. Dieser " +"Wert wird nur verwendet, wenn LogWay entsprechend eingestellt ist.<br />In " +"der Voreinstellung ist dieser Wert \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" "LogLevel spezifiziert den minimalen Log-Level. Gültige Werte sind \"trace\", " -"\"debug\", \"info\", \"warn\" und \"error\".<br>Standartwert hierfür ist " +"\"debug\", \"info\", \"warn\" und \"error\".<br />Standartwert hierfür ist " "\"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays gibt die maximale Anzahl von Tagen an, die die " +"Protokollinformationen vor dem Löschen gespeichert werden sollen. Dies wird " +"nur verwendet, wenn LogWay == \"file\".<br />Standardmäßig ist dieser Wert 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit legt fest, ob sich ein Client nach einem fehlgeschlagenen " "Loginversuch beenden soll. Falls es auf falsch steht, wir es der client so " -"oft versuchen, bis es erfolgreich war.<br>Standardwert hierfür ist wahr." +"oft versuchen, bis es erfolgreich war.<br />Standardwert hierfür ist wahr." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "Der Name kann nicht \"common\" sein" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "LÄUFT NICHT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -261,105 +298,135 @@ msgstr "" "weitergereicht werden, siehe <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Plugin-Einstellungen" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protocol spezifiziert das Protokoll welches zur Interaktion mit dem Server " "verwendet werden soll. Gültige Werte sind \"tcp\", \"kcp\" und \"websocket\"." -"<br>Standardwert hierfür ist \"tcp\"." +"<br />Standardwert hierfür ist \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "Proxy-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Name des Proxies" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "Proxy-Typ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType spezifiziert den Typ des Proxyservers. Gültige Werte beinhalten " -"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".<br>Standardwert hierfür " -"ist \"tcp\"." +"\"tcp\", \"udp\", \"https\", \"stcp\" und \"xtcp\".<br />Standardwert " +"hierfür ist \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "LÄUFT" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "Remote-Port" +msgstr "Entfernter Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Starte nach Crash neu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rolle" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Daemon als Gruppe ausführen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "SOCKS5-Passwort" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5-Benutzer" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Server-Adresse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Servername" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Server-Port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" "ServerAddr spezifiziert die Adresse des Servers zu dem Verbunden werden soll." -"<br>Standardwert hierfür ist \"0.0.0.0\"." +"<br />Standardwert hierfür ist \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" "ServerPort spezifiziert den Port des Servers zu dem verbunden werden soll." -"<br>Standardwert hierfür ist 7000." +"<br />Standardwert hierfür ist 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "Startparameter" +msgstr "Startup-Einstellungen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "Subdomain" +msgstr "Unterdomäne" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "TCP-mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -367,66 +434,83 @@ msgstr "" "TLSEnable spezifiziert ob TLS bei der Kommunikation mit dem Server verwendet " "werden soll." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux regelt ob TCP-Stream-Multiplexing genutzt werden soll. Dies erlaubt " "mehrere Requests eines Clients über eine TCP-Verbindung. Falls dieser Wert " "auf wahr steht, muss der Server ebenfalls TCP-Multiplexing aktiviert haben." -"<br>Standardwert hierfür ist wahr." +"<br />Standardwert hierfür ist wahr." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"In dieser Liste können zusätzliche Parameter angegeben werden, die in diesem " +"LuCI nicht enthalten sind." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "Token spezifiziert das Authorisations-Token, das für die Erzeugung von " "Schlüsseln die an den Server gesendet werden genutzt wird. Der Server muss " -"ein gleichlautendes Token zur Authorisation eingestellt haben." -"<br>Standardwert hierfür ist \"\"." +"ein gleichlautendes Token zur Authorisation eingestellt haben.<br /" +">Standardwert hierfür ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Unix-Domänensocketpfad" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression legt fest, ob die Datenverbindung mit dem Server komprimiert " -"werden soll.<br>Standardwert hierfür ist falsch." +"werden soll.<br />Standardwert hierfür ist falsch." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption legt fest, ob die Datenverbindung mit dem Server verschlüsselt " "werden soll. Die Verschlüsselung erfolgt mittels der eingestellten Token auf " -"Server- und Clientseite.<br>Standardwert hierfür ist falsch." +"Server- und Clientseite.<br />Standardwert hierfür ist falsch." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "Nutzer" +msgstr "Benutzer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "User spezifiziert den Präfix für Proxy-Namen zur Unterscheidung von anderen " "Clients. Falls dieser Wert \"\" beträgt, werden Proxy-Namen automatisch zu " -"\"{user} {proxy_name} \" umgeschrieben.<br>Standardwert hierfür ist \"\"." +"\"{user} {proxy_name} \" umgeschrieben.<br />Standardwert hierfür ist \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "frp Client" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "Der Name kann nicht \"common\" sein" diff --git a/applications/luci-app-frpc/po/el/frpc.po b/applications/luci-app-frpc/po/el/frpc.po index 6f67cb8a2e..43d9804c2d 100644 --- a/applications/luci-app-frpc/po/el/frpc.po +++ b/applications/luci-app-frpc/po/el/frpc.po @@ -1,359 +1,444 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-11-09 08:59+0000\n" +"Last-Translator: Mac Mac <nofxmac@gmail.com>\n" +"Language-Team: Greek <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/el/>\n" "Language: el\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.8.2\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Κρυπτογράφηση" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "Γενικές ρυθμίσεις" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Επίπεδο καταγραφής" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Πρωτόκολλο" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "ΕΚΤΕΛΕΙΤΕ" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Χρήστης" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/es/frpc.po b/applications/luci-app-frpc/po/es/frpc.po index e8b8d7492c..55d50bbbd9 100644 --- a/applications/luci-app-frpc/po/es/frpc.po +++ b/applications/luci-app-frpc/po/es/frpc.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: \n" "POT-Creation-Date: \n" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" -"Last-Translator: Franco Castillo <castillofrancodamian@gmail.com>\n" +"PO-Revision-Date: 2024-10-16 19:05+0000\n" +"Last-Translator: brodrigueznu <brodrigueznu@hotmail.com>\n" "Language-Team: Spanish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/es/>\n" "Language: es\n" @@ -11,356 +11,431 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Añadir nuevo proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configuraciones adicionales" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Configuración adicional" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Dirección del administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "Clave del administrador" +msgstr "Contraseña de administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Puerto del administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "Usuario del administrador" +msgstr "Usuario de administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" "AdminAddr especifica la dirección a la que se une el servidor de " -"administración.<br>De manera predeterminada, este valor es \"127.0.0.1\"." +"administración.<br />De manera predeterminada, este valor es \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort especifica el puerto para que el servidor de administración " "escuche. Si este valor es 0, el servidor de administración no se iniciará." -"<br>De manera predeterminada, este valor es 0." +"<br />De manera predeterminada, este valor es 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd especifica la contraseña que el servidor de administración usará " -"para iniciar sesión.<br>De manera predeterminada, este valor es \"admin\"." +"para iniciar sesión.<br />De manera predeterminada, este valor es \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminUser especifica el nombre de usuario que el administrador del servidor " -"usará para iniciar sesión.<br> Por defecto, este valor es \"admin\"." +"usará para iniciar sesión.<br /> Por defecto, este valor es \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Directorio de activos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir especifica el directorio local desde el que el servidor de " "administración cargará los recursos. Si este valor es \"\", los activos se " -"cargarán desde el ejecutable incluido usando statik.<br>Por defecto, este " +"cargarán desde el ejecutable incluido usando statik.<br />Por defecto, este " "valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Recopilando los datos..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "Configuraciones comunes" +msgstr "Configuración común" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compresión" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" "Los archivos de configuración incluyen en el archivo de configuración " "temporal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Dominios personalizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Desactivar color de registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -"DisableLogColor desactiva los colores de registro cuando LogWay == \"console" -"\" cuando se establece en verdadero." +"DisableLogColor desactiva los colores de registro cuando LogWay == " +"\"console\" cuando se establece en verdadero." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Encriptación" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Variable ambiental" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Salir cuando falla el inicio de sesión" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Configuración general" +msgstr "Ajustes generales" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "Conceder acceso a la aplicación frpc de LuCI" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "Configuraciones HTTP" +msgstr "Configuración HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Contraseña HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Usuario HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval especifica en qué intervalo se envían los latidos al " -"servidor, en segundos. No se recomienda cambiar este valor.<br>Por defecto, " -"este valor es 30." +"servidor, en segundos. No se recomienda cambiar este valor.<br />Por " +"defecto, este valor es 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout especifica el retraso de respuesta de latido máximo " "permitido antes de que finalice la conexión, en segundos. No se recomienda " -"cambiar este valor.<br>Por defecto, este valor es 90." +"cambiar este valor.<br />Por defecto, este valor es 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Intervalo de latidos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Tiempo de espera de latidos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Reescritura de encabezado de host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "HttpProxy especifica una dirección proxy para conectarse al servidor. Si " -"este valor es \"\", el servidor se conectará directamente.<br>De manera " -"predeterminada, este valor se lee desde la variable de entorno \"http_proxy" -"\"." +"este valor es \"\", el servidor se conectará directamente.<br />De manera " +"predeterminada, este valor se lee desde la variable de entorno " +"\"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "Si remote_port es 0, frps le asignará un puerto aleatorio" +msgstr "Si el puerto remoto es 0, frps te asignará un puerto" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Puerto local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "LocalIp especifica la dirección IP o el nombre de host para el proxy." +msgstr "" +"LocalIp especifica la dirección IP o el nombre de host al que se utilizará " +"el proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "LocalPort especifica el puerto al proxy." +msgstr "LocalPort especifica el puerto al que se aplicará el proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Localizaciones" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Archivo de registro" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Nivel de registro" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Máx. días de registro" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Registro de stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "Registro de stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"LogFile especifica un archivo en el que se escribirán los registros. Este " +"valor solo se utilizará si LogWay se configura correctamente.<br />De forma " +"predeterminada, este valor es \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" "LogLevel especifica el nivel mínimo de registro. Los valores válidos son " -"\"trace\", \"debug\", \"info\", \"warn\" y \"error\".<br>Por defecto, este " +"\"trace\", \"debug\", \"info\", \"warn\" y \"error\".<br />Por defecto, este " "valor es \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays especifica el número máximo de días para almacenar información de " +"registro antes de la eliminación. Esto solo se usa si LogWay == \"archivo\"." +"<br />De forma predeterminada, este valor es 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit controla si el cliente debe salir o no después de un intento " "fallido de inicio de sesión. Si es falso, el cliente volverá a intentarlo " -"hasta que un intento de inicio de sesión tenga éxito.<br>Por defecto, este " +"hasta que un intento de inicio de sesión tenga éxito.<br />Por defecto, este " "valor es verdadero." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "El nombre no puede ser \"común\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NO EN EJECUCIÓN" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -"Los entornos del SO pasan a frp para la plantilla del archivo de " -"configuración, consulte <a href=\"https://github.com/fatedier/" -"frp#configuration-file-template\"> frp README</a>" +"Los entornos de SO pasan a frp para la plantilla del archivo de " +"configuración, véase <a href=\"https://github.com/fatedier/frp#configuration-" +"file-template\">frp LEAME</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Complemento" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Configuración del complemento" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protocolo especifica el protocolo que se utilizará al interactuar con el " -"servidor. Los valores válidos son \"tcp\", \"kcp\" y \"websocket\".<br>De " +"servidor. Los valores válidos son \"tcp\", \"kcp\" y \"websocket\".<br />De " "manera predeterminada, este valor es \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "Configuraciónes del proxy" +msgstr "Configuración del proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nombre del proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "Tipo de proxy" +msgstr "Tipo del proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType especifica el tipo de este proxy. Los valores válidos incluyen " -"\"tcp\", \"udp\", \"http\", \"https\", \"stcp\" y \"xtcp\".<br>Por defecto, " -"este valor es \"tcp\"." +"\"tcp\", \"udp\", \"http\", \"https\", \"stcp\" y \"xtcp\".<br />Por " +"defecto, este valor es \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "EN EJECUCIÓN" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "Puerto remoto" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Reaparecer cuando se estrelló" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Ejecutar demonio como grupo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Ejecutar demonio como usuario" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Contraseña para SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "Usuario de SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Dirección del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nombre del servidor" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Puerto del servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr especifica la dirección del servidor al que conectarse.<br>Por " -"defecto, este valor es \"0.0.0.0\"." +"ServerAddr especifica la dirección del servidor al que conectarse.<br />Por " +"defecto, este valor es \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -"ServerPort especifica el puerto para conectarse al servidor.<br>Por defecto, " -"este valor es 7000." +"ServerPort especifica el puerto para conectarse al servidor.<br />Por " +"defecto, este valor es 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "Configuraciones de inicio" +msgstr "Configuración de inicio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdominio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "TCP mux" +msgstr "multiplexación TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -368,70 +443,87 @@ msgstr "" "TLSEnable especifica si TLS debe usarse o no cuando se comunica con el " "servidor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux alterna la multiplexación de flujo TCP. Esto permite que múltiples " "solicitudes de un cliente compartan una sola conexión TCP. Si este valor es " "verdadero, el servidor también debe tener habilitada la multiplexación TCP." -"<br>De manera predeterminada, este valor es verdadero." +"<br />De manera predeterminada, este valor es verdadero." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Esta lista se puede utilizar para especificar algunos parámetros adicionales " +"que no se han incluido en este LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "Token especifica el token de autorización utilizado para crear claves para " "enviar al servidor. El servidor debe tener un token coincidente para que la " -"autorización tenga éxito.<br>Por defecto, este valor es \"\"." +"autorización tenga éxito.<br />Por defecto, este valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Ruta del socket del dominio Unix" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression controla si la comunicación con el servidor se comprimirá o " -"no.<br>Por defecto, este valor es falso." +"no.<br />Por defecto, este valor es falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption controla si la comunicación con el servidor se cifrará o no. " "El cifrado se realiza utilizando los tokens suministrados en la " -"configuración del servidor y del cliente.<br>De manera predeterminada, este " -"valor es falso." +"configuración del servidor y del cliente.<br />De manera predeterminada, " +"este valor es falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Usuario" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "El usuario especifica un prefijo para los nombres de proxy para " "distinguirlos de otros clientes. Si este valor no es \"\", los nombres de " -"proxy se cambiarán automáticamente a \"{user}.{Proxy_name}\".<br>De manera " +"proxy se cambiarán automáticamente a \"{user}.{Proxy_name}\".<br />De manera " "predeterminada, este valor es \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "Cliente frp" +#~ msgid "Name can not be \"common\"" +#~ msgstr "El nombre no puede ser \"común\"" + #~ msgid "Headers" #~ msgstr "Encabezados" diff --git a/applications/luci-app-frpc/po/fi/frpc.po b/applications/luci-app-frpc/po/fi/frpc.po index 7b04f28153..13cbc2f0a6 100644 --- a/applications/luci-app-frpc/po/fi/frpc.po +++ b/applications/luci-app-frpc/po/fi/frpc.po @@ -1,365 +1,444 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-21 18:50+0000\n" -"Last-Translator: Hannu Nyman <hannu.nyman@iki.fi>\n" +"PO-Revision-Date: 2024-08-31 15:13+0000\n" +"Last-Translator: Kieli Puoli <kielipuoli@gmail.com>\n" "Language-Team: Finnish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/fi/>\n" "Language: fi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.8-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 -msgid "Additional configs" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Additional configs" +msgstr "Lisäasetukset" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Lisäasetukset" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Salaus" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Yleisasetukset" +msgstr "Yleiset asetukset" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Lokitaso" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "EI KÄYNNISSÄ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokolla" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "KÄYNNISSÄ" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Palvelimen osoite" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Palvelinportti" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Käyttäjä" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/fr/frpc.po b/applications/luci-app-frpc/po/fr/frpc.po index f29c2aaede..b76cfbc57e 100644 --- a/applications/luci-app-frpc/po/fr/frpc.po +++ b/applications/luci-app-frpc/po/fr/frpc.po @@ -1,255 +1,300 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-24 17:41+0000\n" -"Last-Translator: viking76 <liaudetgael@gmail.com>\n" +"PO-Revision-Date: 2024-02-01 22:49+0000\n" +"Last-Translator: ButterflyOfFire <boffire@users.noreply.hosted.weblate.org>\n" "Language-Team: French <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/fr/>\n" "Language: fr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.2-dev\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Ajouter un proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configurations supplémentaires" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Paramètres supplémentaires" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Adresse administrateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "mot de passe d'administrateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Port administrateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Utilisateur administrateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" "AdminAddr spécifie l'adresse à laquelle le serveur d'administration se lie." -"<br>Par défaut, cette valeur est \"127.0.0.1\"." +"<br />Par défaut, cette valeur est \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort spécifie le port d'écoute du serveur d'administration. Si cette " -"valeur est 0, le serveur d'administration ne sera pas démarré.<br>Par " +"valeur est 0, le serveur d'administration ne sera pas démarré.<br />Par " "défaut, cette valeur est 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd spécifie le mot de passe que le serveur d'administration utilisera " -"pour la connexion.<br>Par défaut, cette valeur est \"admin\"." +"pour la connexion.<br />Par défaut, cette valeur est \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminUser spécifie le nom d'utilisateur que le serveur d'administration " -"utilisera pour la connexion.<br>Par défaut, cette valeur est \"admin\"." +"utilisera pour la connexion.<br />Par défaut, cette valeur est \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Répertoire des actifs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir spécifie le répertoire local à partir duquel le serveur " "d'administration chargera les ressources. Si cette valeur est \"\", les " "actifs seront chargés à partir de l'exécutable fourni à l'aide de statik." -"<br>Par défaut, cette valeur est \"\"." +"<br />Par défaut, cette valeur est \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Collecte de données ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "Paramètres communs" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compression" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" "Les fichiers de configuration incluent dans le fichier de configuration " "temporaire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Domaines personnalisés" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Désactiver la couleur du journal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -"DisableLogColor désactive les couleurs du journal lorsque LogWay == \"console" -"\" lorsqu'il est défini sur true." +"DisableLogColor désactive les couleurs du journal lorsque LogWay == " +"\"console\" lorsqu'il est défini sur true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Chiffrement" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Variable d'environnement" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Quitter lorsque la connexion échoue" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Paramètres généraux" +msgstr "Réglages généraux" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "Accorder l'accès à l'application LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "Paramètres HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Mot de passe HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "Http proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Utilisateur HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval spécifie à quel intervalle les pulsations sont envoyées au " -"serveur, en secondes. Il n'est pas recommandé de modifier cette valeur." -"<br>Par défaut, cette valeur est 30." +"serveur, en secondes. Il n'est pas recommandé de modifier cette valeur.<br /" +">Par défaut, cette valeur est 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout spécifie le délai maximal de réponse de pulsation autorisé " "avant la fin de la connexion, en secondes. Il n'est pas recommandé de " -"modifier cette valeur.<br>Par défaut, cette valeur est 90." +"modifier cette valeur.<br />Par défaut, cette valeur est 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Intervalle des battements cardiaques" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Délai d'expiration du rythme cardiaque" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Réécriture de l'en-tête de l'hôte" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "HttpProxy spécifie une adresse proxy pour se connecter au serveur via. Si " -"cette valeur est \"\", le serveur sera directement connecté.<br>Par défaut, " -"cette valeur est lue à partir de la variable d'environnement \"http_proxy\"." +"cette valeur est \"\", le serveur sera directement connecté.<br />Par " +"défaut, cette valeur est lue à partir de la variable d'environnement " +"\"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "Si remote_port vaut 0, frps vous attribuera un port aléatoire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "IP locale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Local port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "LocalIp spécifie l'adresse IP ou le nom d'hôte vers lequel proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort spécifie le port vers lequel proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Emplacements" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Fichier journal" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Niveau de journalisation" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Journal max jours" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Log stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "Log stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"LogFile spécifie un fichier dans lequel les journaux seront écrits. Cette " +"valeur ne sera utilisée que si LogWay est défini de manière appropriée.<br /" +">Par défaut, cette valeur est \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" "LogLevel spécifie le niveau de journalisation minimum. Les valeurs valides " -"sont \"trace\", \"debug\", \"info\", \"warn\" et \"error\".<br>Par défaut, " +"sont \"trace\", \"debug\", \"info\", \"warn\" et \"error\".<br />Par défaut, " "cette valeur est \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays indique le nombre maximal de jours pendant lesquels les " +"informations du journal doivent être conservées avant d'être supprimées. " +"Cette valeur n'est utilisée que si LogWay == \"file\".<br />Par défaut, " +"cette valeur est 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit contrôle si le client doit quitter ou non après une tentative " "de connexion échouée. Si la valeur est false, le client réessayera jusqu'à " -"ce qu'une tentative de connexion réussisse.<br>Par défaut, cette valeur est " -"vraie." +"ce qu'une tentative de connexion réussisse.<br />Par défaut, cette valeur " +"est vraie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "Le nom ne peut pas être \"commun\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NON-EXÉCUTANT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -258,105 +303,135 @@ msgstr "" "fichier de configuration, voir <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Réglages Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protocole" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protocol spécifie le protocole à utiliser lors de l'interaction avec le " -"serveur. Les valeurs valides sont \"tcp\", \"kcp\" et \"websocket\".<br>Par " -"défaut, cette valeur est \"tcp\"." +"serveur. Les valeurs valides sont \"tcp\", \"kcp\" et \"websocket\".<br /" +">Par défaut, cette valeur est \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "Paramètres du proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nom du proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "Type de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType spécifie le type de ce proxy. Les valeurs valides sont \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\" et \"xtcp\".<br>Par défaut, cette " +"\"udp\", \"http\", \"https\", \"stcp\" et \"xtcp\".<br />Par défaut, cette " "valeur est \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "EXÉCUTANT" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "Port distant" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Réapparaître en cas de crash" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rôle" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Exécuter le démon en tant que groupe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Exécuter le démon en tant qu'utilisateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Mot de passe SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 utilisateur" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Adresse du serveur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nom du serveur" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Port serveur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr spécifie l'adresse du serveur auquel se connecter.<br>Par défaut, " -"cette valeur est \"0.0.0.0\"." +"ServerAddr spécifie l'adresse du serveur auquel se connecter.<br />Par " +"défaut, cette valeur est \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -"ServerPort spécifie le port sur lequel se connecter au serveur.<br>Par " +"ServerPort spécifie le port sur lequel se connecter au serveur.<br />Par " "défaut, cette valeur est 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "Paramètres de démarrage" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Sous-domaine" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -364,67 +439,84 @@ msgstr "" "TLSEnable spécifie si TLS doit être utilisé ou non lors de la communication " "avec le serveur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux bascule le multiplexage de flux TCP. Cela permet à plusieurs demandes " "d'un client de partager une seule connexion TCP. Si cette valeur est vraie, " -"le multiplexage TCP doit également être activé sur le serveur.<br>Par " +"le multiplexage TCP doit également être activé sur le serveur.<br />Par " "défaut, cette valeur est vraie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Cette liste peut être utilisée pour spécifier des paramètres additionnels " +"qui n'ont pas été inclus dans ce LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "Token spécifie le jeton d'autorisation utilisé pour créer les clés à envoyer " "au serveur. Le serveur doit avoir un jeton correspondant pour que " -"l'autorisation réussisse.<br>Par défaut, cette valeur est \"\"." +"l'autorisation réussisse.<br />Par défaut, cette valeur est \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Chemin de socket de domaine Unix" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression contrôle si la communication avec le serveur sera compressée " -"ou non.<br>Par défaut, cette valeur est false." +"ou non.<br />Par défaut, cette valeur est false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption contrôle si la communication avec le serveur sera chiffrée ou " "non. Le chiffrement est effectué à l'aide des jetons fournis dans la " -"configuration du serveur et du client.<br>Par défaut, cette valeur est " +"configuration du serveur et du client.<br />Par défaut, cette valeur est " "fausse." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Utilisateur" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "L'utilisateur spécifie un préfixe pour les noms de proxy pour les distinguer " "des autres clients. Si cette valeur n'est pas \"\", les noms de proxy seront " -"automatiquement modifiés en \"{user}.{Proxy_name}\".<br>Par défaut, cette " +"automatiquement modifiés en \"{user}.{Proxy_name}\".<br />Par défaut, cette " "valeur est \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "frp Client" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "Le nom ne peut pas être \"commun\"" diff --git a/applications/luci-app-frpc/po/ga/frpc.po b/applications/luci-app-frpc/po/ga/frpc.po new file mode 100644 index 0000000000..4f8c2fe652 --- /dev/null +++ b/applications/luci-app-frpc/po/ga/frpc.po @@ -0,0 +1,523 @@ +msgid "" +msgstr "" +"PO-Revision-Date: 2024-09-06 19:05+0000\n" +"Last-Translator: Aindriú Mac Giolla Eoin <aindriu80@gmail.com>\n" +"Language-Team: Irish <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/ga/>\n" +"Language: ga\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=5; plural=n==1 ? 0 : n==2 ? 1 : (n>2 && n<7) ? 2 :(" +"n>6 && n<11) ? 3 : 4;\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Cuir seachfhreastalaí nua leis..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Additional configs" +msgstr "Cumraíochtaí breise" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Socruithe breise" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Seoladh riaracháin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "Admin password" +msgstr "Pasfhocal riarthóra" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "Admin port" +msgstr "Port admin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "Admin user" +msgstr "Úsáideoir admin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "" +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." +msgstr "" +"Sonraíonn AdminAddr an seoladh a nascann an freastalaí riaracháin leis.<br /" +">De réir réamhshocraithe, is é an luach seo ná \"0.0.0.0\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "" +"AdminPort specifies the port for the admin server to listen on. If this " +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." +msgstr "" +"Sonraíonn AdminPort an port a bhféadfaidh an freastalaí admin éisteacht air. " +"Más é 0 an luach seo, ní thosófar an freastalaí riaracháin.<br />De réir " +"réamhshocraithe, is é 0 an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "" +"AdminPwd specifies the password that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" +"Sonraíonn AdminPwd an pasfhocal a úsáidfidh an freastalaí riaracháin le " +"haghaidh logáil isteach.<br />De réir réamhshocraithe, is é an luach seo ná " +"\"admin\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "" +"AdminUser specifies the username that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" +"Sonraíonn AdminUser an t-ainm úsáideora a úsáidfidh an freastalaí riaracháin " +"chun logáil isteach.<br />De réir réamhshocraithe, is é an luach seo ná " +"\"admin\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "Assets dir" +msgstr "Sócmhainní dir" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "" +"AssetsDir specifies the local directory that the admin server will load " +"resources from. If this value is \"\", assets will be loaded from the " +"bundled executable using statik.<br />By default, this value is \"\"." +msgstr "" +"Sonraíonn AssetsDir an t-eolaire áitiúil a luchtóidh an freastalaí " +"riaracháin acmhainní uaithi. Más é \" \"an luach seo, déanfar sócmhainní a " +"luchtú ón inrite cuachta le staticí.<br />De réir réamhshocraithe, is \" \" " +"é an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Sonraí á mbailiú ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +msgid "Common Settings" +msgstr "Socruithe Coitianta" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "Compression" +msgstr "Comhbhrú" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Config files include in temporary config file" +msgstr "Áirítear comhaid cumraíochta sa chomhad cumraíochta sealadach" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +msgid "Custom domains" +msgstr "Fearainn saincheaptha" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "Disable log color" +msgstr "Díchumasaigh dath an loga" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "" +"DisableLogColor disables log colors when LogWay == \"console\" when set to " +"true." +msgstr "" +"Díchumasaíonn DisableLogColor dathanna loga nuair a bhíonn LogWay == \"consól" +"\" socraithe nuair atá siad fíor." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "Encryption" +msgstr "Criptiú" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "Environment variable" +msgstr "Athróg timpeallachta" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "Exit when login fail" +msgstr "Scoir nuair a theipeann ar logáil isteach" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +msgid "General Settings" +msgstr "Socruithe Ginearálta" + +#: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 +msgid "Grant access to LuCI app frpc" +msgstr "Deonaigh rochtain ar app LuCI frpc" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 +msgid "HTTP Settings" +msgstr "Socruithe HTTP" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 +msgid "HTTP password" +msgstr "Pasfhocal HTTP" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "HTTP proxy" +msgstr "seachfhreastalaí HTTP" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 +msgid "HTTP user" +msgstr "Úsáideoir HTTP" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "" +"HeartBeatInterval specifies at what interval heartbeats are sent to the " +"server, in seconds. It is not recommended to change this value.<br />By " +"default, this value is 30." +msgstr "" +"Sonraíonn HeartBeatInterval cad iad na buillí croí eatramh a sheoltar chuig " +"an bhfreastalaí, i soicindí. Ní mholtar an luach seo a athrú.<br />De réir " +"réamhshocraithe, is é 30 an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "" +"HeartBeatTimeout specifies the maximum allowed heartbeat response delay " +"before the connection is terminated, in seconds. It is not recommended to " +"change this value.<br />By default, this value is 90." +msgstr "" +"Sonraíonn HeartBeatTimeout an t-uasmhoill freagartha buille croí a " +"cheadaítear sula gcuirtear deireadh leis an nasc, i soicindí. Ní mholtar an " +"luach seo a athrú.<br />De réir réamhshocraithe, is é 90 an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "Heartbeat interval" +msgstr "Eatramh buille croí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "Heartbeat timeout" +msgstr "Teorainn ama buille croí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +msgid "Host header rewrite" +msgstr "Athscríobh ceanntásc an óstaigh" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "" +"HttpProxy specifies a proxy address to connect to the server through. If " +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." +msgstr "" +"Sonraíonn HttpProxy seoladh seachfhreastalaí chun ceangal leis an " +"bhfreastalaí tríd. Más é \" \"an luach seo, nascfar an freastalaí go díreach " +"leis.<br />De réir réamhshocraithe, léitear an luach seo ón athróg " +"timpeallachta \"http_proxy\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +msgid "If remote_port is 0, frps will assign a random port for you" +msgstr "Más 0 é remote_port, sannfaidh frps port randamach duit" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 +msgid "Local IP" +msgstr "IP áitiúil" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +msgid "Local port" +msgstr "Port áitiúil" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +msgid "LocalIp specifies the IP address or host name to proxy to." +msgstr "" +"Sonraíonn LocalIp an seoladh IP nó an t-ainm óstaigh chun an " +"seachfhreastalaí dó." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +msgid "LocalPort specifies the port to proxy to." +msgstr "Sonraíonn LocalPort an port le seachfhreastalaí chuige." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 +msgid "Locations" +msgstr "Suímh" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Comhad logála" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "Log level" +msgstr "Leibhéal logála" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Íoslódáil max laethanta" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +msgid "Log stderr" +msgstr "Logáil isteach stderr" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +msgid "Log stdout" +msgstr "Logáil isteach stdout" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"Sonraíonn LogFile comhad a mbeidh logs scríofa chuige. Ní úsáidfear an luach " +"seo ach amháin má tá LogWay socraithe go cuí.<br />De réir réamhshocraithe, " +"is \"consól\" an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" +"Sonraíonn LogLevel an t-íosleibhéal logála. Is iad na luachanna bailí \"rian" +"\", \"debug\", \"info\", \"rabhadh\", agus \"earráid\".<br />De réir " +"réamhshocraithe, is é an luach seo \"info\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"Sonraíonn LogMaxDays an t-uaslíon laethanta chun faisnéis logála a stóráil " +"roimh scriosadh. Ní úsáidtear é seo ach amháin i gcás LogWay == \"comhad\"" +".<br />De réir réamhshocraithe, is é 0 an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "" +"LoginFailExit controls whether or not the client should exit after a failed " +"login attempt. If false, the client will retry until a login attempt " +"succeeds.<br />By default, this value is true." +msgstr "" +"Rialaíonn LoginFailExit cibé ar cheart don chliant imeacht tar éis theip ar " +"iarracht logáil isteach. Má tá sé bréagach, bainfidh an cliant triail eile " +"as go dtí go n-éireoidh le hiarracht logáil isteach.<br />De réir " +"réamhshocraithe, tá an luach seo fíor." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NÍ RÚCHÁN" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "" +"OS environments pass to frp for config file template, see <a href=\"https://" +"github.com/fatedier/frp#configuration-file-template\">frp README</a>" +msgstr "" +"Gabhann timpeallachtaí OS chuig frp le haghaidh teimpléad comhaid " +"cumraíochta, féach <a href=\"https://github.com/fatedier/frp#configuration-" +"file-template\">frp README</a>" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Breiseán" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Socruithe Breiseán" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Prótacal" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "" +"Protocol specifies the protocol to use when interacting with the server. " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " +"value is \"tcp\"." +msgstr "" +"Sonraíonn Prótacal an prótacal atá le húsáid agus tú ag idirghníomhú leis an " +"bhfreastalaí. Is iad na luachanna bailí ná \"tcp\", \"kcp\", agus \"websocket" +"\".<br />De réir réamhshocraithe, is é an luach seo ná \"tcp\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 +msgid "Proxy Settings" +msgstr "Socruithe Seachfhreastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Ainm seachfhreastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 +msgid "Proxy type" +msgstr "Cineál seachfhreastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +msgid "" +"ProxyType specifies the type of this proxy. Valid values include \"tcp\", " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " +"value is \"tcp\"." +msgstr "" +"Sonraíonn ProxyType cineál an seachfhreastalaí seo. Áirítear le luachanna " +"bailí \"tcp\", \"udp\", \"http\", \"https\", \"stcp\", agus \"xtcp\".<br /" +">De réir réamhshocraithe, is é an luach seo ná \"tcp\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "REATHA" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +msgid "Remote port" +msgstr "Port cianda" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +msgid "Respawn when crashed" +msgstr "Respawn nuair a tuairteála" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 +msgid "Role" +msgstr "Ról" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +msgid "Run daemon as group" +msgstr "Rith deamhan mar ghrúpa" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +msgid "Run daemon as user" +msgstr "Rith deamhan mar úsáideoir" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Pasfhocal SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 úsáideora" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Seoladh freastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Ainm freastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "Port freastalaí" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "" +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." +msgstr "" +"Sonraíonn ServerAddr seoladh an fhreastalaí le ceangal leis.<br />De réir " +"réamhshocraithe, is é an luach seo ná \"127.0.0.1\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "" +"ServerPort specifies the port to connect to the server on.<br />By default, " +"this value is 7000." +msgstr "" +"Sonraíonn ServerPort an port le ceangal leis an bhfreastalaí air.<br />De " +"réir réamhshocraithe, is é 7000 an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 +msgid "Sk" +msgstr "Sk" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 +msgid "Startup Settings" +msgstr "Socruithe Tosaithe" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +msgid "Subdomain" +msgstr "Fofhearann" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "TCP mux" +msgstr "TCP mux" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "TLS" +msgstr "TLS" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "" +"TLSEnable specifies whether or not TLS should be used when communicating " +"with the server." +msgstr "" +"Sonraíonn TLSEnable cé acu ar cheart nó nár cheart TLS a úsáid agus tú i " +"mbun cumarsáide leis an bhfreastalaí." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "" +"TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " +"client to share a single TCP connection. If this value is true, the server " +"must have TCP multiplexing enabled as well.<br />By default, this value is " +"true." +msgstr "" +"Déanann TcpMux ilphléacsáil sruth TCP a scoránú. Ligeann sé seo iarratais " +"iolracha ó chliant chun nasc TCP amháin a roinnt. Má tá an luach seo fíor, " +"caithfidh an freastalaí ilphléacsáil TCP a bheith cumasaithe freisin.<br /" +">De réir réamhshocraithe, tá an luach seo fíor." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Is féidir an liosta seo a úsáid chun roinnt paraiméadair bhreise nach bhfuil " +"san áireamh sa LUCI seo a shonrú." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Ticéad" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "" +"Token specifies the authorization token used to create keys to be sent to " +"the server. The server must have a matching token for authorization to " +"succeed. <br />By default, this value is \"\"." +msgstr "" +"Sonraíonn Token an comhartha údaraithe a úsáidtear chun eochracha a chruthú " +"a sheolfar chuig an bhfreastalaí. Ní mór comhartha meaitseála a bheith ag an " +"bhfreastalaí le go n-éireoidh leis an údarú. <br />De réir réamhshocraithe, " +"is é \" \"an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Conair soicéad fearainn Unix" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "" +"UseCompression controls whether or not communication with the server will be " +"compressed.<br />By default, this value is false." +msgstr "" +"Rialaíonn UseCompression cé acu an ndéanfar cumarsáid leis an bhfreastalaí a " +"chomhbhrú nó nach ndéanfar.<br />De réir réamhshocraithe, tá an luach seo " +"bréagach." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "" +"UseEncryption controls whether or not communication with the server will be " +"encrypted. Encryption is done using the tokens supplied in the server and " +"client configuration.<br />By default, this value is false." +msgstr "" +"Rialaíonn UseEncryption cibé an mbeidh cumarsáid leis an bhfreastalaí " +"criptithe nó nach mbeidh. Déantar an criptiú trí úsáid a bhaint as na " +"comharthaí a soláthraíodh i gcumraíocht an fhreastalaí agus an chliaint.<br /" +">De réir réamhshocraithe, tá an luach seo bréagach." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "User" +msgstr "Úsáideoir" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "" +"User specifies a prefix for proxy names to distinguish them from other " +"clients. If this value is not \"\", proxy names will automatically be " +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." +msgstr "" +"Sonraíonn an t-úsáideoir réimír d’ainmneacha seachfhreastalaí chun iad a " +"idirdhealú ó chliaint eile. Mura luach é seo \" \", athrófar ainmneacha " +"seachfhreastalaí go huathoibríoch go \"{user}.{proxy_name}\".<br />De réir " +"réamhshocraithe, is \" \"an luach seo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 +msgid "frp Client" +msgstr "frp Cliant" diff --git a/applications/luci-app-frpc/po/he/frpc.po b/applications/luci-app-frpc/po/he/frpc.po index 75b740354c..197dabadf6 100644 --- a/applications/luci-app-frpc/po/he/frpc.po +++ b/applications/luci-app-frpc/po/he/frpc.po @@ -1,359 +1,445 @@ msgid "" msgstr "" +"PO-Revision-Date: 2023-09-07 05:53+0000\n" +"Last-Translator: Oren Bahar <shavitbit@gmail.com>\n" +"Language-Team: Hebrew <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/he/>\n" "Language: he\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n == 2) ? 1 : ((n > 10 && " +"n % 10 == 0) ? 2 : 3));\n" +"X-Generator: Weblate 5.0.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "הגדרות כלליות" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "פרוטוקול" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/hi/frpc.po b/applications/luci-app-frpc/po/hi/frpc.po index 55c01a93fb..f8aa2707cc 100644 --- a/applications/luci-app-frpc/po/hi/frpc.po +++ b/applications/luci-app-frpc/po/hi/frpc.po @@ -4,101 +4,113 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "" @@ -106,254 +118,321 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/hu/frpc.po b/applications/luci-app-frpc/po/hu/frpc.po index f81cfc427a..ba65f6939e 100644 --- a/applications/luci-app-frpc/po/hu/frpc.po +++ b/applications/luci-app-frpc/po/hu/frpc.po @@ -1,365 +1,458 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-02-09 22:36+0000\n" -"Last-Translator: Balázs Úr <balazs@urbalazs.hu>\n" +"PO-Revision-Date: 2024-08-25 18:32+0000\n" +"Last-Translator: hmzs <hmzs@1szer1.hu>\n" "Language-Team: Hungarian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/hu/>\n" "Language: hu\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 3.11-dev\n" +"X-Generator: Weblate 5.7.1-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Új proxy hozzáadása..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "További konfigurációk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "További beállítások" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Admin cím" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Rendszergazda jelszó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Admin port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Rendszergazda felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr azt a címet határozza meg amihez az admin szerver kötődik.<br /" +">Alapértelmezés szerint ez az érték „0.0.0.0”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort meghatározza melyik porton figyeljen az admin szerver. Ha ez az " +"érték 0, az admin szerver nem indul el.<br />Alapértelmezés szerint ez az " +"érték 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#, fuzzy msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminPwd meghatározza azt a jelszót, amelyet az admin szerver a " +"bejelentkezéshez használ.<br />Alapértelmezés szerint ez az érték „admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser meghatározza a felhasználónevet, amit az admin szerver a " +"bejelentkezéshez használ.<br />Alapértelmezés szerint ez az érték „admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Adatgyűjtés..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Általános Beállítások" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Tömörítés" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +#, fuzzy msgid "Config files include in temporary config file" -msgstr "" +msgstr "A konfig fájlok ideiglenes konfigurációs fájlban találhatók" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Egyedi domainek" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Színek kikapcsolása a naplóban" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Titkosítás" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Környezeti változó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Kikapcsolás, ha a belépés sikertelen" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Általános beállítások" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "Hozzáférés biztosítása LuCI app frpc-hez" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "HTTP beállítások" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "HTTP jelszó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "HTTP felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval meghatározza, hogy milyen gyakorisággal küldenek " +"szívveréseket a szervernek, másodpercekben. Nem ajánlott megváltoztatni ezt " +"az értéket.<br />Alapértelmezés szerint ez az érték 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Lokális IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Helyi port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "Naplózási szint" +msgstr "Naplózás szintje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NEM FUT" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokoll" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Szerep" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Démon futtatása csoportként" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Démon futtatása felhasználóként" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Kiszolgáló címe" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Kiszolgáló neve" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Kiszolgáló port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Felhasználó" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/it/frpc.po b/applications/luci-app-frpc/po/it/frpc.po index ada3dada1d..013fbf8826 100644 --- a/applications/luci-app-frpc/po/it/frpc.po +++ b/applications/luci-app-frpc/po/it/frpc.po @@ -1,365 +1,445 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-11-12 02:29+0000\n" -"Last-Translator: J. Lavoie <j.lavoie@net-c.ca>\n" +"PO-Revision-Date: 2024-07-01 12:20+0000\n" +"Last-Translator: moreno matassini <morenomatassini95@gmail.com>\n" "Language-Team: Italian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/it/>\n" "Language: it\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.4-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Aggiungi un nuovo proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Configurazioni aggiuntive" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Altre impostazioni" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Indirizzo dell'amministratore" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Password di Amministratore" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Porta admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Utente admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "Attività dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Caricamento dei dati in corso..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" +"I file di configurazione sono inclusi nel file di configurazione temporaneo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Crittografia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Impostazioni generali" +msgstr "Impostazioni Generali" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Porta locale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "File registro eventi" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Livello dei log" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NON IN ESECUZIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protocollo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "IN ESECUZIONE" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" +msgstr "Esegui il demone come utente" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Indirizzo del server" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nome del server" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "Porta del server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Token" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Utente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/ja/frpc.po b/applications/luci-app-frpc/po/ja/frpc.po index 911588aa5b..8958fab81b 100644 --- a/applications/luci-app-frpc/po/ja/frpc.po +++ b/applications/luci-app-frpc/po/ja/frpc.po @@ -1,110 +1,122 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-11 22:18+0000\n" -"Last-Translator: RyotaGamer <21ryotagamer@gmail.com>\n" +"PO-Revision-Date: 2024-03-28 23:40+0000\n" +"Last-Translator: Ioroi Kouhei <kouhei@ioroi.org>\n" "Language-Team: Japanese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/ja/>\n" "Language: ja\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "新しいプロキシを追加..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "追加の構成" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "追加設定" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "共通設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "圧縮" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "ログの色を無効にする" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "暗号化" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "環境変数" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "一般設定" @@ -112,254 +124,321 @@ msgstr "一般設定" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "HTTP 設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "HTTP パスワード" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "HTTP ユーザー" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "ハートビート間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "ハートビート・タイムアウト" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "ローカル IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "ローカル・ポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "ログレベル" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "プロトコル" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "プロキシ設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "役割" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "デーモンをグループとして実行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "デーモンをユーザーとして実行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "サーバーのアドレス" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "サーバーのポート" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "トークン" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "ユーザー" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/ko/frpc.po b/applications/luci-app-frpc/po/ko/frpc.po index d970c0ac6d..19c5731d56 100644 --- a/applications/luci-app-frpc/po/ko/frpc.po +++ b/applications/luci-app-frpc/po/ko/frpc.po @@ -1,359 +1,444 @@ msgid "" msgstr "" +"PO-Revision-Date: 2022-07-31 13:17+0000\n" +"Last-Translator: somni <me@somni.one>\n" +"Language-Team: Korean <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/ko/>\n" "Language: ko\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.14-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "암호화" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "기본 설정" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "프로토콜" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/lt/frpc.po b/applications/luci-app-frpc/po/lt/frpc.po new file mode 100644 index 0000000000..a797a2de9d --- /dev/null +++ b/applications/luci-app-frpc/po/lt/frpc.po @@ -0,0 +1,532 @@ +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"PO-Revision-Date: 2024-09-15 19:32+0000\n" +"Last-Translator: Džiugas Januševičius <dziugas1959@hotmail.com>\n" +"Language-Team: Lithuanian <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/lt/>\n" +"Language: lt\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (" +"n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-dev\n" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Pridėti naują įgaliotąjį..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Additional configs" +msgstr "Papildomi konfigūravimai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Papildomi nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Administratoriaus adresas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "Admin password" +msgstr "Administratoriaus slaptažodis" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "Admin port" +msgstr "Administratoriaus prievadas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "Admin user" +msgstr "Administratoriaus naudotojas/vartotojas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "" +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." +msgstr "" +"„AdminAddr“ nurodo adresą, prie kurio pririšą administratoriaus serverį.<br /" +">Pagal numatytuosius nustatymus, ši reikšmė yra – „0.0.0.0“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +msgid "" +"AdminPort specifies the port for the admin server to listen on. If this " +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." +msgstr "" +"„AdminPort“ nurodo prievadą, kuriuo administratoriaus serveris turi laukti " +"prisijungimo/jungties ryšio. Jei ši reikšmė yra – 0-is, administratoriaus " +"serveris nebus paleistas.<br />Pagal numatytuosius nustatymus, ši reikšmė " +"yra – 0-is." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +msgid "" +"AdminPwd specifies the password that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" +"„AdminPwd“ nurodo slaptažodį, kurį administratoriaus serveris naudos " +"naudotojo/vartotojo prisijungimui.<br />Pagal numatytuosius nustatymus, ši " +"reikšmė yra – „admin“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +msgid "" +"AdminUser specifies the username that the admin server will use for login." +"<br />By default, this value is \"admin\"." +msgstr "" +"„AdminUser“ nurodo naudotojo/vartotojo vardą (t.y. slapyvardį), kurį " +"administratoriaus serveris naudos naudotojo/vartotojo prisijungimui.<br /" +">Pagal numatytuosius nustatymus, ši reikšmė yra – „admin“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "Assets dir" +msgstr "„Assets“ katalogas/vietovė" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +msgid "" +"AssetsDir specifies the local directory that the admin server will load " +"resources from. If this value is \"\", assets will be loaded from the " +"bundled executable using statik.<br />By default, this value is \"\"." +msgstr "" +"„Assets katalogas/vietovė“ („AssetsDir“) – nurodo vietinę katalogą/vietovę, " +"iš kurio administratoriaus serveris įkels išteklius. Jei ši reikšmė yra – „“" +", ištekliai bus įkeliami iš vykdomojo failo paketo naudojant – „statik“.<br /" +">Pagal numatytuosius nustatymus, ši reikšmė yra – „“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Renkami duomenys..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +msgid "Common Settings" +msgstr "Tipiniai nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "Compression" +msgstr "Suspaudimas/Suglaudimas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 +msgid "Config files include in temporary config file" +msgstr "Konfigūracijos failai įtraukti į laikinąjį konfigūracijos failą" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +msgid "Custom domains" +msgstr "Pasirinktiniai domenai-sritys" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "Disable log color" +msgstr "Išjungti žurnalo spalvą" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +msgid "" +"DisableLogColor disables log colors when LogWay == \"console\" when set to " +"true." +msgstr "" +"„DisableLogColor“ išjungia/neįgalina žurnalo spalvas, kai „LogWay“ == " +"„konsole“; kai nustatyta į – „true“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "Encryption" +msgstr "Šifravimas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "Environment variable" +msgstr "Aplinkybių kintamumas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "Exit when login fail" +msgstr "Išeiti, kai nepavyksta prisijungti" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 +msgid "General Settings" +msgstr "Bendri nustatymai" + +#: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 +msgid "Grant access to LuCI app frpc" +msgstr "Suteikti prieigą prie „LuCI“ programos – „frpc“" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 +msgid "HTTP Settings" +msgstr "„HTTP“ nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 +msgid "HTTP password" +msgstr "„HTTP“ slaptažodis" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "HTTP proxy" +msgstr "„HTTP“ įgaliotinis serveris" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 +msgid "HTTP user" +msgstr "„HTTP“ naudotojas/vartotojas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "" +"HeartBeatInterval specifies at what interval heartbeats are sent to the " +"server, in seconds. It is not recommended to change this value.<br />By " +"default, this value is 30." +msgstr "" +"„Širdies ritmo intervalas“ („HeartBeatInterval“) – nurodo, kokiu intervalu „" +"širdies ritmai“ yra siunčiami į serverį – sekundėmis. Keisti šios reikšmės " +"nėra rekomenduojama.<br />Pagal numatytuosius nustatymus, ši reikšmė yra – " +"30-imt." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "" +"HeartBeatTimeout specifies the maximum allowed heartbeat response delay " +"before the connection is terminated, in seconds. It is not recommended to " +"change this value.<br />By default, this value is 90." +msgstr "" +"„Širdies ritmo“ pasibaigusios užklausos laikas („HeartBeatTimeout“) – nurodo " +"didžiausią leistiną „širdies ritmo“ atidėjimą, prieš nutraukiant ryšį – " +"sekundėmis. Keisti šios reikšmės nėra rekomenduojama.<br />Pagal " +"numatytuosius nustatymus, ši reikšmė yra – 90-imt." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 +msgid "Heartbeat interval" +msgstr "„Širdies ritmo“ intervalas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 +msgid "Heartbeat timeout" +msgstr "„Širdies ritmo“ pasibaigusios užklausos laikas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +msgid "Host header rewrite" +msgstr "Skleidėjo/Vedėjo antraštės perrašymas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +msgid "" +"HttpProxy specifies a proxy address to connect to the server through. If " +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." +msgstr "" +"„HTTP įgaliotinis“ („HttpProxy“) – nurodo įgaliotojo adresą, per kurį reikia " +"prisijungti prie serverio. Jei ši reikšmė yra – „“, tada serveris bus " +"tiesiogiai prijungtas.<br />Pagal numatytuosius nustatymus, ši reikšmė yra " +"nuskaitoma iš – „http_proxy“ aplinkos kintamojo." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +msgid "If remote_port is 0, frps will assign a random port for you" +msgstr "Jeigu „remote_port“ yra 0, tada „frps“ priskirs atsitiktinį prievadą" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 +msgid "Local IP" +msgstr "Vietinis IP" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 +msgid "Local port" +msgstr "Vietinis prievadas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +msgid "LocalIp specifies the IP address or host name to proxy to." +msgstr "" +"„LocalIp“ nurodo esamą IP adresą arba skleidėjo/vedėjo pavadinimą į kurį " +"įgaliotai pereiti." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +msgid "LocalPort specifies the port to proxy to." +msgstr "„LocalPort“ nurodo prievadą į kurį įgaliotai pereiti." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 +msgid "Locations" +msgstr "Vietovės" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Žurnalo failas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "Log level" +msgstr "Žurnalo lygis" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Maksimalus dienų žurnalinimas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +msgid "Log stderr" +msgstr "Žurnalinti „stderr“" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +msgid "Log stdout" +msgstr "Žurnalinti „stdout“" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"„LogFile“ nurodo failą, kuriame bus rašomi žurnalai. Ši reikšmė bus " +"naudojama tik tada, jei „LogWay“ bus nustatytas tinkamai.<br />Pagal " +"numatytuosius nustatymus, ši reikšmė yra – „console“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" +"„Žurnalo lygis“ („LogLevel“) – nurodo minimalų žurnalo lygį. Tinkamos " +"reikšmės yra – „trace“, „debug“, „info“, „warn“ ir „error“.<br />Pagal " +"numatytuosius nustatymus ši reikšmė yra – „info“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"„Žurnalo maksimalios dienos“ („LogMaxDays“) – nurodo žurnalo maksimalų dienų " +"skaičių, kiek dienų reikia saugoti žurnalo informaciją prieš ištrinant. Tai " +"yra naudojama tik tada, jei – „LogWay“ == „failas“.<br />Pagal numatytuosius " +"nustatymus, ši reikšmė yra – 0-is." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +msgid "" +"LoginFailExit controls whether or not the client should exit after a failed " +"login attempt. If false, the client will retry until a login attempt " +"succeeds.<br />By default, this value is true." +msgstr "" +"„Prisijungimo nevykęs/nesėkmingas išėjimas“ („LoginFailExit“) – valdo, ar " +"klientas turi išeiti po nevykusio/nesėkmingo prisijungimo bandymo. Jei " +"„false“, tada klientas pakartos/bandys iš naujo, kol pavyks prisijungti.<br /" +">Pagal numatytuosius nustatymus, ši reikšmė yra – „true“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NEVEIKIA" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +msgid "" +"OS environments pass to frp for config file template, see <a href=\"https://" +"github.com/fatedier/frp#configuration-file-template\">frp README</a>" +msgstr "" +"„OS“ aplinkybės yra perduodamos į – „frp“, skirtos konfigūracijos failo " +"šablonui, žr.: <a href=\"https://github.com/fatedier/frp#configuration-file-" +"template\">„frp README“</a>" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plėtinys" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Plėtinio nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokolas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "" +"Protocol specifies the protocol to use when interacting with the server. " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " +"value is \"tcp\"." +msgstr "" +"„Protokolas“ („Protocol“) – nurodo protokolą, kuris bus naudojamas " +"sąveikaujant su serveriu. Tinkamos reikšmės yra – „tcp“, „kcp“ ir „websocket“" +".<br />Pagal numatytuosius nustatymus, ši reikšmė yra – „tcp“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 +msgid "Proxy Settings" +msgstr "Įgaliojimo nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Įgaliotojo pavadinimas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 +msgid "Proxy type" +msgstr "Įgaliojimo tipas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +msgid "" +"ProxyType specifies the type of this proxy. Valid values include \"tcp\", " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " +"value is \"tcp\"." +msgstr "" +"„Įgaliotojo tipas“ („ProxyType“) – nurodo šio įgaliotojo tipą. Tinkamos " +"reikšmės apima – „tcp“, „udp“, „http“, „https“, „stcp“ ir „xtcp“.<br />Pagal " +"numatytuosius nustatymus, ši reikšmė yra – „tcp“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "VEIKIA" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 +msgid "Remote port" +msgstr "Nuotolinis prievadas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +msgid "Respawn when crashed" +msgstr "Atkurti/Perjungti (vardžiuojamai: „Atgimti“), kai užstringa" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 +msgid "Role" +msgstr "Vaidmuo" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +msgid "Run daemon as group" +msgstr "Vykdyti „daemon“ kaip grupę" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +msgid "Run daemon as user" +msgstr "Vykdyti paslaugų teikimo sistema kaip naudotojas/vartotojas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "„SOCKS5“ slaptažodis" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "„SOCKS5“ naudotojas/vartotojas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Serverio adresas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Serverio pavadinimas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "Serverio prievadas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "" +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." +msgstr "" +"„Serverio adresas“ („ServerAddr“) – nurodo serverio adresą, prie kurio " +"reikia prisijungti/užmegzti ryšį.<br />Pagal numatytuosius nustatymus, ši " +"reikšmė yra – „127.0.0.1“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "" +"ServerPort specifies the port to connect to the server on.<br />By default, " +"this value is 7000." +msgstr "" +"„Serverio priedas“ („ServerPort“) – nurodo prievadą, per kurį reikia " +"prisijungti/užmegzti ryšį prie serverio.<br />Pagal numatytuosius " +"nustatymus, ši reikšmė yra – 7000." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 +msgid "Sk" +msgstr "„Sk“" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 +msgid "Startup Settings" +msgstr "Paleidimo nustatymai" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +msgid "Subdomain" +msgstr "Sub-domenas/sritis" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "TCP mux" +msgstr "„TCP“ tankintuvas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "TLS" +msgstr "„TLS“" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 +msgid "" +"TLSEnable specifies whether or not TLS should be used when communicating " +"with the server." +msgstr "" +"„TLS“ įjungimas/įgalinimas“ („TLSEnable“) – nurodo, ar reikia naudoti – „TLS“" +", komunikuojant/susisiekiant su serveriu." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +msgid "" +"TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " +"client to share a single TCP connection. If this value is true, the server " +"must have TCP multiplexing enabled as well.<br />By default, this value is " +"true." +msgstr "" +"„„TCP“ tankintuvas/-imas“ („TcpMux“) – perjungia „TCP“ srauto tankinimą. Tai " +"leidžia kelioms kliento užklausoms bendrinti vieną „TCP“ ryšį. Jei ši " +"reikšmė yra „true“, tada serveryje taip pat turi būti įjungtas/įgalintas " +"„TCP“ tankinimas.<br />Pagal numatytuosius nustatymus, ši reikšmė yra – " +"„true“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Šis sąrašas gali būti naudojamas nurodyti, kai kuriuos papildomus " +"parametrus, kurie nebuvo įtraukti į šį – „LuCI“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Žetonas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "" +"Token specifies the authorization token used to create keys to be sent to " +"the server. The server must have a matching token for authorization to " +"succeed. <br />By default, this value is \"\"." +msgstr "" +"Žetonas nurodo prieigos žetoną, naudojamas kuriant raktus, kurie bus " +"siunčiami į serverį. Kad leidimas būtų sėkmingas, serveris turi turėti " +"atitinkamą prieigos žetoną. <br />Pagal numatytuosius nustatymus, ši reikšmė " +"yra – „“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "„Unix“ domeno-srities lizdo kelias" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 +msgid "" +"UseCompression controls whether or not communication with the server will be " +"compressed.<br />By default, this value is false." +msgstr "" +"„Naudoti suspaudimą/suglaudi(ni)mą“ („UseCompression“) – valdo, ar ryšys su " +"serveriu bus suspaustas/suglaudintas, ar ne.<br />Pagal numatytuosius " +"nustatymus, ši reikšmė yra – „false“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 +msgid "" +"UseEncryption controls whether or not communication with the server will be " +"encrypted. Encryption is done using the tokens supplied in the server and " +"client configuration.<br />By default, this value is false." +msgstr "" +"„Naudoti užšifravimą“ („UseEncryption“) – valdo, ar ryšys su serveriu bus " +"užšifruotas, ar ne. Užšifruojama, naudojant žetonus, pateiktus serverio ir " +"kliento konfigūracijoje.<br />Pagal numatytuosius nustatymus, ši reikšmė yra " +"– „false“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "User" +msgstr "Naudotojas/Vartotojas" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +msgid "" +"User specifies a prefix for proxy names to distinguish them from other " +"clients. If this value is not \"\", proxy names will automatically be " +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." +msgstr "" +"Naudotojas/Vartotojas nurodo priešdėlį, įgaliotojo pavadinimams , kad " +"atskirtų juos nuo kitų klientų. Jei ši reikšmė nėra – „“, tada įgaliotųjų " +"serverių pavadinimai bus automatiškai pakeisti į – „{user}.{proxy_name}“.<br " +"/>Pagal numatytuosius nustatymus ši, reikšmė yra – „“." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 +#: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 +msgid "frp Client" +msgstr "„frp“ klientas" diff --git a/applications/luci-app-frpc/po/mr/frpc.po b/applications/luci-app-frpc/po/mr/frpc.po index d6780209b1..7123fce174 100644 --- a/applications/luci-app-frpc/po/mr/frpc.po +++ b/applications/luci-app-frpc/po/mr/frpc.po @@ -10,101 +10,113 @@ msgstr "" "Plural-Forms: nplurals=2; plural=n > 1;\n" "X-Generator: Weblate 3.11-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "अतिरिक्त कॉन्फिगरेशन" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "सामान्य सेटिंग्ज" @@ -112,254 +124,321 @@ msgstr "सामान्य सेटिंग्ज" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "प्रोटोकॉल" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/ms/frpc.po b/applications/luci-app-frpc/po/ms/frpc.po index 929d30d226..1d99945200 100644 --- a/applications/luci-app-frpc/po/ms/frpc.po +++ b/applications/luci-app-frpc/po/ms/frpc.po @@ -1,104 +1,122 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-01-21 20:36+0000\n" +"Last-Translator: Abdul Muizz Bin Abdul Jalil <abmuizz@gmail.com>\n" +"Language-Team: Malay <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/ms/>\n" "Language: ms\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" +msgstr "Konfig tambahan" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "" @@ -106,254 +124,321 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokol" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/nb_NO/frpc.po b/applications/luci-app-frpc/po/nb_NO/frpc.po index 551a2f0920..216458ff2d 100644 --- a/applications/luci-app-frpc/po/nb_NO/frpc.po +++ b/applications/luci-app-frpc/po/nb_NO/frpc.po @@ -1,359 +1,446 @@ msgid "" msgstr "" +"PO-Revision-Date: 2024-01-26 16:51+0000\n" +"Last-Translator: Allan Nordhøy <epost@anotheragency.no>\n" +"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/nb_NO/>\n" "Language: nb_NO\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=n != 1;\n" +"X-Generator: Weblate 5.4-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +#, fuzzy +msgid "Add new proxy..." +msgstr "Legg til ny mellomtjener …" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Ytterligere oppsett" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Ytterligere innstillinger" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Samler data …" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 +#, fuzzy msgid "Common Settings" -msgstr "" +msgstr "Generelle innstillinger" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Egendefinerte domener" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Kryptering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "Generelle innstillinger" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "HTTP-innstillinger" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Lokal IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Lokal port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Loggingsnivå" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "Kjører ikke" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokoll" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "Kjører" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Kjør nisse som gruppe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" +msgstr "Kjør nisse som bruker" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 -msgid "Server port" +msgid "Server address" +msgstr "Tjeneradresse" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "Tjenerport" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Oppstartsinnstillinger" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Underdomene" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Symbol" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Bruker" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/en/frpc.po b/applications/luci-app-frpc/po/nl/frpc.po index 49dee33d93..0fcd561c04 100644 --- a/applications/luci-app-frpc/po/en/frpc.po +++ b/applications/luci-app-frpc/po/nl/frpc.po @@ -1,104 +1,121 @@ msgid "" msgstr "" -"Language: en\n" "Content-Type: text/plain; charset=UTF-8\n" +"Project-Id-Version: PACKAGE VERSION\n" +"Last-Translator: Automatically generated\n" +"Language-Team: none\n" +"Language: nl\n" +"MIME-Version: 1.0\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "" @@ -106,254 +123,321 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/pl/frpc.po b/applications/luci-app-frpc/po/pl/frpc.po index 273fd37ae4..6b91b08f5d 100644 --- a/applications/luci-app-frpc/po/pl/frpc.po +++ b/applications/luci-app-frpc/po/pl/frpc.po @@ -1,105 +1,117 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-06-16 16:09+0000\n" -"Last-Translator: Marcin Net <marcin.net@linux.pl>\n" +"PO-Revision-Date: 2024-10-16 13:01+0000\n" +"Last-Translator: Piotr Kołtun <pkoltungm@gmail.com>\n" "Language-Team: Polish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/pl/>\n" "Language: pl\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " -"|| n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.1.1-dev\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 " +"|| n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Dodaj nowy serwer proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Dodatkowe konfiguracje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Dodatkowe ustawienia" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Adres administratora" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Hasło administratora" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Port administratora" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "Administrator użytkownika" +msgstr "Login administratora" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -"AdminAddr określa adres, który serwer administracyjny łączy z adresem.<br> " -"Domyślnie jest to wartość \"127.0.0.1\"." +"AdminAddr określa adres, do którego podłączony jest serwer " +"administracyjny.<br />Domyślnie ta wartość to \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort określa port, na którym serwer administracyjny ma nasłuchiwać. " "Jeśli ta wartość wynosi 0, serwer administracyjny nie zostanie uruchomiony. " -"<br> Domyślnie ta wartość wynosi 0." +"<br />Domyślnie ta wartość wynosi 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd określa hasło, którego będzie używał serwer administracyjny do " -"logowania. <br> Domyślnie ta wartość to \"admin\"." +"logowania. <br />Domyślnie ta wartość to \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -"AdminUser określa nazwę użytkownika, której serwer administracyjny będzie " -"używał do logowania. Domyślnie ta wartość to \"admin\"." +"AdminUser określa nazwę użytkownika, która będzie używana przed admina do " +"logowania.<br />Domyślnie ta wartość to \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "Assets dir" +msgstr "Katalog zasobów" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir określa katalog lokalny, z którego serwer administracyjny będzie " "ładował zasoby. Jeśli ta wartość to \"\", zasoby zostaną załadowane z " -"pakietu wykonywalnego przy użyciu statik. <br> Domyślnie ta wartość to \"\"." +"pakietu wykonywalnego przy użyciu statik.<br />Domyślnie ta wartość to \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Zbieranie danych..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "Wspólne ustawienia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Kompresja" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "Pliki konfiguracyjne znajdują się w tymczasowym pliku konfiguracyjnym" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Własne domeny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Wyłącz kolor dziennika" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -107,146 +119,178 @@ msgstr "" "DisableLogColor wyłącza kolory dziennika, gdy LogWay == \"konsola\", jest " "ustawiona na true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Szyfrowanie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Zmienna środowiskowa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Wyjdź, gdy logowanie się nie powiedzie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Ustawienia główne" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "Udziel dostępu LuCI do aplikacji frpc" +msgstr "Udziel dostępu do aplikacji LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "Ustawienia HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Hasło HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Użytkownik HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval określa, w jakich odstępach czasu pulsy są wysyłane do " -"serwera, w sekundach. Nie zaleca się zmiany tej wartości. <br> Domyślnie ta " -"wartość wynosi 30." +"serwera, w sekundach. Nie zaleca się zmiany tej wartości. <br /> Domyślnie " +"ta wartość wynosi 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout określa maksymalne dozwolone opóźnienie odpowiedzi pulsu " "przed zakończeniem połączenia (w sekundach). Nie zaleca się zmiany tej " -"wartości. <br> Domyślnie ta wartość wynosi 90." +"wartości. <br /> Domyślnie ta wartość wynosi 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Interwał pulsu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Limit czasu pulsu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Przepisz nagłówek hosta" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "HttpProxy określa adres proxy do połączenia z serwerem. Jeśli ta wartość to " -"\"\", serwer zostanie podłączony bezpośrednio. <br> Domyślnie ta wartość " +"\"\", serwer zostanie podłączony bezpośrednio. <br /> Domyślnie ta wartość " "jest odczytywana ze zmiennej środowiskowej \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "Jeśli port_zdalny wynosi 0, frps przypisze Ci losowy port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "Lokalny IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Port lokalny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" "LocalIp określa adres IP lub nazwę hosta, do którego ma zostać wysłany proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort określa port, do którego należy się zwrócić." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Lokalizacje" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Plik dziennika" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Poziom logowania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Maks. dni logowania" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Dziennik stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "Dziennik stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"LogFile określa plik, w którym będą zapisywane dzienniki. Ta wartość będzie " +"używana tylko wtedy, gdy LogWay zostanie odpowiednio ustawiony. <br /" +">Domyślnie ta wartość to \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" "LogLevel określa minimalny poziom dziennika. Poprawne wartości to \"trace\", " -"\"debug\", \"info\", \"warn\" i \"error\".<br> Domyślnie jest to \"info\"." +"\"debug\", \"info\", \"warn\" i \"error\".<br />Domyślnie jest to \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays określa maksymalną liczbę dni przechowywania informacji dziennika " +"przed usunięciem. Jest używana tylko wtedy, gdy LogWay == \"file\". <br /" +">Domyślnie ta wartość wynosi 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -"LoginFailExit kontroluje czy klient powinien wyjść po nieudanej próbie " -"logowania. Jeśli jest ona nieprawdziwa, klient spróbuje ponownie, dopóki " -"próba logowania nie zakończy się sukcesem.<br> Domyślnie wartość true." +"LoginFailExit kontroluje, czy klient powinien zakończyć działanie po " +"nieudanej próbie logowania. Jeśli jest ustawiona na false, klient spróbuje " +"ponownie, dopóki próba logowania nie zakończy się sukcesem.<br />Domyślnie " +"wartość to true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "Nazwa nie może być „wspólna”" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NIEURUCHOMIONE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -255,105 +299,135 @@ msgstr "" "pliku konfiguracyjnego, patrz <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\"> frp README </a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Wtyczka" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Ustawienia wtyczki" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokół" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protokół określa protokół używany podczas interakcji z serwerem. Prawidłowe " -"wartości to \"tcp\", \"kcp\" i \"websocket\". <br> Domyślnie ta wartość to " +"wartości to \"tcp\", \"kcp\" i \"websocket\". <br /> Domyślnie ta wartość to " "\"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "Ustawienia proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nazwa serwera proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "Typ proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType określa typ tego proxy. Prawidłowe wartości to \"tcp\", \"udp\", " -"\"http\", \"https\", \"stcp\" i \"xtcp\". <br> Domyślnie ta wartość to \"tcp" -"\"." +"\"http\", \"https\", \"stcp\" i \"xtcp\". <br /> Domyślnie ta wartość to " +"\"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "URUCHOMIONE" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "Port zdalny" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Odradzaj się po awarii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Rola" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Uruchom demona jako grupę" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" -msgstr "Uruchom daemona jako użytkownik" +msgstr "Uruchom demona jako użytkownik" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Hasło SOCKS5" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "Użytkownik SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Adres serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nazwa serwera" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Port serwera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr określa adres serwera, z którymi chcesz się połączyć. <br>Domyśl " -"domyślnie ta wartość to \"0.0.0.0\"." +"ServerAddr określa adres serwera, z którym należy się połączyć.<br /" +">Domyślnie ta wartość to \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -"ServerPort określa port do połączenia z serwerem on.<br> Domyślnie wartość " +"ServerPort określa port do połączenia z serwerem on.<br /> Domyślnie wartość " "ta wynosi 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "Ustawienia uruchamiania" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdomena" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "Mux TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -361,69 +435,86 @@ msgstr "" "TLSEnable określa, czy podczas komunikacji z serwerem należy stosować TLS, " "czy też nie." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux przełącza multipleksowanie strumienia TCP. Pozwala to wielu żądaniom " "klienta na współużytkowanie jednego połączenia TCP. Jeśli ta wartość jest " -"prawdą, serwer musi również mieć włączone multipleksowanie TCP. <br> " +"prawdą, serwer musi również mieć włączone multipleksowanie TCP. <br /> " "Domyślnie ta wartość to true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Ta lista może służyć do określenia dodatkowych parametrów, które nie zostały " +"uwzględnione w tym LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "Token określa token autoryzacji używany do tworzenia kluczy, które mają " "zostać wysłane na serwer. Serwer musi mieć pasujący token, aby autoryzacja " -"zakończyła się powodzeniem. <br> Domyślnie ta wartość to \"\"." +"zakończyła się powodzeniem. <br /> Domyślnie ta wartość to \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Ścieżka gniazda domeny uniksowej" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression kontroluje, czy komunikacja z serwerem będzie kompresowana. " -"<br> Domyślnie ta wartość to false." +"<br /> Domyślnie ta wartość to false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption kontroluje, czy komunikacja z serwerem będzie szyfrowana. " "Szyfrowanie odbywa się przy użyciu tokenów dostarczonych w konfiguracji " -"serwera i klienta. <br> Domyślnie ta wartość to false." +"serwera i klienta. <br /> Domyślnie ta wartość to false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Użytkownik" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -"Użytkownik określa prefiks dla nazw proxy, aby odróżnić je od innych " -"klientów. Jeśli ta wartość nie jest \"\", nazwy proxy zostaną automatycznie " -"zmienione na \"{użytkownik}. {Nazwa_ proxy}}. <br> <br> Domyślnie ta wartość " -"to \"\"." - -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +"Użytkownik określa prefiks nazw serwerów proxy, aby odróżnić je od innych " +"klientów. Jeśli ta wartość nie jest \"\", nazwy serwerów proxy zostaną " +"automatycznie zmienione na \"{user}. {proxy_name}\". <br />W razie domyślnie " +"ta wartość to \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "Klient frp" +#~ msgid "Name can not be \"common\"" +#~ msgstr "Nazwa nie może być „wspólna”" + #~ msgid "Headers" #~ msgstr "Nagłówki" diff --git a/applications/luci-app-frpc/po/pt/frpc.po b/applications/luci-app-frpc/po/pt/frpc.po index d930c57888..7fec955235 100644 --- a/applications/luci-app-frpc/po/pt/frpc.po +++ b/applications/luci-app-frpc/po/pt/frpc.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-11-01 08:19+0000\n" +"PO-Revision-Date: 2024-07-20 20:09+0000\n" "Last-Translator: ssantos <ssantos@web.de>\n" "Language-Team: Portuguese <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/pt/>\n" @@ -8,98 +8,110 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"X-Generator: Weblate 5.7-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Adicionar um novo proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Configurações adicionais" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Endereço do administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Palavra-passe do administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Porto de administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Utilizador do Administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -"AdminAddr especifica o endereço para o qual o servidor admin se liga.<br>Por " -"padrão, este valor é \"127.0.0.1\"." +"AdminAddr especifica o endereço para o qual o servidor admin se liga.<br /" +">Por padrão, este valor é \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort especifica a porta onde o servidor de administração escuta. Se " -"este valor for 0, o servidor admin não será iniciado.<br>Por padrão, este " +"este valor for 0, o servidor admin não será iniciado.<br />Por padrão, este " "valor é 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd especifica a palavra-passe que o servidor admin usará para login." -"<br>Por padrão, este valor é \"admin\"." +"<br />Por padrão, este valor é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminUser especifica o nome de utilizador que o servidor admin usará para " -"login.<br>Por padrão, este valor é \"admin\"." +"login.<br />Por padrão, este valor é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir determina um diretório local de onde o painel carregará recursos. " "Se o valor for \"\", os ativos serão carregados do que estiver embutido no " -"executável usando o statik. <br>O valor predefinido é \"\"." +"executável usando o statik. <br />O valor predefinido é \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "A coletar dados..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compressão" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" "Ficheiros de configuração incluídos no ficheiro de configuração temporário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Domínios personalizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Desativar cores nos registos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -107,146 +119,177 @@ msgstr "" "DisableLogColor desativa o registo de cores quando LogWay == \"console\" for " "definido como true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Encriptação" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Saír caso início de sessão falhar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Configurações gerais" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "Conceder acesso à app LuCI frps" +msgstr "Conceder acesso à app frps do LuCI" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "Configurações HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Palavra-passe HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Utilizador HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval determina em que intervalo heartbeats serão enviados para " -"o servidor em segundos. Não é recomendável alterar este valor. <br>O valor " +"o servidor em segundos. Não é recomendável alterar este valor. <br />O valor " "predefinido é 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout especifica o atraso máximo permitido de resposta ao " "heartbeat antes que a conexão seja encerrada, em segundos. Não é " -"recomendável alterar esse valor. <br>O valor predefinido é 90." +"recomendável alterar esse valor. <br />O valor predefinido é 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Intervalo do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Reescrever o cabeçalho do host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "O HttpProxy especifica um endereço proxy para conectar ao servidor através " -"dele. Se esse valor for \"\", o servidor será conectado diretamente. <br>O " +"dele. Se esse valor for \"\", o servidor será conectado diretamente. <br />O " "valor predefinido desse valor é lido da variável do ambiente \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "Se remote_port for 0, frps atribuirá uma porta aleatória para si" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "LocalIp especifica o endereço IP ou nome de host para ser proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "LocalPort especifica a porta para ser proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Locais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Ficheiro de registo" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Nível de registo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Máximo de dias de registo" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Regisro do stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "Registo do stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -"O LogLevel determina o nível mínimo de registo. Valores válidos são \"trace" -"\", \"debug\", \"info\", \"warn\" e \"error\". <br>O valor predefinido é " +"O LogFile especifica um ficheiro onde os registos serão escritos. Este valor " +"só será usado se o LogWay for definido apropriadamente.<br />Por " +"predefinição, este valor é \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " "\"info\"." +msgstr "" +"O LogLevel determina o nível mínimo de registo. Valores válidos são " +"\"trace\", \"debug\", \"info\", \"warn\" e \"error\". <br />O valor " +"predefinido é \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays especifica a quantidade máxima de dias para armazenar informações " +"de registo antes de apagar. Isto só é usado se LogWay == \"file\".<br />Por " +"predefinição, este valor é 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit controla se o cliente deve ou não sair após a falha de uma " "tentativa de login. Se falso, o cliente tentará novamente até que uma " -"tentativa de login seja bem sucedida. <br>O valor predefinido é true." +"tentativa de login seja bem sucedida. <br />O valor predefinido é true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "O nome pode não ser \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NÃO EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -255,105 +298,135 @@ msgstr "" "modelo de configuração, veja <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Configurações do plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "O protocolo especifica o protocolo a ser usado ao interagir com o servidor. " -"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br>O valor " +"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br />O valor " "predefinido é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "Configurações de Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nome do proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType especifica o tipo deste proxy. Os valores válidos incluem \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", e \"xtcp\".<br>O valor predefinido é " -"\"tcp\"." +"\"udp\", \"http\", \"https\", \"stcp\", e \"xtcp\".<br />O valor predefinido " +"é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "EXECUTADO" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Reiniciar caso travado" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Função" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Executar daemon como grupo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Executar serviço como utilizador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Palavra-passe do SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "Utilizador do SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Endereço do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nome do servidor" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr especifica o endereço do servidor ao qual se conectar.<br>O valor " -"predefinido é \"0.0.0.0\"." +"ServerAddr especifica o endereço do servidor ao qual se conectar.<br />O " +"valor predefinido é \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -"ServerPort especifica a porta ao qual se conectar no servidor.<br>O valor " +"ServerPort especifica a porta ao qual se conectar no servidor.<br />O valor " "predefinido é 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdomínio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -361,66 +434,83 @@ msgstr "" "O TLSEnable especifica se o TLS deve ou não ser usado ao comunicar com o " "servidor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux alterna multiplexação de fluxo TCP. Isso permite que várias " "solicitações de um cliente compartilhem uma única conexão TCP. Se esse valor " -"for true, o servidor deve ter multiplexing TCP ativado também. <br>O valor " +"for true, o servidor deve ter multiplexing TCP ativado também. <br />O valor " "predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Esta lista pode ser usada para definir parâmetros adicionais que não estavam " +"incluídos neste LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Chave eletrónica" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" -"O token especifica o token de autorização usado para criar chaves a serem " -"enviadas para o servidor. O servidor deve ter um token correspondente para a " -"autorização ter sucesso. O valor predefinido é \"\"." +"Token especifica o token de autorização para criar chaves a serem enviadas " +"ao servidor. O servidor deve ter um token correspondente para a autorização " +"ter sucesso. <br />A predefinição é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Caminho do soquete do domínio Unix" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression controla se a comunicação com o servidor será compactada ou " -"não. <br>O valor predefinido é false." +"não. <br />O valor predefinido é false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption controla se a comunicação com o servidor será criptografada ou " "não. A criptografia é feita a usar os tokens fornecidos na configuração do " -"servidor e do cliente. <br>O valor predefinido é false." +"servidor e do cliente. <br />O valor predefinido é false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Utilizador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "O utilizador especifica um prefixo aos nomes de proxy para distingui-los de " "outros clientes. Se este valor não for \"\", os nomes de proxy serão " -"automaticamente alterados para \"{utilizador}. {nome_do_proxy}\". <br>O " +"automaticamente alterados para \"{utilizador}. {nome_do_proxy}\". <br />O " "valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "Cliente frp" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "O nome pode não ser \"common\"" diff --git a/applications/luci-app-frpc/po/pt_BR/frpc.po b/applications/luci-app-frpc/po/pt_BR/frpc.po index 809eb541fd..fb1ac80e47 100644 --- a/applications/luci-app-frpc/po/pt_BR/frpc.po +++ b/applications/luci-app-frpc/po/pt_BR/frpc.po @@ -1,6 +1,6 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-02 15:56+0000\n" +"PO-Revision-Date: 2022-10-18 04:10+0000\n" "Last-Translator: Wellington Terumi Uemura <wellingtonuemura@gmail.com>\n" "Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsfrpc/pt_BR/>\n" @@ -8,99 +8,111 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n > 1;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 4.15-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Adiciona um novo proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configurações adicionais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Configurações adicionais" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "Endereço do administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Senha do administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "Porta do administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "Usuário administrador" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" "AdminAddr determina o endereço a ser vinculado para uso do administrador do " -"servidor.<br>O valor predefinido é \"127.0.0.0.1\"." +"servidor.<br />O valor predefinido é \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "O AdminPort determina a porta onde o servidor administrativo atende. Se esse " -"valor for 0, o servidor administrativo não será iniciado. <br>O valor " +"valor for 0, o servidor administrativo não será iniciado. <br />O valor " "predefinido é 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminPwd determina a senha de login que será usado para o administrador do " -"servidor.<br>O valor predefinido é \"admin\"." +"servidor.<br />O valor predefinido é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" "AdminUser determina o nome de login do usuário que será usado pelo " -"administrador do servidor.<br>O valor predefinido é \"admin\"." +"administrador do servidor.<br />O valor predefinido é \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Diretório de ativos" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir determina o diretório onde o administrador do servidor irá buscar " "recursos para serem carregados. Se o valor for \"\", os ativos serão " -"carregados do que estiver embutido no executável usando o statik.<br>O valor " -"predefinido é \"\"." +"carregados do que estiver embutido no executável usando o statik.<br />O " +"valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Coletando dados ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "Configurações Comuns" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "Compressão" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" "Arquivos de configuração incluídos no arquivo de configuração temporário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "Domínios customizados" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "Desativar cores nos registros de log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." @@ -108,147 +120,178 @@ msgstr "" "DisableLogColor desativa as cores nos registros de log quando LogWay == " "\"console\" for definido como verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Criptografia" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Variável de ambiente" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "Encerre caso a autenticação falhe" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Configurações Gerais" +msgstr "Configurações gerais" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "Conceder acesso ao aplicativo LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "Configurações HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Senha HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Usuário HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval determina em que intervalo o heartbeats serão enviados " -"para o servidor em segundos. Não é recomendável alterar este valor. <br>O " +"para o servidor em segundos. Não é recomendável alterar este valor. <br />O " "valor predefinido é 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout determina o atraso máximo permitido de resposta do " "heartbeat antes que a conexão seja encerrada em segundos. Não é recomendável " -"alterar este valor. <br>O valor predefinido é 90." +"alterar este valor. <br />O valor predefinido é 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "Intervalo do Heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "Tempo limite do heartbeat" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "Reescrever cabeçalho do host" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" "O HttpProxy determina um endereço proxy a ser usado pelo servidor. Se este " -"valor for \"\", o servidor usará conexão direta. <br>O valor predefinido é " +"valor for \"\", o servidor usará conexão direta. <br />O valor predefinido é " "lido a partir da variável \"http_proxy\" do ambiente." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" "Se o remote_port for 0, o frps irá atribuir uma porta aleatória para você" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "IP Local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "Porta local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "LocalIp determina o endereço IP ou o nome do host a ser procurado." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "O LocalPort determina a porta a ser procurada." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "Locais" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Arquivo log" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Nível do registro do log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Registro máximo de dias" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "Registro log do stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "Registro log do stdout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." +msgstr "" +"O LogFile especifica um arquivo onde os registro logs serão gravados. Este " +"valor só será usado se o LogWay estiver configurado adequadamente.<br />Por " +"padrão, esse valor é \"console\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" "O LogLevel determina o nível mínimo de registro no log. Valores válidos são " -"\"trace\", \"debug\", \"info\", \"warn\" e \"error\". <br>O valor " +"\"trace\", \"debug\", \"info\", \"warn\" e \"error\". <br />O valor " "predefinido é \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays especifica a quantidade máxima de dias para armazenar informações " +"do registro log antes da exclusão. Isso só é usado se LogWay == \"arquivo\"." +"<br />Por padrão, este valor é 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit controla se o cliente deve ou não sair após uma tentativa de " "login fracassada. Se falso, o cliente tentará novamente até que uma " -"tentativa de login seja bem sucedida. <br>O valor predefinido é verdadeiro." +"tentativa de login seja bem sucedida. <br />O valor predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "O nome não pode ser \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NÃO ESTÁ EM EXECUÇÃO" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -257,105 +300,135 @@ msgstr "" "modelo de configuração, veja <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plug-in" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Configurações do plug-in" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protocolo" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protocolo determina o protocolo a ser usado quando interagir com o servidor. " -"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br>O valor " +"Os valores válidos são \"tcp\", \"kcp\" e \"websocket\". <br />O valor " "predefinido é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "Configurações de Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nome do proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "Tipo de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" "ProxyType determina o tipo deste proxy. Os valores válidos incluem \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\" e \"xtcp\". <br>O valor predefinido é " -"\"tcp\"." +"\"udp\", \"http\", \"https\", \"stcp\" e \"xtcp\". <br />O valor predefinido " +"é \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "EM EXECUÇÃO" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "Porta remota" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "Reiniciar caso entre em colapso" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "Papel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Executar serviço como usuário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Executar serviço como usuário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Senha SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "usuário SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "Endereço do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nome do servidor" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Porta do servidor" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr determina o endereço do servidor para se conectar. <br>O valor " -"predefinido é \"0,0.0.0\"." +"ServerAddr determina o endereço do servidor para se conectar. <br />O valor " +"predefinido é \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -"O ServerPort determina a porta para se conectar ao servidor. <br>O valor " +"O ServerPort determina a porta para se conectar ao servidor. <br />O valor " "predefinido é 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "Configurações de inicialização" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "Subdomínio" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." @@ -363,66 +436,83 @@ msgstr "" "O TLSEnable determina se o TLS deve ou não ser usado ao se comunicar com o " "servidor." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux alterna a multiplexação do fluxo TCP. Isso permite que várias " "solicitações de um cliente compartilhem uma única conexão TCP. Se esse valor " -"for verdadeiro, o servidor também deve ter a multiplexação TCP ativada. " -"<br>O valor predefinido é verdadeiro." +"for verdadeiro, o servidor também deve ter a multiplexação TCP ativada. <br /" +">O valor predefinido é verdadeiro." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Esta lista pode ser usada para definir alguns parâmetros adicionais que não " +"foram incluídos neste LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Token" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "O token determina o token de autorização usado para criar chaves que serão " "enviadas ao servidor. O servidor deve ter um token correspondente para que a " -"autorização seja bem sucedida. <br>O valor predefinido é \"\"." +"autorização seja bem sucedida. <br />O valor predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Caminho do soquete do domínio Unix" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" "UseCompression controla se a comunicação com o servidor será compactada ou " -"não. <br>O valor predefinido é falso." +"não. <br />O valor predefinido é falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption controla se a comunicação com o servidor será criptografada ou " "não. A criptografia é feita usando os tokens fornecidos na configuração do " -"servidor e do cliente. <br>O valor predefinido é falso." +"servidor e do cliente. <br />O valor predefinido é falso." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Usuário" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "O usuário determina um prefixo para os nomes de proxy para distingui-los de " "outros clientes. Se esse valor não for \"\", os nomes de proxy serão " -"automaticamente alterados para \"{user}. {proxy_name}\". <br>O valor " +"automaticamente alterados para \"{user}. {proxy_name}\". <br />O valor " "predefinido é \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "Cliente frp" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "O nome não pode ser \"common\"" diff --git a/applications/luci-app-frpc/po/ro/frpc.po b/applications/luci-app-frpc/po/ro/frpc.po index 043a05c68a..fbf1c5e3dc 100644 --- a/applications/luci-app-frpc/po/ro/frpc.po +++ b/applications/luci-app-frpc/po/ro/frpc.po @@ -1,7 +1,7 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-02 14:47+0000\n" -"Last-Translator: Andrei Pavel <andreicristianpavel@gmail.com>\n" +"PO-Revision-Date: 2022-11-04 20:04+0000\n" +"Last-Translator: Simona Iacob <s@zp1.net>\n" "Language-Team: Romanian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/ro/>\n" "Language: ro\n" @@ -9,358 +9,515 @@ msgstr "" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < " "20)) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 4.14.2-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Adăugați un nou proxy..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Configurații adiționale" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Setări adiționale" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Adresa administratorului" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Parola de administrator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Port administrativ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Utilizator administrator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr specifică adresa la care se leagă serverul de administrare.<br /" +">În mod implicit, această valoare este \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort specifică portul pe care serverul de administrare trebuie să " +"asculte. Dacă această valoare este 0, serverul de administrare nu va fi " +"pornit.<br />În mod implicit, această valoare este 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminPwd specifică parola pe care serverul de administrare o va utiliza " +"pentru autentificare.<br />Din mod implicit, această valoare este \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser specifică numele de utilizator pe care serverul de administrare îl " +"va utiliza pentru autentificare.<br />În mod implicit, această valoare este " +"\"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "Directorul de resurse" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" +"AssetsDir specifică directorul local din care serverul de administrare va " +"încărca resursele. Dacă această valoare este \"\", resursele vor fi " +"încărcate din executabilul inclus în pachet, utilizând statik.<br />Din mod " +"implicit, această valoare este \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Colectarea datelor ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Setări comune" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Comprimare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "Fișiere de configurare incluse în fișierul de configurare temporar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Domenii personalizate" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Dezactivați culoarea jurnalului" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" +"DisableLogColor dezactivează culorile jurnalului atunci când LogWay == " +"\"console\" este setat la adevărat." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Criptare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Variabila de mediu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Paritate" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Setări generale" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "Acordă acces la aplicația LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "Setări HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "Parola HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "Proxy HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "Utilizator HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval specifică la ce interval de timp sunt trimise bătăile " +"inimii către server, în secunde. Nu este recomandat să modificați această " +"valoare.<br />În mod implicit, această valoare este 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" +"HeartBeatTimeout specifică timpul maxim de așteptare a unei bătăi de inimă " +"înainte de a încheia conexiunea. Nu se recomandă modificarea acestei valori." +"<br />În mod implicit, această valoare este 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "Intervalul bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "Timpul limită a bătăilor inimii" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" -msgstr "" +msgstr "Rescrierea antetului gazdă" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" +"HttpProxy specifică o adresă de proxy prin care să se conecteze la server. " +"Dacă această valoare este \"\", serverul va fi conectat direct.<br />În mod " +"implicit, această valoare este citită din variabila de mediu \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" +"Dacă remote_port este 0, frps va aloca un port aleatoriu pentru dumneavoastră" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "IP local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Port local" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" +"LocalIp specifică adresa IP sau numele de gazdă către care se face proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort specifică portul la care se face proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" -msgstr "" +msgstr "Locații" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Fișier jurnal" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "" +msgstr "Nivel de jurnal" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Jurnal maxim zile" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "Jurnal stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "Jurnal stdout" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" +"LogFile specifică un fișier în care vor fi scrise jurnalele. Această valoare " +"va fi utilizată numai dacă LogWay este setat în mod corespunzător.<br />În " +"mod implicit, această valoare este \"console\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" +"LogLevel specifică nivelul minim al jurnalului. Valorile valabile sunt " +"\"trace\", \"debug\", \"info\", \"warn\" și \"error\".<br />Prin definiție, " +"această valoare este \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays specifică numărul maxim de zile de stocare a informațiilor din " +"jurnal înainte de ștergere . Acest lucru se utilizează numai dacă LogWay == " +"\"file\".<br />În mod implicit, această valoare este 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" +"LoginFailExit controlează dacă clientul trebuie sau nu să iasă după o " +"încercare eșuată de conectare. Dacă este falsă, clientul va încerca din nou " +"până când o încercare de autentificare reușește.<br />Din mod implicit, " +"această valoare este adevărată." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "NU FUNCȚIONEAZĂ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"Mediile sistemului de operare trec la frp pentru șablonul fișierului de " +"configurare, vezi <a href=\"https://github.com/fatedier/frp#configuration-" +"file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Setările plugin-ului" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" -msgstr "" +msgstr "Protocol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" +"Protocol specifică protocolul care trebuie utilizat la interacțiunea cu " +"serverul. Valorile valide sunt \"tcp\", \"kcp\" și \"websocket\".<br />Prin " +"definiție, această valoare este \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "" +msgstr "Setări Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Nume proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Tipul de proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" +"ProxyType specifică tipul acestui proxy. Valorile valide includ \"tcp\", " +"\"udp\", \"http\", \"https\", \"stcp\" și \"xtcp\".<br />Prin definiție, " +"această valoare este \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "RULARE" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Port la distanță" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "Respawn când crapă" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Rularea daemonului ca grup" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" -msgstr "" +msgstr "Rulați daemonul ca utilizator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Parola SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "Utilizator SOCKS5" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Adresa serverului" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Nume server" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "Port de server" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" +"ServerAddr specifică adresa serverului la care trebuie să se conecteze.<br /" +">În mod implicit, această valoare este \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" +"ServerPort specifică portul de conectare la server.<br />În mod implicit, " +"această valoare este 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Setări de pornire" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Subdomeniu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "Mux TCP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" +"TLSEnable specifică dacă TLS trebuie să fie utilizat sau nu atunci când se " +"comunică cu serverul." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" +"TcpMux comută multiplexarea fluxurilor TCP. Acest lucru permite ca mai multe " +"cereri de la un client să partajeze o singură conexiune TCP. Dacă această " +"valoare este adevărată, serverul trebuie să aibă activată și multiplexarea " +"TCP.<br />În mod implicit, această valoare este adevărată." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" +"Această listă poate fi utilizată pentru a specifica anumiți parametri " +"suplimentari care nu au fost incluși în acest LuCI." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Token" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" +"Token specifică tokenul de autorizare utilizat pentru a crea cheile care " +"urmează să fie trimise către server. Serverul trebuie să aibă un token " +"corespunzător pentru ca autorizarea să reușească. <br />În mod implicit, " +"această valoare este \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Calea socket-ului de domeniu Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" +"UseCompression controlează dacă comunicarea cu serverul va fi sau nu " +"comprimată.<br />În mod implicit, această valoare este falsă." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" +"UseEncryption controlează dacă comunicarea cu serverul va fi sau nu " +"criptată. Criptarea se face cu ajutorul token-urilor furnizate în " +"configurația serverului și a clientului.<br />În mod implicit, această " +"valoare este falsă." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Utilizator" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" +"Utilizatorul specifică un prefix pentru numele proxy pentru a le distinge de " +"alți clienți. Dacă această valoare nu este \"\", numele proxy-ului va fi " +"schimbat automat în \"{utilizator}.{nume_proxy}\".<br />În mod implicit, " +"această valoare este \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "client frp" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "Numele nu poate fi \"comun\"" diff --git a/applications/luci-app-frpc/po/ru/frpc.po b/applications/luci-app-frpc/po/ru/frpc.po index c9ef973aee..b724ac6a15 100644 --- a/applications/luci-app-frpc/po/ru/frpc.po +++ b/applications/luci-app-frpc/po/ru/frpc.po @@ -1,366 +1,517 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-18 17:26+0000\n" -"Last-Translator: sergio <sergio+it@outerface.net>\n" +"PO-Revision-Date: 2024-11-01 07:42+0000\n" +"Last-Translator: lotigara <lotigara@yandex.ru>\n" "Language-Team: Russian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/ru/>\n" "Language: ru\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.1-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8.2-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Добавить новый прокси..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" +msgstr "Дополнительные конфигурации" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "Дополнительные настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" -msgstr "" +msgstr "Адрес администратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "Пароль администратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Порт администратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Пользователь администратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr указывает адрес, к которому привязывается сервер " +"администратора.<br />По умолчанию это значение равно \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort указывает порт, на котором будет прослушиваться сервер " +"администратора. Если это значение равно 0, сервер администратора не будет " +"запущен.<br />По умолчанию это значение равно 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminPwd указывает пароль, который сервер администраторов будет использовать " +"для входа в систему.<br />По умолчанию это значение равно \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser указывает имя пользователя, которое сервер администраторов будет " +"использовать для входа в систему.<br />По умолчанию это значение равно " +"\"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "Каталог ресурсов" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" +"AssetsDir указывает локальную директорию, из которой сервер " +"администрирования будет загружать ресурсы. Если это значение равно \"\", то " +"ресурсы будут загружаться из исполняемого файла fprc с помощью statik (" +"библиотека на Go для встраивания ресурсов).<br />По умолчанию это значение " +"равно \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Сбор данных ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Общие настройки" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Компрессия" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "Конфигурационные настройки записаны во временный конфигурационный файл" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Пользовательские домены" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Отключить цвета в журнале" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" +"DisableLogColor отключает цвета журнала, когда LogWay == \"console\", если " +"установлено значение true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Шифрование" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "Переменные окружения" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Выход при неудачном входе в систему" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Основные настройки" +msgstr "Основные Настройки" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "Предоставить доступ LuCI к приложению frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "Настройки HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "Пароль HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "Прокси HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "Пользователь HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval указывает, с каким интервалом в секундах пульс " +"отправляется на сервер. Не рекомендуется изменять это значение.<br />По " +"умолчанию это значение равно 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" +"HeartBeatTimeout задает максимально допустимую задержку ответа пульса до " +"разрыва соединения, в секундах. Не рекомендуется изменять это значение.<br /" +">По умолчанию это значение равно 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "Heartbeat интервал" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "Heartbeat тайм-аут" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" -msgstr "" +msgstr "Перезапись заголовка хоста" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" +"HttpProxy указывает прокси-адрес для подключения к серверу. Если это " +"значение равно \"\", сервер будет подключен напрямую.<br />По умолчанию это " +"значение считывается из переменной окружения \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" +msgstr "Если remote_port равен 0, frps выберет для вас случайный порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Локальный IP-адрес" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Локальный порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "" +msgstr "LocalIp указывает IP-адрес или имя хоста для проксирования." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort указывает порт для проксирования." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" -msgstr "" +msgstr "Локации" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Файл журнала" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "Уровень журналирования" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Хранить журнал (дней)" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "Сохранять вывод stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "Сохранять вывод stdout" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" +"LogFile указывает файл, в который будут записываться журналы. Это значение " +"будет использоваться только в том случае, если LogWay установлен " +"соответствующим образом.<br />По умолчанию это значение равно \"console\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" +"LogLevel задает минимальный уровень журнала. Допустимые значения: \"trace\", " +"\"debug\", \"info\", \"warn\" и \"error\".<br />По умолчанию это значение " +"равно \"info\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays определяет максимальное количество дней хранения информации " +"журнала перед удалением. Это значение используется, только если LogWay == " +"\"file\".<br />По умолчанию это значение равно 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" +"LoginFailExit контролирует, должен ли клиент завершать работу после " +"неудачной попытки входа в систему. Если значение равно false, клиент будет " +"повторять попытки до тех пор, пока попытка входа не увенчается успехом.<br /" +">По умолчанию это значение равно true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "НЕ ЗАПУЩЕНО" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"Переменные среды, передаваемые frp, используются для подстановки в шаблоны в " +"файле конфигурации. Подробнее читай в <a href=\"https://github.com/fatedier/" +"frp#using-environment-variables\">справке frp</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Плагин" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Настройки плагина" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" +"Protocol указывает протокол, который будет использоваться при взаимодействии " +"с сервером. Допустимые значения: \"tcp\", \"kcp\" и \"websocket\".<br />По " +"умолчанию это значение равно \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "" +msgstr "Настройки прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Имя прокси" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Тип прокси" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" +"ProxyType указывает тип этого прокси. Допустимые значения: \"tcp\", \"udp\", " +"\"http\", \"https\", \"stcp\" и \"xtcp\".<br />По умолчанию это значение " +"равно \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "ЗАПУЩЕН" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Удаленный порт" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "Перезапускаться после вылета" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Роль" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "Запуск демона от имени группы" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "Запуск демона от имени пользователя" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "SOCKS5 пароль" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 пользователь" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Адрес сервера" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Имя сервера" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "Порт сервера" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" +"ServerAddr указывает адрес сервера для подключения.<br />По умолчанию это " +"значение равно \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" +"ServerPort указывает порт для подключения к серверу.<br />По умолчанию это " +"значение равно 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Настройки запуска" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Поддомен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "TCP мультиплексор" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" +"TLSEnable определяет, следует ли использовать TLS при взаимодействии с " +"сервером." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" +"TcpMux включает мультиплексирование потока TCP. Это позволяет нескольким " +"запросам от клиента использовать одно TCP-соединение. Если это значение " +"равно true, на сервере также должно быть включено мультиплексирование " +"TCP.<br />По умолчанию это значение равно true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" +"Этот список может быть использован для указания некоторых дополнительных " +"параметров, которые не были включены в данный LuCI." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "Токен" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" +"Token указывает маркер авторизации, используемый для создания ключей, " +"отправляемых на сервер. Для успешной авторизации сервер должен иметь " +"соответствующий токен. <br />По умолчанию это значение равно \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Путь к сокету домена Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" +"UseCompression определяет, будет ли сжиматься трафик при общении с " +"сервером.<br />По умолчанию это значение равно false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" +"UseEncryption контролирует, будет ли шифроваться связь с сервером. " +"Шифрование осуществляется на основе токенов, заданных в настройках сервера и " +"клиента.<br />По умолчанию это значение равно false." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Пользователь" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" +"Пользователь указывает префикс для имен прокси, чтобы отличать их от других " +"клиентов. Если это значение не \"\", имена прокси будут автоматически " +"изменены на \"{user}.{proxy_name}\".<br />По умолчанию это значение равно \"" +"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp клиент" diff --git a/applications/luci-app-frpc/po/sk/frpc.po b/applications/luci-app-frpc/po/sk/frpc.po index c6a5641d34..7de4806f51 100644 --- a/applications/luci-app-frpc/po/sk/frpc.po +++ b/applications/luci-app-frpc/po/sk/frpc.po @@ -1,110 +1,122 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-04-04 17:35+0000\n" -"Last-Translator: Dušan Kazik <prescott66@gmail.com>\n" +"PO-Revision-Date: 2023-07-10 15:50+0000\n" +"Last-Translator: MaycoH <hudec.marian@hotmail.com>\n" "Language-Team: Slovak <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/sk/>\n" "Language: sk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" -"X-Generator: Weblate 4.0-dev\n" +"X-Generator: Weblate 5.0-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Šifrovanie" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Všeobecné nastavenia" @@ -112,254 +124,321 @@ msgstr "Všeobecné nastavenia" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Úroveň záznamu" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Adresa servera" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Názov servera" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "Port servera" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Používateľ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/sv/frpc.po b/applications/luci-app-frpc/po/sv/frpc.po index 8ead5a1b2d..6cbe03a56b 100644 --- a/applications/luci-app-frpc/po/sv/frpc.po +++ b/applications/luci-app-frpc/po/sv/frpc.po @@ -1,365 +1,448 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-23 14:41+0000\n" -"Last-Translator: Kristoffer Grundström <dsmusicever@gmail.com>\n" +"PO-Revision-Date: 2021-12-15 03:52+0000\n" +"Last-Translator: Kristoffer Grundström <swedishsailfishosuser@tutanota.com>\n" "Language-Team: Swedish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/sv/>\n" "Language: sv\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 4.10-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "Extra konfigurationer" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Extra inställningar" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Adress för admin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Lösenord för admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Port för admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Admin-användare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Samlar in data ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Vanliga inställningar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Kompression" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Anpassade domäner" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Inaktivera logg-färg" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Kryptering" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Miljövariabel" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Avsluta när inloggningen misslyckas" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Generella inställningar" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "Godkänn åtkomst till LuCi-appen frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "Inställningar för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "Lösenord för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "Proxy för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "Användare för HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "Hjärtslagsintervall" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" +"Om remote_port är 0 så kommer frps att tilldela en slumpmässig port till dig" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Lokal IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Lokal port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" +msgstr "Platser" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" +msgstr "Logg-nivå" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "Logga stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "Logga stdout" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "KÖRS INTE" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 -msgid "Protocol" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +msgid "Protocol" +msgstr "Protokoll" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" +msgstr "Inställningar för proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Typ av proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "KÖRS" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Fjärrport" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Roll" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Kör daemon som grupp" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" +msgstr "Kör daemon som användare" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 -msgid "Server port" +msgid "Server address" +msgstr "Server-adress" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +msgid "Server port" +msgstr "Port för server" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Inställningar för uppstart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Underdomän" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Tecken" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Användare" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp-klient" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "Namnet kan inte vara \"vanligt\"" diff --git a/applications/luci-app-frpc/po/templates/frpc.pot b/applications/luci-app-frpc/po/templates/frpc.pot index ac698b41b6..e1c2485e22 100644 --- a/applications/luci-app-frpc/po/templates/frpc.pot +++ b/applications/luci-app-frpc/po/templates/frpc.pot @@ -1,101 +1,113 @@ msgid "" msgstr "Content-Type: text/plain; charset=UTF-8" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "" @@ -103,254 +115,321 @@ msgstr "" msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/tr/frpc.po b/applications/luci-app-frpc/po/tr/frpc.po index 39c2877c24..f25fcabb76 100644 --- a/applications/luci-app-frpc/po/tr/frpc.po +++ b/applications/luci-app-frpc/po/tr/frpc.po @@ -1,365 +1,520 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-25 07:41+0000\n" -"Last-Translator: Oğuz Ersen <oguzersen@protonmail.com>\n" +"PO-Revision-Date: 2024-03-31 19:53+0000\n" +"Last-Translator: Oğuz Han <h4n.3545@gmail.com>\n" "Language-Team: Turkish <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/tr/>\n" "Language: tr\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=2; plural=n != 1;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Yeni proxy ekle..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Ek yapılandırmalar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Ek ayarlar" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Yönetici adresi" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Yönetici şifresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Yönetici bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Yönetici kullanıcı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr, yönetici sunucusunun bağlandığı adresi belirtir.<br />Varsayılan " +"olarak bu değer \"0.0.0.0\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort, yönetici sunucusunun dinleneceği bağlantı noktasını belirtir. Bu " +"değer 0 ise, yönetici sunucusu başlatılmayacaktır.<br />Varsayılan olarak bu " +"değer 0'dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminPwd, yönetici sunucusunun oturum açmak için kullanacağı parolayı " +"belirtir.<br />Varsayılan olarak bu değer \"admin\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser, yönetici sunucusunun oturum açma için kullanacağı kullanıcı adını " +"belirtir.<br />Varsayılan olarak bu değer \"admin\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "Varlıklar dizini" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" +"AssetsDir, yönetici sunucusunun kaynakları yükleyeceği yerel dizini " +"belirtir. Bu değer \"\" ise, varlıklar statik kullanılarak paketlenmiş " +"yürütülebilir dosyadan yüklenecektir.<br />Varsayılan olarak bu değer \"\" " +"şeklindedir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Veri toplama ..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Ortak Ayarlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Sıkıştırma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "Yapılandırma dosyaları, geçici yapılandırma dosyasına dahil edilir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Özel alan adları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Günlük renklerini devre dışı bırak" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" +"DisableLogColor, doğru olarak ayarlandığında LogWay == \"console\" olduğunda " +"günlük renklerini devre dışı bırakır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Şifreleme" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Çevre değişkeni" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Giriş başarısız olduğunda çık" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "Genel Ayarlar" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "LuCI uygulaması frpc'ye erişim izni verin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "HTTP Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "HTTP şifresi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "HTTP kullanıcısı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval, sunucuya hangi aralıklarla sinyal gönderileceğini saniye " +"cinsinden belirtir. Bu değerin değiştirilmesi önerilmez.<br />Varsayılan " +"olarak bu değer 30'dur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" +"HeartBeatTimeout, bağlantı sonlandırılmadan önce izin verilen maksimum kalp " +"atışı yanıt gecikmesini saniye cinsinden belirtir. Bu değerin değiştirilmesi " +"önerilmez.<br />Varsayılan olarak bu değer 90'dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "Heartbeat aralığı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "Heartbeat zaman aşımı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" -msgstr "" +msgstr "Ana bilgisayar üstbilgisini yeniden yazma" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" +"HttpProxy, sunucuya bağlanmak için bir proxy adresi belirtir. Bu değer \"\" " +"ise, sunucuya doğrudan bağlanılacaktır.<br />Varsayılan olarak, bu değer " +"\"http_proxy\" ortam değişkeninden okunur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" +msgstr "remote_port 0 ise, frps sizin için rastgele bir port atayacaktır" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "Yerel IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Yerel bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" +"LocalIp proxy olarak kullanılacak IP adresini veya ana bilgisayar adını " +"belirtir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort proxy olarak kullanılacak portu belirtir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" -msgstr "" +msgstr "Konumlar" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Günlük dosyası" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "" +msgstr "Günlük seviyesi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Maksimum günleri günlüğe kaydet" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "Stderr'i günlüğe kaydet" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "Stdout'u günlüğe kaydet" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" +"LogFile günlüklerin yazılacağı dosyayı belirtir. Bu değer yalnızca LogWay " +"doğru bir şekilde ayarlanmışsa kullanılacaktır.<br />Varsayılan olarak bu " +"değer \"console\" şeklindedir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" +"LogLevel, minimum günlük seviyesini belirtir. Geçerli değerler \"trace\", " +"\"debug\", \"info\", \"warn\" ve \"error\" dir.<br />Varsayılan olarak bu " +"değer \"info\" dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays, günlük bilgilerinin silinmeden önce saklanacağı maksimum gün " +"sayısını belirtir. Bu yalnızca LogWay == \"file\" ise kullanılır.<br /" +">Varsayılan olarak bu değer 0'dır." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" +"LoginFailExit, istemcinin başarısız bir oturum açma girişiminden sonra çıkıp " +"çıkmayacağını kontrol eder. Yanlışsa, istemci başarılı bir oturum açma " +"girişimi olana kadar yeniden deneyecektir.<br />Varsayılan olarak bu değer " +"doğrudur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "ÇALIŞMIYOR" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"İşletim sistemi ortamları, yapılandırma dosyası şablonu için frp'ye geçer, " +"bkz. <a href=\"https://github.com/fatedier/frp#configuration-file-" +"template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Eklenti" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Eklenti Ayarları" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Protokol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" +"Protokol, sunucuyla etkileşimde bulunulduğunda kullanılacak protokolü " +"belirtir. Geçerli değerler \"tcp\", \"kcp\" ve \"websocket\" dir.<br /" +">Varsayılan olarak bu değer \"tcp\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "" +msgstr "Proxy Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Proxy adı" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Proxy türü" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" +"ProxyType, bu proxy'nin türünü belirtir. Geçerli değerler arasında \"tcp\", " +"\"udp\", \"http\", \"https\", \"stcp\" ve \"xtcp\" bulunur.<br />Varsayılan " +"olarak bu değer \"tcp\" dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "ÇALIŞIYOR" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Uzak bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "Çöktüğünde yeniden çıkart" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Rol" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Arka plan programı grup olarak çalıştır" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" -msgstr "" +msgstr "Arka plan programı kullanıcı olarak çalıştır" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "SOCKS5 parolası" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 kullanıcısı" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Sunucu adresi" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Sunucu adı" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "Sunucu bağlantı noktası" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" +"ServerAddr bağlanılacak sunucunun adresini belirtir.<br />Varsayılan olarak " +"bu değer \"127.0.0.1\" dır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" +"ServerPort, sunucuya bağlanılacak bağlantı noktasını belirtir.<br /" +">Varsayılan olarak bu değer 7000'dir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Başlangıç Ayarları" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Alt alan adı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" +"TLSEnable, sunucuyla iletişim kurulurken TLS'nin kullanılıp " +"kullanılmayacağını belirtir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" +"TcpMux, TCP akış çoklamasını değiştirir. Bu, bir istemciden gelen birden çok " +"isteğin tek bir TCP bağlantısını paylaşmasına izin verir. Bu değer true ise, " +"sunucuda da TCP çoklama etkinleştirilmiş olmalıdır.<br />Varsayılan olarak " +"bu değer doğrudur." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" +"Bu liste, bu LuCI'ye dahil edilmemiş bazı ek parametreleri belirtmek için " +"kullanılabilir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Token" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" +"Belirteç, sunucuya gönderilecek anahtarları oluşturmak için kullanılan " +"yetkilendirme jetonunu belirtir. Yetkilendirmenin başarılı olması için " +"sunucunun eşleşen bir jetona sahip olması gerekir.<br />Varsayılan olarak bu " +"değer \"\" dir." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Unix etki alanı soketi yolu" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" +"UseCompression, sunucuyla iletişimin sıkıştırılıp sıkıştırılmayacağını " +"denetler.<br />Varsayılan olarak bu değer yanlıştır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" +"UseEncryption, sunucu ile iletişimin şifrelenip şifrelenmeyeceğini kontrol " +"eder. Şifreleme, sunucu ve istemci yapılandırmasında sağlanan belirteçler " +"kullanılarak yapılır.<br />Varsayılan olarak bu değer yanlıştır." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Kullanıcı" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" +"Kullanıcı, proxy adlarını diğer istemcilerden ayırmak için bir önek " +"belirler. Bu değer \"\" değilse, proxy adları otomatik olarak \"{kullanıcı}. " +"{Proxy_name}\" olarak değiştirilecektir.<br />Varsayılan olarak bu değer " +"\"\" şeklindedir." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp İstemcisi" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "İsim \"common\" olamaz" diff --git a/applications/luci-app-frpc/po/uk/frpc.po b/applications/luci-app-frpc/po/uk/frpc.po index a62793f97b..695163050c 100644 --- a/applications/luci-app-frpc/po/uk/frpc.po +++ b/applications/luci-app-frpc/po/uk/frpc.po @@ -1,366 +1,450 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-10-27 21:26+0000\n" -"Last-Translator: Yevhen Chebotarev <gekinadres@gmail.com>\n" +"PO-Revision-Date: 2024-10-17 17:11+0000\n" +"Last-Translator: Andrew <stanol777@gmail.com>\n" "Language-Team: Ukrainian <https://hosted.weblate.org/projects/openwrt/" "luciapplicationsfrpc/uk/>\n" "Language: uk\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n" -"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n" -"X-Generator: Weblate 4.3.2-dev\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" +"X-Generator: Weblate 5.8-rc\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Додати новий проксі..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Додаткові опції" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Додаткові налаштування" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Адреса адміністратора" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Пароль адміністратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Порт адміністратора" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Адміністратор" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr встановлює адресу до якої підключається сервер адміністратора.<br /" +">За замовчуванням, це значення - \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort встановлює порт який буде прослуховуватися сервером " +"адміністратора. Якщо вказано значення 0, сервер адміністратора не буде " +"запущений.<br /> За замовчуванням, це значення - 0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "Шифрування" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "Головні налаштування" +msgstr "Загальні налаштування" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "Налаштування HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "Пароль HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "Проксі HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "Користувач HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "НЕ ПРАЦЮЄ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "Протокол" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "ЗАПУЩЕНО" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Роль" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" msgstr "" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Адреса сервера" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." +msgstr "" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "Користувач" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "" diff --git a/applications/luci-app-frpc/po/vi/frpc.po b/applications/luci-app-frpc/po/vi/frpc.po index 7bb5439473..fbfbada9c1 100644 --- a/applications/luci-app-frpc/po/vi/frpc.po +++ b/applications/luci-app-frpc/po/vi/frpc.po @@ -1,359 +1,509 @@ msgid "" msgstr "" +"PO-Revision-Date: 2023-06-21 04:38+0000\n" +"Last-Translator: Quy <haonguyen93056@gmail.com>\n" +"Language-Team: Vietnamese <https://hosted.weblate.org/projects/openwrt/" +"luciapplicationsfrpc/vi/>\n" "Language: vi\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=1; plural=0;\n" +"X-Generator: Weblate 4.18.1\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "Thêm proxy mới..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" -msgstr "" +msgstr "Cấu hình thêm" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "Cài đặt mở rộng" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "Admin address" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "Mật khẩu Admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "Admin port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "Người dùng Admin" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr chỉ định địa chỉ mà máy chủ quản trị liên kết đến.<br />Theo mặc " +"định, giá trị này là \"0.0.0.0\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort chỉ định cổng để máy chủ quản trị lắng nghe. Nếu giá trị này là 0, " +"máy chủ quản trị sẽ không được khởi động.<br />Theo mặc định, giá trị này là " +"0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminPwd chỉ định mật khẩu mà máy chủ quản trị sẽ sử dụng để đăng nhập.<br /" +">Theo mặc định, giá trị này là \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser chỉ định tên người dùng mà máy chủ quản trị sẽ sử dụng để đăng " +"nhập.<br />Theo mặc định, giá trị này là \"admin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "Assets dir" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" +"AssetsDir chỉ định thư mục cục bộ mà máy chủ quản trị sẽ tải tài nguyên từ " +"đó. Nếu giá trị này là \"\", thì nội dung sẽ được tải từ tệp thực thi đi kèm " +"bằng cách sử dụng thống kê.<br />Theo mặc định, giá trị này là \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "Đang thu thập dữ liệu ..." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "Thiết lập chung" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "Nén" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "Tệp cấu hình bao gồm trong tệp cấu hình tạm thời" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "Tên miền tùy chỉnh" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "Disable log color" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "" +"DisableLogColor disables log colors when LogWay == \"console\" khi đặt là " +"true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "Mã hóa" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "Environment variable" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "Thoát khi đăng nhập thất bại" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" -msgstr "" +msgstr "Các cài đặt chung" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "Cấp quyền truy cập vào ứng dụng LuCI frpc" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "Cài đặt HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "Mật khẩu HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "HTTP proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "Người dùng HTTP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval chỉ định khoảng thời gian nhịp tim được gửi đến máy chủ, " +"tính bằng giây. Bạn không nên thay đổi giá trị này.<br />Theo mặc định, giá " +"trị này là 30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" +"HeartBeatTimeout chỉ định độ trễ phản hồi nhịp tim tối đa được phép trước " +"khi kết nối bị ngắt, tính bằng giây. Bạn không nên thay đổi giá trị này.<br /" +">Theo mặc định, giá trị này là 90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "Heartbeat interval" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "Heartbeat timeout" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" -msgstr "" +msgstr "Viết lại tiêu đề máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" +"HttpProxy chỉ định một địa chỉ proxy để kết nối với máy chủ thông qua. Nếu " +"giá trị này là \"\", thì máy chủ sẽ được kết nối trực tiếp.<br />Theo mặc " +"định, giá trị này được đọc từ biến môi trường \"http_proxy\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" +msgstr "Nếu remote_port bằng 0, fps sẽ chỉ định một cổng ngẫu nhiên cho bạn" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "IP nội bộ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "Cổng nội bộ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "" +msgstr "LocalIp chỉ định địa chỉ IP hoặc tên máy chủ để ủy quyền." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort chỉ định cổng cho proxy." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" -msgstr "" +msgstr "Vị trí" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "Tệp nhật ký" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "" +msgstr "Cấp độ log" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "Log max days" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "Log stderr" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "Log stdout" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" +"LogFile chỉ định một tệp mà nhật ký sẽ được ghi vào. Giá trị này sẽ chỉ được " +"sử dụng nếu LogWay được đặt phù hợp.<br />Theo mặc định, giá trị này là " +"\"bảng điều khiển\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" +"LogLevel chỉ định mức nhật ký tối thiểu. Các giá trị hợp lệ là \"dấu vết\", " +"\"gỡ lỗi\", \"thông tin\", \"cảnh báo\" và \"lỗi\".<br />Theo mặc định, giá " +"trị này là \"thông tin\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays chỉ định số ngày tối đa để lưu trữ thông tin nhật ký trước khi " +"xóa. Giá trị này chỉ được sử dụng nếu LogWay == \"file\".<br />Theo mặc " +"định, giá trị này là 0." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" +"LoginFailExit kiểm soát việc khách hàng có nên thoát ra sau một lần thử đăng " +"nhập không thành công hay không. Nếu sai, ứng dụng sẽ thử lại cho đến khi " +"đăng nhập thành công.<br />Theo mặc định, giá trị này là đúng." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "Không chạy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"Môi trường hệ điều hành chuyển sang frp cho mẫu tệp cấu hình, xem <a href=" +"\"https://github.com/fatedier/frp#configuration-file-template\">frp " +"README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "Cài đặt Plugin" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" -msgstr "" +msgstr "Giao thức" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" +"Giao thức chỉ định giao thức sẽ sử dụng khi tương tác với máy chủ. Các giá " +"trị hợp lệ là \"tcp\", \"kcp\" và \"websocket\".<br />Theo mặc định, giá trị " +"này là \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "" +msgstr "Cài đặt Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "Tên Proxy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "Loại Proxy" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" +"ProxyType chỉ định loại proxy này. Các giá trị hợp lệ bao gồm \"tcp\", \"udp" +"\", \"http\", \"https\", \"stcp\" và \"xtcp\".<br />Theo mặc định, giá trị " +"này là \"tcp\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "Đang chạy" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "Remote port" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "Respawn khi bị lỗi" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "Vai trò" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" -msgstr "" +msgstr "Chạy daemon theo nhóm" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" -msgstr "" +msgstr "Chạy daemon với tư cách người dùng" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "Mật khẩu SOCKS5" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "Tài khoản người dùng SOCKS5" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "Địa chỉ máy chủ" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "Tên máy chủ" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "Cổng máy chủ" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" +"ServerAddr chỉ định địa chỉ của máy chủ để kết nối.<br />Theo mặc định, giá " +"trị này là \"127.0.0.1\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." msgstr "" +"ServerPort chỉ định cổng để kết nối với máy chủ trên.<br />Theo mặc định, " +"giá trị này là 7000." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "Cài đặt khởi động" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "Miền con" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "TCP mux" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "" +"TLSEnable chỉ định có nên sử dụng TLS hay không khi giao tiếp với máy chủ." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" +"TcpMux chuyển đổi ghép kênh luồng TCP. Điều này cho phép nhiều yêu cầu từ " +"máy khách chia sẻ một kết nối TCP. Nếu giá trị này là true, thì máy chủ cũng " +"phải bật tính năng ghép kênh TCP.<br />Theo mặc định, giá trị này là true." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 -msgid "Token" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." msgstr "" +"Danh sách này có thể được sử dụng để chỉ định một số tham số bổ sung chưa " +"được đưa vào LuCI này." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +msgid "Token" +msgstr "Token" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" +"Mã thông báo chỉ định mã thông báo ủy quyền được sử dụng để tạo các khóa " +"được gửi đến máy chủ. Máy chủ phải có mã thông báo phù hợp để ủy quyền thành " +"công. <br />Theo mặc định, giá trị này là \"\"." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Đường dẫn tên miền socket Unix" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" +"UseCompression kiểm soát việc có nén giao tiếp với máy chủ hay không.<br /" +">Theo mặc định, giá trị này là sai." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" +"UseEncryption kiểm soát việc giao tiếp với máy chủ có được mã hóa hay không. " +"Quá trình mã hóa được thực hiện bằng cách sử dụng mã thông báo được cung cấp " +"trong cấu hình máy chủ và máy khách.<br />Theo mặc định, giá trị này là sai." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "Người dùng" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" +"Người dùng chỉ định tiền tố cho tên proxy để phân biệt chúng với các máy " +"khách khác. Nếu giá trị này không phải là \"\", tên proxy sẽ tự động được " +"đổi thành \"{user}.{proxy_name}\".<br />Theo mặc định, giá trị này là \"\"." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp Client" diff --git a/applications/luci-app-frpc/po/zh_Hans/frpc.po b/applications/luci-app-frpc/po/zh_Hans/frpc.po index bed3541078..591f0b0518 100644 --- a/applications/luci-app-frpc/po/zh_Hans/frpc.po +++ b/applications/luci-app-frpc/po/zh_Hans/frpc.po @@ -1,238 +1,279 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-05-10 12:47+0000\n" -"Last-Translator: gw826943555 <gw826943555@qq.com>\n" +"PO-Revision-Date: 2024-04-08 17:22+0000\n" +"Last-Translator: try496 <pinghejk@gmail.com>\n" "Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/" "openwrt/luciapplicationsfrpc/zh_Hans/>\n" "Language: zh_Hans\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.1-dev\n" +"X-Generator: Weblate 5.5-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "添加新代理…" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "额外配置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "其他设置" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "Admin address" msgstr "管理地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" msgstr "管理密码" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" msgstr "管理端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "管理用户名" +msgstr "管理用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." -msgstr "AdminAddr 用于指定管理服务器绑定到的地址。<br>默认是\"127.0.0.1\"。" +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." +msgstr "AdminAddr 特指用于绑定管理服务器的地址。<br />默认是\"0.0.0.0\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" "AdminPort 用于指定管理服务器要侦听的端口。如果此值为0,则不会启动管理服务器。" -"<br>默认情况下,此值为0。" +"<br />默认情况下,此值为0。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -"AdminPwd 指定管理服务器用于登录的密码。<br>默认情况下,此值为\"admin\"。" +"AdminPwd 指定管理服务器用于登录的密码。<br />默认情况下,此值为\"admin\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" -"AdminUser 指定管理服务器用于登录的用户名。<br>默认情况下,此值为\"admin\"。" +"AdminUser 指定管理服务器用于登录的用户名。<br />默认情况下,此值为\"admin\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" msgstr "资源目录" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" "AssetsDir指定管理服务器用于加载资源的本地目录。如果此值为空,则使用statik从可" -"执行文件中加载资源。<br>默认情况下,此值为空。" +"执行文件中加载资源。<br />默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "正在收集数据…" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "通用设置" +msgstr "常规设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" msgstr "压缩" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" msgstr "配置文件包含在临时配置文件中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "自定义域名" +msgstr "自定义域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" msgstr "禁用日志的颜色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." msgstr "当DisableLogColor设置为true且LogWay==\"console\"时禁用日志颜色。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" msgstr "加密" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" msgstr "环境变量" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" msgstr "当登录失败时退出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "常规设置" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "授予访问 LuCI 应用 frpc 的权限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" msgstr "HTTP 设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" msgstr "HTTP 密码" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" msgstr "HTTP 代理" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" msgstr "HTTP 用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" "HeartBeatInterval 用于指定向服务器发送心跳包的间隔(以秒为单位)。不建议更改" -"此值。<br>默认情况下,此值为 30。" +"此值。<br />默认情况下,此值为 30。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" "HeartBeatTimeout 用于指定多久未收到心跳包后断开连接(以秒为单位)。不建议更改" -"此值。<br>默认情况下,此值为 90。" +"此值。<br />默认情况下,此值为 90。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" msgstr "心跳包间隔时间" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" msgstr "心跳包超时" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" msgstr "主机头重写" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" -"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。<br>" -"默认情况下,从\"http_proxy\"环境变量中读取此值。" +"HttpProxy 指定连接到服务器所用的代理地址。如果此值空,则直接连接服务器。<br /" +">默认情况下,从\"http_proxy\"环境变量中读取此值。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "如果remote_port为 0,frps 将为您随机分配一个端口" +msgstr "如远程端口为 0,frps 将给你分配一个端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" msgstr "本地 IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "监听端口" +msgstr "本地端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "LocalIp 指定要被代理的 IP 地址或主机名。" +msgstr "LocalIp 指定要经代理访问的 IP 地址或主机名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "LocalPort 指定要被代理的端口。" +msgstr "LocalPort 指定要经代理访问的端口。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" msgstr "位置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "日志文件" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "日志记录等级" +msgstr "日志级别" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "日志最大天数" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" msgstr "错误日志" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" msgstr "普通日志" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" -"LogLevel 指定最小的日志级别。有效值为\"trace\", \"debug\", \"info\", \"warn" -"\"和\"error\"。<br>默认情况下,此值为\"info\"。" +"LogFile 指定写入日志的文件。仅当正确设置 LogWay 时,才会使用此值。<br />默认" +"值为“console”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +msgid "" +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." +msgstr "" +"LogLevel 指定最小的日志级别。有效值为\"trace\", \"debug\", \"info\", " +"\"warn\"和\"error\"。<br />默认情况下,此值为\"info\"。" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays 指定删除前存储日志信息的最长天数。仅当 LogWay == \"file\" 时才使" +"用。<br />默认值为 0。" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" "LoginFailExit 控制客户端在尝试登录失败后是否应退出。如果为 false,客户端将重" -"试,直到登录成功。<br>默认情况下,此值为 true。" +"试,直到登录成功。<br />默认情况下,此值为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "名称不能\"common\"" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "未在运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" @@ -240,158 +281,204 @@ msgstr "" "操作系统环境传递给 frp。配置模板请参阅 <a href=\"https://github.com/fatedier/" "frp#configuration-file-template\">frp文档</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "插件" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "插件设置" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "协议" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" "Protocol 指定在与服务器交互时要使用的协议。有效值为\"tcp\"、\"kcp\"和" -"\"websocket\"。<br>默认情况下,此值为\"tcp\"。" +"\"websocket\"。<br />默认情况下,此值为\"tcp\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" msgstr "代理设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "代理名称" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" msgstr "代理类型" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" -"ProxyType 指定此代理的类型。有效值包括\"tcp\"、\"udp\"、\"http\"、\"http" -"\"、\"http\"、\"stcp\"和\"xtcp\"。<br>默认情况下,此值为\"tcp\"。" +"ProxyType 指定此代理的类型。有效值包括" +"\"tcp\"、\"udp\"、\"http\"、\"https\"、\"stcp\"和\"xtcp\"。<br />默认情况下," +"此值为\"tcp\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "运行中" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" msgstr "远程端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" msgstr "崩溃时重启" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" msgstr "角色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "以此组权限运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" msgstr "以此用户权限运行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "SOCKS5 密码" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 用户" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "Server address" msgstr "服务器地址" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "服务器名称" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" msgstr "服务器端口" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" -"ServerAddr 指定要连接到的服务器的地址。<br>默认情况下,此值为\"0.0.0.0\"。" +"ServerAddr 指定要连接到的服务器的地址。<br />默认情况下,此值为\"127.0.0.1\"。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." -msgstr "ServerPort 指定要连接到的服务器端口。<br>默认情况下,此值为 7000。" +msgstr "ServerPort 指定要连接到的服务器端口。<br />默认情况下,此值为 7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" msgstr "启动设置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" msgstr "子域名" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" msgstr "TCP 多路复用" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." msgstr "TLSEnable 指定在与服务器通信时是否应使用 TLS。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" "TcpMux 切换 TCP 流多路复用。这允许来自客户端的多个请求共享单个 TCP 连接。如果" -"此值为 true,则服务器必须启用 TCP 多路复用。<br>默认情况下,此值为 true。" +"此值为 true,则服务器必须启用 TCP 多路复用。<br />默认情况下,此值为 true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "此列表可用于指定此LuCI中未包括的一些其他参数。" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "令牌" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" "Token 指定用于创建要发送到服务器的密钥的授权令牌。服务器必须具有匹配的令牌才" -"能成功进行授权。<br>默认情况下,此值为空。" +"能成功进行授权。<br />默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Unix 域套接字路径" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" -"UseCompression 控制是否压缩与服务器的通信。<br>默认情况下,此值为 false。" +"UseCompression 控制是否压缩与服务器的通信。<br />默认情况下,此值为 false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" "UseEncryption 控制是否加密与服务器的通信。使用服务器和客户端配置中提供的令牌" -"来完成加密。<br>默认情况下,此值为 false。" +"来完成加密。<br />默认情况下,此值为 false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" msgstr "用户" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" "User 为代理名称指定前缀,以将它们与其他客户端区分开来。如果此值不为空,则代理" -"名称将自动更改为\"{user}.{proxy_name}\"。<br>默认情况下,此值为空。" +"名称将自动更改为\"{user}.{proxy_name}\"。<br />默认情况下,此值为空。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" msgstr "frp 客户端" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "名称不能\"common\"" diff --git a/applications/luci-app-frpc/po/zh_Hant/frpc.po b/applications/luci-app-frpc/po/zh_Hant/frpc.po index 060fba92e1..b26460af27 100644 --- a/applications/luci-app-frpc/po/zh_Hant/frpc.po +++ b/applications/luci-app-frpc/po/zh_Hant/frpc.po @@ -1,365 +1,483 @@ msgid "" msgstr "" -"PO-Revision-Date: 2020-09-15 08:08+0000\n" -"Last-Translator: tommymaple <godoffrog@gmail.com>\n" -"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/" -"openwrt/luciapplicationsfrpc/zh_Hant/>\n" +"PO-Revision-Date: 2024-11-22 19:27+0000\n" +"Last-Translator: Yuan Lau <traverslombard@outlook.com>\n" +"Language-Team: Chinese (Traditional Han script) <https://hosted.weblate.org/" +"projects/openwrt/luciapplicationsfrpc/zh_Hant/>\n" "Language: zh_Hant\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Plural-Forms: nplurals=1; plural=0;\n" -"X-Generator: Weblate 4.3-dev\n" +"X-Generator: Weblate 5.9-dev\n" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:214 +msgid "Add new proxy..." +msgstr "加入新代理..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Additional configs" msgstr "額外設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 -msgid "Admin address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "Additional settings" +msgstr "附加設定" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +msgid "Admin address" +msgstr "管理員位址" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "Admin password" -msgstr "" +msgstr "管理員密碼" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "Admin port" -msgstr "" +msgstr "管理員埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "Admin user" -msgstr "" +msgstr "管理員用戶" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 msgid "" -"AdminAddr specifies the address that the admin server binds to.<br>By " -"default, this value is \"127.0.0.1\"." +"AdminAddr specifies the address that the admin server binds to.<br />By " +"default, this value is \"0.0.0.0\"." msgstr "" +"AdminAddr指定管理伺服器綁定到的位址. <br />預設況下, 此值為“0.0.0.0”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 msgid "" "AdminPort specifies the port for the admin server to listen on. If this " -"value is 0, the admin server will not be started.<br>By default, this value " -"is 0." +"value is 0, the admin server will not be started.<br />By default, this " +"value is 0." msgstr "" +"AdminPort指定管理伺服器監聽的埠號. 如果此值為0, 則不會啟動管理伺服器. <br />" +"預設情況下, 此值為0." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:28 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 msgid "" "AdminPwd specifies the password that the admin server will use for login." -"<br>By default, this value is \"admin\"." -msgstr "" +"<br />By default, this value is \"admin\"." +msgstr "AdminPwd指定管理伺服器用於登錄的密碼. <br />預設情況下, 此值為“admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 msgid "" "AdminUser specifies the username that the admin server will use for login." -"<br>By default, this value is \"admin\"." +"<br />By default, this value is \"admin\"." msgstr "" +"AdminUser指定管理伺服器用於登錄的用戶名稱. <br />預設情況下, 此值為“admin”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "Assets dir" -msgstr "" +msgstr "資產目錄" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:29 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 msgid "" "AssetsDir specifies the local directory that the admin server will load " "resources from. If this value is \"\", assets will be loaded from the " -"bundled executable using statik.<br>By default, this value is \"\"." +"bundled executable using statik.<br />By default, this value is \"\"." msgstr "" +"AssetsDir指定管理伺服器將從中加載資源的本地目錄. 如果此值為“”, 將使用statik從" +"捆綁的可執行文件中加載資產. <br />預設情況下, 此值為“”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:126 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:190 +msgid "Collecting data ..." +msgstr "資料採集中..." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:198 msgid "Common Settings" -msgstr "" +msgstr "通用設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "Compression" -msgstr "" +msgstr "壓縮" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:16 msgid "Config files include in temporary config file" -msgstr "" +msgstr "設定檔包含在臨時設定檔案中" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:52 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 msgid "Custom domains" -msgstr "" +msgstr "自定義網域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "Disable log color" -msgstr "" +msgstr "禁用日誌顏色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:26 msgid "" "DisableLogColor disables log colors when LogWay == \"console\" when set to " "true." -msgstr "" +msgstr "當LogWay ==“ console”設置為true時, DisableLogColor禁用日誌顏色." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "Encryption" -msgstr "" +msgstr "加密(Encryption)" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "Environment variable" -msgstr "" +msgstr "環境變數" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "Exit when login fail" -msgstr "" +msgstr "登錄失敗時退出" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:151 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:218 msgid "General Settings" msgstr "一般設定" #: applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json:3 msgid "Grant access to LuCI app frpc" -msgstr "" +msgstr "授予 luci-app-frpc 擁有存取的權限" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:152 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:219 msgid "HTTP Settings" -msgstr "" +msgstr "HTTP 設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:59 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:64 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:78 msgid "HTTP password" -msgstr "" +msgstr "HTTP密碼" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "HTTP proxy" -msgstr "" +msgstr "HTTP代理" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:63 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:77 msgid "HTTP user" -msgstr "" +msgstr "HTTP用戶" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "" "HeartBeatInterval specifies at what interval heartbeats are sent to the " -"server, in seconds. It is not recommended to change this value.<br>By " +"server, in seconds. It is not recommended to change this value.<br />By " "default, this value is 30." msgstr "" +"HeartBeatInterval以秒為單位指定將心跳發送到伺服器的間隔. 不建議更改此值. " +"<br />預設情況下, 此值為30." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "" "HeartBeatTimeout specifies the maximum allowed heartbeat response delay " "before the connection is terminated, in seconds. It is not recommended to " -"change this value.<br>By default, this value is 90." +"change this value.<br />By default, this value is 90." msgstr "" +"HeartBeatTimeout指定終止連接之前允許的最大心跳響應延遲, 以秒為單位. 不建議更" +"改此值. <br />預設情況下, 此值為90." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:38 msgid "Heartbeat interval" -msgstr "" +msgstr "心跳間隔" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:39 msgid "Heartbeat timeout" -msgstr "" +msgstr "心跳逾時" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:60 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 msgid "Host header rewrite" -msgstr "" +msgstr "主機標頭重置" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 msgid "" "HttpProxy specifies a proxy address to connect to the server through. If " -"this value is \"\", the server will be connected to directly.<br>By default, " -"this value is read from the \"http_proxy\" environment variable." +"this value is \"\", the server will be connected to directly.<br />By " +"default, this value is read from the \"http_proxy\" environment variable." msgstr "" +"HttpProxy指定通過其連接到伺服器的代理位址. 如果此值為“”, 則伺服器將直接連接. " +"<br />預設情況下, 將從環境變量“http_proxy”中讀取此值." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 msgid "If remote_port is 0, frps will assign a random port for you" -msgstr "" +msgstr "如果遠端埠號為0,frps會為你分配一個隨機埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:155 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:224 msgid "Local IP" -msgstr "" +msgstr "本地IP" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:156 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:225 msgid "Local port" -msgstr "" +msgstr "本地埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:43 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 msgid "LocalIp specifies the IP address or host name to proxy to." -msgstr "" +msgstr "LocalIp指定要代理的IP位址或主機名。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:49 msgid "LocalPort specifies the port to proxy to." -msgstr "" +msgstr "LocalPort指定要代理的埠號。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:57 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:62 msgid "Locations" -msgstr "" +msgstr "地點" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "Log file" +msgstr "日誌檔案" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "Log level" -msgstr "日誌記錄層級" +msgstr "紀錄級別" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "Log max days" +msgstr "日誌最大天數" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 msgid "Log stderr" -msgstr "" +msgstr "日誌標準錯誤" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:9 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:10 msgid "Log stdout" +msgstr "日誌標準輸出" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:23 +msgid "" +"LogFile specifies a file where logs will be written to. This value will only " +"be used if LogWay is set appropriately.<br />By default, this value is " +"\"console\"." msgstr "" +"LogFile 指定寫入日誌的檔案。僅當正確設定 LogWay 時,才會使用此值。<br />預設" +"值為「console」。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:22 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 msgid "" -"LogLevel specifies the minimum log level. Valid values are \"trace\", \"debug" -"\", \"info\", \"warn\", and \"error\".<br>By default, this value is \"info\"." +"LogLevel specifies the minimum log level. Valid values are \"trace\", " +"\"debug\", \"info\", \"warn\", and \"error\".<br />By default, this value is " +"\"info\"." msgstr "" +"LogLevel指定最低日誌級別. 有效值為“trace”, “debug”, “ info”, “warn”, " +"和“error”. <br />預設情況下, 此值為“info”." -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:32 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:25 +msgid "" +"LogMaxDays specifies the maximum number of days to store log information " +"before deletion. This is only used if LogWay == \"file\".<br />By default, " +"this value is 0." +msgstr "" +"LogMaxDays 指定刪除前儲存日誌資訊的最長天數。僅當 LogWay == \"file\" 時才使" +"用。<br />預設值為 0。" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:35 msgid "" "LoginFailExit controls whether or not the client should exit after a failed " "login attempt. If false, the client will retry until a login attempt " -"succeeds.<br>By default, this value is true." +"succeeds.<br />By default, this value is true." msgstr "" +"LoginFailExit控制在嘗試登錄失敗後客戶端是否應退出。如果為false,則客戶端將重" +"試,直到成功登錄為止。<br />預設情況下,此值為true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:145 -msgid "Name can not be \"common\"" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +msgid "NOT RUNNING" +msgstr "未執行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:15 msgid "" "OS environments pass to frp for config file template, see <a href=\"https://" "github.com/fatedier/frp#configuration-file-template\">frp README</a>" msgstr "" +"傳遞到 frp 設定檔模板的作業系統環境變數,請參閱 <a href=\"https://github.com/" +"fatedier/frp#configuration-file-template\">frp README</a>" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:76 +msgid "Plugin" +msgstr "外掛" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:220 +msgid "Plugin Settings" +msgstr "外掛設定" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "Protocol" msgstr "協定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:36 msgid "" "Protocol specifies the protocol to use when interacting with the server. " -"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br>By default, this " +"Valid values are \"tcp\", \"kcp\", and \"websocket\".<br />By default, this " "value is \"tcp\"." msgstr "" +"Protocol指定與伺服器交互時要使用的協定。有效值為“ tcp”,“ kcp”和“ " +"websocket”。<br />預設情況下,此值為“ tcp”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:138 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:210 msgid "Proxy Settings" -msgstr "" +msgstr "代理設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:154 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:44 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:222 +msgid "Proxy name" +msgstr "代理名稱" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:223 msgid "Proxy type" -msgstr "" +msgstr "代理類別" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:45 msgid "" "ProxyType specifies the type of this proxy. Valid values include \"tcp\", " -"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br>By default, this " +"\"udp\", \"http\", \"https\", \"stcp\", and \"xtcp\".<br />By default, this " "value is \"tcp\"." msgstr "" +"ProxyType指定此代理的類型。有效值包括“ tcp”,“ udp”,“ http”,“ https”,“ " +"stcp”和“ xtcp”。<br />預設情況下,此值為“ tcp”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:48 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +msgid "RUNNING" +msgstr "執行中" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:226 msgid "Remote port" -msgstr "" +msgstr "遠端埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:14 msgid "Respawn when crashed" -msgstr "" +msgstr "崩潰時重生" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:65 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:70 msgid "Role" -msgstr "" +msgstr "角色" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:13 msgid "Run daemon as group" msgstr "以群組執行背景執行" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:11 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:12 msgid "Run daemon as user" -msgstr "以此使用者權限執行" +msgstr "執行守護行程的使用者" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 -msgid "Server address" -msgstr "" +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:80 +msgid "SOCKS5 password" +msgstr "SOCKS5 密碼" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:79 +msgid "SOCKS5 user" +msgstr "SOCKS5 使用者" #: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +msgid "Server address" +msgstr "伺服器位址" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:71 +msgid "Server name" +msgstr "伺服器名稱" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "Server port" -msgstr "" +msgstr "伺服器埠號" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:19 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 msgid "" -"ServerAddr specifies the address of the server to connect to.<br>By default, " -"this value is \"0.0.0.0\"." +"ServerAddr specifies the address of the server to connect to.<br />By " +"default, this value is \"127.0.0.1\"." msgstr "" +"ServerAddr指定要連接的伺服器的位址。<br />預設情況下,此值為“ 127.0.0.1”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:20 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:21 msgid "" -"ServerPort specifies the port to connect to the server on.<br>By default, " +"ServerPort specifies the port to connect to the server on.<br />By default, " "this value is 7000." -msgstr "" +msgstr "ServerPort指定用於連接伺服器的埠號。<br />預設情況下,此值為7000。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:66 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:72 msgid "Sk" -msgstr "" +msgstr "Sk" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:127 -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:131 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:199 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:203 msgid "Startup Settings" -msgstr "" +msgstr "啟動設定" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:53 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:58 msgid "Subdomain" -msgstr "" +msgstr "子網域" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "TCP mux" -msgstr "" +msgstr "TCP多路複用器" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "TLS" -msgstr "" +msgstr "TLS" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:37 msgid "" "TLSEnable specifies whether or not TLS should be used when communicating " "with the server." -msgstr "" +msgstr "TLSEnable指定與伺服器通信時是否應使用TLS。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:30 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:33 msgid "" "TcpMux toggles TCP stream multiplexing. This allows multiple requests from a " "client to share a single TCP connection. If this value is true, the server " -"must have TCP multiplexing enabled as well.<br>By default, this value is " +"must have TCP multiplexing enabled as well.<br />By default, this value is " "true." msgstr "" +"TcpMux切換TCP串流多路複用。這允許來自客戶端的多個請求共享一個TCP連接。如果此" +"值為true,則伺服器也必須啟用TCP複用。<br />預設情況下,此值為true。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:40 +msgid "" +"This list can be used to specify some additional parameters which have not " +"been included in this LuCI." +msgstr "此列表可用於指定此LuCI中未包括的某些其他額外參數." + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "Token" msgstr "權杖" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:24 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:27 msgid "" "Token specifies the authorization token used to create keys to be sent to " "the server. The server must have a matching token for authorization to " -"succeed. <br>By default, this value is \"\"." +"succeed. <br />By default, this value is \"\"." msgstr "" +"Token權杖指定用於創建要發送到伺服器的密鑰的授權金鑰。服務器必須具有匹配的權杖" +"才能授權成功。 <br />預設情況下,此值為“”。" + +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:81 +msgid "Unix domain socket path" +msgstr "Unix 網域通訊端路徑" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:42 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:47 msgid "" "UseCompression controls whether or not communication with the server will be " -"compressed.<br>By default, this value is false." +"compressed.<br />By default, this value is false." msgstr "" +"UseCompression控制是否壓縮與伺服器的通信。<br />預設情況下,此值為false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:41 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:46 msgid "" "UseEncryption controls whether or not communication with the server will be " "encrypted. Encryption is done using the tokens supplied in the server and " -"client configuration.<br>By default, this value is false." +"client configuration.<br />By default, this value is false." msgstr "" +"UseEncryption控制是否加密與伺服器的通信。使用伺服器和客戶端配置中提供的權杖來" +"完成加密。<br />預設情況下,此值為false。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "User" -msgstr "" +msgstr "用戶" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:31 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:34 msgid "" "User specifies a prefix for proxy names to distinguish them from other " "clients. If this value is not \"\", proxy names will automatically be " -"changed to \"{user}.{proxy_name}\".<br>By default, this value is \"\"." +"changed to \"{user}.{proxy_name}\".<br />By default, this value is \"\"." msgstr "" +"用戶為代理名稱指定前綴,以將其與其他客戶端區分開。如果此值不是“”,則代理名稱" +"將自動更改為“ {user}。{proxy_name}”。<br />預設情況下,此值為“”。" -#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:121 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:163 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:165 +#: applications/luci-app-frpc/htdocs/luci-static/resources/view/frpc.js:175 #: applications/luci-app-frpc/root/usr/share/luci/menu.d/luci-app-frpc.json:3 msgid "frp Client" -msgstr "" +msgstr "frp客戶端" + +#~ msgid "Name can not be \"common\"" +#~ msgstr "名稱不能為“common”" diff --git a/applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json b/applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json index b2bb22325a..b76c163d21 100644 --- a/applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json +++ b/applications/luci-app-frpc/root/usr/share/rpcd/acl.d/luci-app-frpc.json @@ -6,6 +6,9 @@ "/etc/passwd": ["read"], "/etc/group": ["read"] }, + "ubus": { + "service": [ "list" ] + }, "uci": ["frpc"] }, "write": { |